forked from lyonzin/knowledge-rag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
Validating CODEOWNERS rules...
40 lines (34 loc) · 1.48 KB
/
Copy pathCODEOWNERS
File metadata and controls
40 lines (34 loc) · 1.48 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
# CODEOWNERS — knowledge-rag
#
# Anyone listed here is automatically requested for review on PRs that touch
# the matching paths. With branch protection requiring code-owner review,
# nothing in this file can be merged without an approval from @lyonzin.
#
# Syntax: https://docs.github.com/en/repositories/managing-your-repositories-settings-and-features/customizing-your-repository/about-code-owners
# Default — every PR needs Lyon
* @lyonzin
# Workflows + CI infrastructure (highest leverage, must be reviewed carefully)
/.github/ @lyonzin
/.github/workflows/ @lyonzin
/.pre-commit-config.yaml @lyonzin
# Release & versioning
/pyproject.toml @lyonzin
/mcp_server/__init__.py @lyonzin
/npm/package.json @lyonzin
/scripts/check_version_sync.py @lyonzin
# Security-sensitive code paths
/mcp_server/server.py @lyonzin
/mcp_server/instance_lock.py @lyonzin
/mcp_server/preflight.py @lyonzin
/Dockerfile @lyonzin
/install.sh @lyonzin
/install.ps1 @lyonzin
# Governance documents
/CONTRIBUTING.md @lyonzin
/CODE_OF_CONDUCT.md @lyonzin
/SECURITY.md @lyonzin
/CODEOWNERS @lyonzin
/LICENSE @lyonzin
# Tests & benches (lighter review, but still owner)
/tests/ @lyonzin
/bench/ @lyonzin