-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent-context.yaml
More file actions
171 lines (153 loc) · 5.45 KB
/
Copy pathagent-context.yaml
File metadata and controls
171 lines (153 loc) · 5.45 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
version: 1
capabilities:
- id: memory-runtime
aliases: [memory-daemon, durable-memory]
summary: Run the local-first NMG daemon and its durable memory, session AG, and Task Board surfaces.
paths: [src/cli, src/core, src/integration]
entrypoints: [nmg daemon start, nmg search, nmg remember]
supports: [remember, search, get, session-active-graph, task-board]
- id: harness-adapters
aliases: [agent-integration]
summary: Connect the shared Agent Surface to Pi, Claude MCP, WorkBuddy, or DSH without moving product policy into an adapter.
paths: [extensions, claude-plugins, workbuddy-plugin, dsh]
entrypoints: [npm install node-memory-graph]
supports: [pi, claude-mcp, workbuddy, dsh]
- id: retrieval-evaluation
aliases: [evidence-recall, retrieval-benchmark]
summary: Run deterministic rank-aware evidence retrieval evaluation without an answer model or judge.
paths: [evals/retrieval, tests/evals]
entrypoints: [npm run eval:retrieval]
supports: [locomo, longmemeval, beam, personamem, halumem]
- id: official-memory-benchmarks
aliases: [omnimemeval]
summary: Run the pinned official OmniMemEval answer and judge pipelines through the NMG adapter.
paths: [evals/omnimemeval, evals/official]
entrypoints: [npm run benchmark:omni]
supports: [locomo, longmemeval, beam, personamem-v2, halumem]
- id: repository-control-plane
aliases: [rcp, repository-reconciliation]
summary: Reconcile declared repository changes through scoped execution, verification, receipts, and forge state.
paths: [src/rcp, bin/nmg-rcp.mjs]
entrypoints: [nmg-rcp reconcile]
supports: [contract-compile, plan, reconcile, verify, local-receipts, forge-observation]
routes:
- id: core-store
paths: [src/core/store/**]
owners:
- docs/design/design.md
- docs/design/store-cluster-split.md
- docs/design/sqlite-assessment.md
tests: [tests/core/store/**]
verify:
blocking: [check, test:product, build]
advisory: []
- id: core-memory
paths: [src/core/**]
owners:
- docs/design/design.md
- docs/design/memory-graphs.md
tests: [tests/core/**]
verify:
blocking: [check, test:product, build]
advisory: []
- id: daemon-cli
paths: [src/cli/**, bin/**, proto/**]
owners:
- docs/design/design.md
- docs/design/daemon-lifecycle-design.md
tests: [tests/cli/**, tests/chaos/**]
verify:
blocking: [build, test:product]
advisory: [test:chaos]
- id: pi-adapter
paths: [extensions/**, .pi/extensions/**]
owners:
- README.md
- docs/design/session-memory-lifecycle-hooks-2026-08-10.md
- docs/design/tiered-disclosure-design.md
tests: [tests/extensions/**, tests/integration/**]
verify:
blocking: [check, test:product, build]
advisory: []
- id: dsh-adapter
paths: [dsh/**]
owners:
- dsh/README.md
- skills/nmg-memory/references/harness-adapters.md
tests: []
verify:
blocking: [check]
advisory: []
- id: claude-adapter
paths: [claude-plugins/**]
owners:
- README.md
- skills/nmg-memory/references/harness-adapters.md
tests: [tests/integration/claude-mcp.test.ts]
verify:
blocking: [check, test:product, build]
advisory: []
- id: workbuddy-adapter
paths: [workbuddy-plugin/**]
owners:
- workbuddy-plugin/README.md
- skills/nmg-memory/references/harness-adapters.md
tests: [tests/integration/workbuddy-hook.test.ts]
verify:
blocking: [check, test:product, build, package:check]
advisory: []
- id: documentation
paths: [docs/**, skills/**, README.md, README.zh-CN.md]
owners:
- docs/README.md
- skills/doc-maintenance/SKILL.md
tests: [tests/docs/**, tests/skills/**]
verify:
blocking: [docs:check]
advisory: []
- id: evaluation
paths: [evals/**, tests/evals/**, tests/benchmarks/**, tests/official/**]
owners:
- docs/experiments/benchmark-results.md
- docs/design/completion-audit.md
tests: [tests/evals/**, tests/benchmarks/**, tests/official/**]
verify:
blocking: [check]
advisory: [test:research]
- id: ci-and-tests
paths: [tests/**, .github/**, scripts/verify-docs.mts, package.json]
owners:
- docs/design/ci-cd-and-quality.md
- docs/README.md
- skills/repo-development/SKILL.md
tests: [tests/**]
verify:
blocking: [verify:static, test:product]
advisory: [verify:research, verify:chaos]
- id: packaging
paths: [package.json, package-lock.json, tsconfig.build.json, bin/**]
owners:
- docs/design/ci-cd-and-quality.md
- docs/design/design.md
tests: [tests/extensions/pi-dependency-boundary.test.ts]
verify:
blocking: [build, package:check]
advisory: []
- id: repository-tooling
paths: [tools/**, scripts/**, AGENTS.md, agent-context.yaml, tsconfig.json]
owners:
- docs/design/ci-cd-and-quality.md
- docs/README.md
tests: [tests/tools/**, tests/scripts/**, tests/docs/**]
verify:
blocking: [check, test:product, build, agent:context:check]
advisory: []
- id: repository-control-plane
paths: [src/rcp/**, tests/rcp/**, bin/nmg-rcp.mjs]
owners:
- docs/design/ci-cd-and-quality.md
- docs/decisions/implemented/2026-08-29-repository-control-plane.md
tests: [tests/rcp/**]
verify:
blocking: [check, test:product, build, package:check]
advisory: []