forked from ai-dynamo/dynamo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
Validating CODEOWNERS rules...
67 lines (54 loc) · 2.68 KB
/
Copy pathCODEOWNERS
File metadata and controls
67 lines (54 loc) · 2.68 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
# CODEOWNERS file for Dynamo
#
# DO NOT ADD ANY INDIVIDUALS. The groups here are all teams: https://github.com/orgs/ai-dynamo/teams
*.rs @ai-dynamo/dynamo-rust-codeowners
Cargo.toml @ai-dynamo/dynamo-rust-codeowners
# Python Libraries
*.py @ai-dynamo/python-codeowners @ai-dynamo/Devops
# Container/Environments
/container/ @ai-dynamo/Devops @ai-dynamo/dynamo-rust-codeowners @ai-dynamo/python-codeowners @ai-dynamo/dynamo-deploy-codeowners
# Examples
/examples/ @ai-dynamo/Devops @ai-dynamo/dynamo-rust-codeowners @ai-dynamo/python-codeowners @ai-dynamo/dynamo-deploy-codeowners
# Dynamo deploy
/deploy/ @ai-dynamo/dynamo-deploy-codeowners
/examples/*/deploy/ @ai-dynamo/dynamo-deploy-codeowners
/examples/backends/*/deploy/ @ai-dynamo/dynamo-deploy-codeowners
# CI/CD
/.github/ @ai-dynamo/Devops
/.github/workflows/*.ps1 @ai-dynamo/Devops
CODEOWNERS @ai-dynamo/Devops
# Planner
/components/src/dynamo/planner/ @ai-dynamo/python-codeowners @ai-dynamo/Devops
/components/src/dynamo/global_router/ @ai-dynamo/python-codeowners @ai-dynamo/Devops
/components/src/dynamo/global_planner/ @ai-dynamo/python-codeowners @ai-dynamo/Devops
/examples/global_planner/ @ai-dynamo/python-codeowners @ai-dynamo/Devops
/components/src/dynamo/profiler/ @ai-dynamo/python-codeowners @ai-dynamo/Devops
# recipes
/recipes/ @ai-dynamo/python-codeowners @ai-dynamo/Devops @ai-dynamo/dynamo-deploy-codeowners
# Legal
/ATTRIBUTIONS-Rust.md @ai-dynamo/Devops
/ATTRIBUTIONS.md @ai-dynamo/Devops
/CODE_OF_CONDUCT.md @ai-dynamo/Devops
/CONTRIBUTING.md @ai-dynamo/Devops
/LICENSE @ai-dynamo/Devops
/SECURITY.md @ai-dynamo/Devops
# KVBM v2
/lib/memory/ @grahamking @ryanolson @oandreeva-nv
/lib/kvbm-*/ @ai-dynamo/kvbm-v2
/lib/kvbm-logical/ @ai-dynamo/kvbm-v2 @PeaBrane
# Claude Code
/.claude/ @ishandhanani @alec-flowers @MatejKosec @dagil-nvidia @athreesh @nv-tusharma @ayushag-nv
# Parsers — tool-calling + reasoning parser correctness
/lib/parsers/ @ai-dynamo/dynamo-parser-codeowners
/lib/bindings/python/rust/parsers.rs @ai-dynamo/dynamo-parser-codeowners
/lib/bindings/python/tests/test_parsers.py @ai-dynamo/dynamo-parser-codeowners
/lib/llm/tests/test_reasoning_parser.rs @ai-dynamo/dynamo-parser-codeowners
/lib/llm/tests/test_streaming_tool_parsers.rs @ai-dynamo/dynamo-parser-codeowners
# Docs — the docs group owns documentation surfaces: the docs site (docs/, fern/)
# and the Markdown inside examples/ and recipes/. Code teams above still own all
# non-Markdown (code, deploy configs) in examples/ and recipes/; only the prose
# routes to the docs group. Placed last so these rules win (last match wins).
/docs/ @ai-dynamo/dynamo-docs
/fern/ @ai-dynamo/dynamo-docs
/examples/**/*.md @ai-dynamo/dynamo-docs
/recipes/**/*.md @ai-dynamo/dynamo-docs