-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCODEOWNERS
More file actions
49 lines (41 loc) · 2.43 KB
/
Copy pathCODEOWNERS
File metadata and controls
49 lines (41 loc) · 2.43 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
# CODEOWNERS — requests maintainer visibility on forbidden-territory paths.
#
# Source of truth: AGENT-EXECUTION-PIPELINE.md §2 (Forbidden Territory),
# required by §10 (Pre-flight Checklist).
#
# For these rules to be ENFORCED, branch protection on `main` must enable
# "Require review from Code Owners". CODEOWNERS alone only requests review;
# branch protection only blocks merge when review rules are enabled.
#
# Autonomous agents may NOT modify these paths without explicit Vision approval
# (pipeline §2). Any agent PR touching them must add the `supervisor-review`
# label and stop short of self-merging (pipeline §7).
# --- Project identity, dependencies, classifiers (only `version` is agent-editable) ---
/pyproject.toml @ayhammouda
# --- Permanent commitments and trust posture ---
/LICENSE @ayhammouda
/SECURITY.md @ayhammouda
# --- Load-bearing brand assets ---
/README.md @ayhammouda
/.planning/POSITIONING.md @ayhammouda
# --- Release history (adding entries is fine; rewriting history is not) ---
/CHANGELOG.md @ayhammouda
# --- CI/CD and supply chain (release path especially) ---
# The single /.github/ rule covers workflows and release.yml. Last-matching-
# pattern wins in CODEOWNERS — adding narrower entries with the same owner
# below would be no-ops and would silently *override* this rule if a different
# owner is ever added here, so we keep ownership of /.github/ uniform.
/.github/ @ayhammouda
# --- Index schema and migrations (rebuilds existing user indexes) ---
# NOTE: the retrieved-docs *cache* table lives in
# src/mcp_server_python_docs/services/persistent_cache.py and is NOT covered
# here — it is best-effort, fingerprint-scoped, and agent-editable per
# decision 5.7. Only the canonical *index* schema is forbidden territory.
**/storage/schema.sql @ayhammouda
**/migrations/ @ayhammouda
# --- Archival roadmap history ---
/.planning/ROADMAP.md @ayhammouda
# --- Governing policy + strategy documents ---
/AGENT-EXECUTION-PIPELINE.md @ayhammouda
/OPENCLAW-FORGE-PROTOCOL.md @ayhammouda
/STRATEGIC-ROADMAP-2026-05-29.md @ayhammouda