-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCODEOWNERS
More file actions
110 lines (79 loc) · 2.85 KB
/
CODEOWNERS
File metadata and controls
110 lines (79 loc) · 2.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# CODEOWNERS file for Loclean
# See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Default owner for all files
* @nxank4
# ============================================================================
# Core Source Code - Critical Business Logic
# ============================================================================
# Public API - changes require careful review
src/loclean/__init__.py @nxank4
src/loclean/_version.py @nxank4
# Caching system
src/loclean/cache.py @nxank4
# CLI - user-facing commands
src/loclean/cli/ @nxank4
# Engine - backend-agnostic dataframe operations
src/loclean/engine/ @nxank4
# Extraction - structured data extraction with Pydantic
src/loclean/extraction/ @nxank4
# Inference - LLM inference engine (most critical)
src/loclean/inference/ @nxank4
src/loclean/inference/local/ @nxank4
# Privacy - PII detection and scrubbing
src/loclean/privacy/ @nxank4
# Resources - static files (grammars, templates)
src/loclean/resources/ @nxank4
# Utils - utility functions
src/loclean/utils/ @nxank4
# ============================================================================
# Tests - Quality Assurance
# ============================================================================
# Unit tests
tests/unit/ @nxank4
# Scenario tests - end-to-end and UX
tests/scenarios/ @nxank4
# Integration tests
tests/integration/ @nxank4
# Test configuration
tests/conftest.py @nxank4
tests/README.md @nxank4
# ============================================================================
# Documentation
# ============================================================================
# Main documentation
README.md @nxank4
CONTRIBUTING.md @nxank4
CODE_OF_CONDUCT.md @nxank4
SECURITY.md @nxank4
# Source code documentation
src/loclean/README.md @nxank4
# Examples and tutorials
examples/ @nxank4
examples/README.md @nxank4
# Web documentation
docs-web/ @nxank4
# ============================================================================
# Configuration and Build Files
# ============================================================================
# Project configuration
pyproject.toml @nxank4
uv.lock @nxank4
# GitHub workflows - CI/CD
.github/workflows/ @nxank4
# GitHub templates
.github/ISSUE_TEMPLATE/ @nxank4
.github/PULL_REQUEST_TEMPLATE/ @nxank4
# ============================================================================
# Development Tools and Rules
# ============================================================================
# Agent rules for AI assistants
.agent/ @nxank4
# VS Code settings
.vscode/ @nxank4
# ============================================================================
# Assets and Resources
# ============================================================================
# Project assets (logos, images)
assets/ @nxank4
# License
LICENSE @nxank4