-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Expand file tree
/
Copy pathCODEOWNERS
More file actions
218 lines (197 loc) · 11.1 KB
/
Copy pathCODEOWNERS
File metadata and controls
218 lines (197 loc) · 11.1 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
# CODEOWNERS: auto-requests reviews on matching paths.
# Order matters: the last matching rule wins (the entire owner list is replaced, not merged).
# Routing principle: route by signal, not by safety net. Pair owners only on
# high-risk or governance-wide paths. Specialists are added to the area they
# have signal on.
# ---------------------------------------------------------------------------
# Default fallback. Only fires for genuinely uncategorized paths after the
# explicit legacy/common fallback sections below.
# ---------------------------------------------------------------------------
* @WareWolf-MoonWall @Audacity88
# ---------------------------------------------------------------------------
# Audacity-primary areas (runtime, agent, tools, gateway, config, memory)
# ---------------------------------------------------------------------------
/crates/zeroclaw-runtime/** @Audacity88
/crates/zeroclaw-tools/** @Audacity88
/crates/zeroclaw-gateway/** @Audacity88
/crates/zeroclaw-config/** @Audacity88 @singlerider
/crates/zeroclaw-memory/** @Audacity88
/crates/zeroclaw-tool-call-parser/** @Audacity88
/src/agent/** @Audacity88
/src/gateway/** @Audacity88
/src/tools/** @Audacity88
/src/memory/** @Audacity88
/src/integrations/** @Audacity88
/dev/** @Audacity88
# ---------------------------------------------------------------------------
# singlerider-primary areas (providers, API, infra, hardware, firmware, web)
# ---------------------------------------------------------------------------
/crates/zeroclaw-providers/** @singlerider @Nillth
/crates/zeroclaw-api/** @singlerider
/crates/zeroclaw-infra/** @singlerider
/crates/zeroclaw-hardware/** @singlerider
/crates/aardvark-sys/** @singlerider
/crates/robot-kit/** @singlerider
/crates/zeroclaw-macros/** @singlerider
/firmware/** @singlerider
/src/providers/** @singlerider @Nillth
/src/hardware/** @singlerider
/web/** @singlerider
/dist/** @singlerider
/apps/** @singlerider
# Zerocode TUI: paired. Must come AFTER /apps/** (last match wins) or the
# broad apps rule strips @Audacity88 from zerocode files.
/apps/zerocode/** @singlerider @Audacity88
# ---------------------------------------------------------------------------
# Legacy root crate and common source paths (shared maintainer triage)
# ---------------------------------------------------------------------------
/src/main.rs @WareWolf-MoonWall @Audacity88
/src/lib.rs @WareWolf-MoonWall @Audacity88
/src/bin/** @WareWolf-MoonWall @Audacity88
/src/approval/** @WareWolf-MoonWall @Audacity88
/src/auth/** @WareWolf-MoonWall @Audacity88
/src/commands/** @WareWolf-MoonWall @Audacity88
/src/cron/** @WareWolf-MoonWall @Audacity88
/src/daemon/** @WareWolf-MoonWall @Audacity88
/src/doctor/** @WareWolf-MoonWall @Audacity88
/src/health/** @WareWolf-MoonWall @Audacity88
/src/hooks/** @WareWolf-MoonWall @Audacity88
/src/nodes/** @WareWolf-MoonWall @Audacity88
/src/observability/** @WareWolf-MoonWall @Audacity88
/src/peripherals/** @WareWolf-MoonWall @Audacity88
/src/platform/** @WareWolf-MoonWall @Audacity88
/src/rag/** @WareWolf-MoonWall @Audacity88
/src/routines/** @WareWolf-MoonWall @Audacity88
/src/service/** @WareWolf-MoonWall @Audacity88
/src/sop/** @WareWolf-MoonWall @Audacity88
/src/trust/** @WareWolf-MoonWall @Audacity88
/src/tunnel/** @WareWolf-MoonWall @Audacity88
/src/verifiable_intent/** @WareWolf-MoonWall @Audacity88
/src/config/** @Audacity88 @singlerider
/src/cost/** @Audacity88
/src/cli_input.rs @Audacity88
/src/identity.rs @Audacity88
/src/migration.rs @Audacity88
/src/schema_markdown.rs @Audacity88
# ---------------------------------------------------------------------------
# Tests, benches, fuzzing, and examples (shared maintainer triage)
# ---------------------------------------------------------------------------
/tests/** @WareWolf-MoonWall @Audacity88
/benches/** @WareWolf-MoonWall @Audacity88
/fuzz/** @WareWolf-MoonWall @Audacity88
# ---------------------------------------------------------------------------
# Repository metadata and local development tooling
# ---------------------------------------------------------------------------
/.actrc @WareWolf-MoonWall @Audacity88
/.cargo/** @WareWolf-MoonWall @Audacity88
/.dockerignore @WareWolf-MoonWall @Audacity88
/.editorconfig @WareWolf-MoonWall @Audacity88
/.env.example @WareWolf-MoonWall @Audacity88
/.envrc @WareWolf-MoonWall @Audacity88
/.gemini/** @WareWolf-MoonWall @Audacity88
/.gitattributes @WareWolf-MoonWall @Audacity88
/.githooks/** @WareWolf-MoonWall @Audacity88
/.gitignore @WareWolf-MoonWall @Audacity88
/.markdownlint-cli2.yaml @WareWolf-MoonWall @Audacity88
/.vscode/** @WareWolf-MoonWall @Audacity88
/CNAME @WareWolf-MoonWall @Audacity88
# ---------------------------------------------------------------------------
# Channels (Audacity primary + singlerider specialist)
# ---------------------------------------------------------------------------
/crates/zeroclaw-channels/** @Audacity88 @singlerider @Nillth
/src/channels/** @Audacity88 @singlerider @Nillth
# ---------------------------------------------------------------------------
# Skills, plugins (per Jordan's suggested patch on PR #6537)
# ---------------------------------------------------------------------------
/crates/zeroclaw-plugins/** @JordanTheJet @WareWolf-MoonWall @Audacity88
/crates/zeroclaw-runtime/src/skills/** @JordanTheJet @WareWolf-MoonWall @Audacity88
/crates/zeroclaw-runtime/src/skillforge/** @JordanTheJet @WareWolf-MoonWall @Audacity88
/plugins/** @JordanTheJet @WareWolf-MoonWall @Audacity88
/src/plugins/** @JordanTheJet @WareWolf-MoonWall @Audacity88
/src/skills/** @JordanTheJet @WareWolf-MoonWall @Audacity88
/src/skillforge/** @JordanTheJet @WareWolf-MoonWall @Audacity88
/.claude/skills/** @JordanTheJet @WareWolf-MoonWall @Audacity88
# ---------------------------------------------------------------------------
# ---------------------------------------------------------------------------
# Internationalization (singlerider specialist)
# ---------------------------------------------------------------------------
/locales.toml @singlerider
/src/i18n.rs @singlerider
/crates/zeroclaw-runtime/locales/** @singlerider
/tools/fill-translations/** @singlerider
/TRANSLATIONS.md @singlerider
# Explicit i18n files Audacity flagged on PR #6537. Would otherwise resolve
# to their broader area without the i18n specialist on them.
/crates/zeroclaw-runtime/src/i18n.rs @Audacity88 @singlerider
/web/src/lib/i18n.ts @singlerider
# ---------------------------------------------------------------------------
# Other docs (Audacity-led + singlerider). Must come BEFORE architecture-doc
# overrides below so the narrower foundations/RFC rules can win.
# ---------------------------------------------------------------------------
/docs/** @Audacity88 @singlerider
# ---------------------------------------------------------------------------
# Architecture docs (high-risk, paired)
# ---------------------------------------------------------------------------
/docs/book/src/foundations/** @Audacity88 @singlerider
# ---------------------------------------------------------------------------
# Governance, release, CI (high-risk)
# Listed before the security section so narrower /.github/codeql/** and
# /.github/dependabot.yml rules below can override the broader /.github/**.
# Review-routing control paths stay paired so no single owner can change
# who reviews future changes.
# ---------------------------------------------------------------------------
/.github/** @Audacity88 @singlerider
/.github/CODEOWNERS @Audacity88 @singlerider
/release-plz.toml @Audacity88
/scripts/** @Audacity88
/xtask/** @Audacity88
/Justfile @Audacity88
/Dockerfile* @Audacity88
/docker-compose.yml @Audacity88
/install.sh @Audacity88
/setup.bat @Audacity88
/build.rs @Audacity88
/flake.nix @Audacity88
/flake.lock @Audacity88
/deploy-k8s/** @Audacity88
/rustfmt.toml @Audacity88
/clippy.toml @Audacity88
/taplo.toml @Audacity88
# ---------------------------------------------------------------------------
# Security (high-risk, paired: Audacity + singlerider)
# ---------------------------------------------------------------------------
/SECURITY.md @Audacity88 @singlerider
/deny.toml @Audacity88 @singlerider
/src/security/** @Audacity88 @singlerider
/crates/zeroclaw-runtime/src/security/** @Audacity88 @singlerider
/.github/codeql/** @Audacity88 @singlerider
/.github/dependabot.yml @Audacity88 @singlerider
# ---------------------------------------------------------------------------
# Cargo manifests at any depth (legacy stewardship, Jordan)
# ---------------------------------------------------------------------------
Cargo.toml @JordanTheJet
Cargo.lock @JordanTheJet
# ---------------------------------------------------------------------------
# Root governance Markdown (paired)
# ---------------------------------------------------------------------------
/AGENTS.md @Audacity88 @singlerider
/CONTRIBUTING.md @Audacity88 @singlerider
/CODE_OF_CONDUCT.md @Audacity88 @singlerider
# ---------------------------------------------------------------------------
# Other top-level Markdown, license, notice files (legacy stewardship)
# ---------------------------------------------------------------------------
/README.md @JordanTheJet
/CLAUDE.md @JordanTheJet
/CHANGELOG-next.md @JordanTheJet
/NOTICE @JordanTheJet
/LICENSE-APACHE @JordanTheJet
/LICENSE-MIT @JordanTheJet
# ---------------------------------------------------------------------------
# Specific overrides (must be last)
# ---------------------------------------------------------------------------
# Channels-crate Cargo.toml: legacy steward + channels owners
/crates/zeroclaw-channels/Cargo.toml @Audacity88 @singlerider @JordanTheJet @Nillth
# Matrix backend
/crates/zeroclaw-channels/src/matrix.rs @tidux @Audacity88 @singlerider
# ACP server (per @tidux's request on PR #6537)
/crates/zeroclaw-channels/src/orchestrator/acp_server.rs @tidux @Audacity88 @singlerider