agent-method 1.5.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. package/README.md +343 -0
  2. package/bin/wwa.js +115 -0
  3. package/docs/internal/cli-commands.yaml +259 -0
  4. package/docs/internal/doc-tokens.yaml +1103 -0
  5. package/docs/internal/feature-registry.yaml +1643 -0
  6. package/lib/boundaries.js +247 -0
  7. package/lib/cli/add.js +170 -0
  8. package/lib/cli/casestudy.js +1000 -0
  9. package/lib/cli/check.js +323 -0
  10. package/lib/cli/close.js +838 -0
  11. package/lib/cli/completion.js +735 -0
  12. package/lib/cli/deps.js +234 -0
  13. package/lib/cli/digest.js +73 -0
  14. package/lib/cli/doc-review.js +486 -0
  15. package/lib/cli/docs.js +315 -0
  16. package/lib/cli/helpers.js +198 -0
  17. package/lib/cli/implement.js +169 -0
  18. package/lib/cli/init.js +280 -0
  19. package/lib/cli/pipeline.js +206 -0
  20. package/lib/cli/plan.js +140 -0
  21. package/lib/cli/record.js +98 -0
  22. package/lib/cli/refine.js +202 -0
  23. package/lib/cli/report-helpers.js +113 -0
  24. package/lib/cli/review.js +76 -0
  25. package/lib/cli/routable.js +109 -0
  26. package/lib/cli/route.js +101 -0
  27. package/lib/cli/scan.js +133 -0
  28. package/lib/cli/serve.js +23 -0
  29. package/lib/cli/status.js +65 -0
  30. package/lib/cli/update-docs.js +574 -0
  31. package/lib/cli/upgrade.js +222 -0
  32. package/lib/cli/watch.js +32 -0
  33. package/lib/dependencies.js +196 -0
  34. package/lib/init.js +692 -0
  35. package/lib/mcp-server.js +612 -0
  36. package/lib/pipeline.js +907 -0
  37. package/lib/registry.js +132 -0
  38. package/lib/watcher.js +165 -0
  39. package/package.json +54 -0
  40. package/templates/README.md +363 -0
  41. package/templates/entry-points/.cursorrules +90 -0
  42. package/templates/entry-points/AGENT.md +90 -0
  43. package/templates/entry-points/CLAUDE.md +88 -0
  44. package/templates/extensions/MANIFEST.md +110 -0
  45. package/templates/extensions/analytical-system.md +96 -0
  46. package/templates/extensions/code-project.md +77 -0
  47. package/templates/extensions/data-exploration.md +117 -0
  48. package/templates/full/.context/BASE.md +101 -0
  49. package/templates/full/.context/COMPOSITION.md +47 -0
  50. package/templates/full/.context/INDEX.yaml +56 -0
  51. package/templates/full/.context/METHODOLOGY.md +246 -0
  52. package/templates/full/.context/PROTOCOL.yaml +169 -0
  53. package/templates/full/.context/REGISTRY.md +75 -0
  54. package/templates/full/.cursorrules +90 -0
  55. package/templates/full/AGENT.md +90 -0
  56. package/templates/full/CLAUDE.md +90 -0
  57. package/templates/full/Management/DIGEST.md +23 -0
  58. package/templates/full/Management/STATUS.md +46 -0
  59. package/templates/full/PLAN.md +67 -0
  60. package/templates/full/PROJECT-PROFILE.md +61 -0
  61. package/templates/full/PROJECT.md +80 -0
  62. package/templates/full/REQUIREMENTS.md +30 -0
  63. package/templates/full/ROADMAP.md +39 -0
  64. package/templates/full/Reviews/INDEX.md +41 -0
  65. package/templates/full/Reviews/backlog.md +52 -0
  66. package/templates/full/Reviews/plan.md +43 -0
  67. package/templates/full/Reviews/project.md +41 -0
  68. package/templates/full/Reviews/requirements.md +42 -0
  69. package/templates/full/Reviews/roadmap.md +41 -0
  70. package/templates/full/Reviews/state.md +56 -0
  71. package/templates/full/SESSION-LOG.md +102 -0
  72. package/templates/full/STATE.md +42 -0
  73. package/templates/full/SUMMARY.md +27 -0
  74. package/templates/full/agentWorkflows/INDEX.md +42 -0
  75. package/templates/full/agentWorkflows/observations.md +65 -0
  76. package/templates/full/agentWorkflows/patterns.md +68 -0
  77. package/templates/full/agentWorkflows/sessions.md +92 -0
  78. package/templates/full/intro/README.md +39 -0
  79. package/templates/full/registry/feature-registry.yaml +25 -0
  80. package/templates/full/registry/features/catalog.yaml +743 -0
  81. package/templates/full/registry/features/protocol.yaml +121 -0
  82. package/templates/full/registry/features/routing.yaml +358 -0
  83. package/templates/full/registry/features/workflows.yaml +404 -0
  84. package/templates/full/todos/backlog.md +19 -0
  85. package/templates/starter/.context/BASE.md +66 -0
  86. package/templates/starter/.context/INDEX.yaml +51 -0
  87. package/templates/starter/.context/METHODOLOGY.md +228 -0
  88. package/templates/starter/.context/PROTOCOL.yaml +165 -0
  89. package/templates/starter/.cursorrules +90 -0
  90. package/templates/starter/AGENT.md +90 -0
  91. package/templates/starter/CLAUDE.md +90 -0
  92. package/templates/starter/Management/DIGEST.md +23 -0
  93. package/templates/starter/Management/STATUS.md +46 -0
  94. package/templates/starter/PLAN.md +67 -0
  95. package/templates/starter/PROJECT-PROFILE.md +44 -0
  96. package/templates/starter/PROJECT.md +80 -0
  97. package/templates/starter/ROADMAP.md +39 -0
  98. package/templates/starter/Reviews/INDEX.md +75 -0
  99. package/templates/starter/SESSION-LOG.md +102 -0
  100. package/templates/starter/STATE.md +42 -0
  101. package/templates/starter/SUMMARY.md +27 -0
  102. package/templates/starter/agentWorkflows/INDEX.md +61 -0
  103. package/templates/starter/intro/README.md +37 -0
  104. package/templates/starter/registry/feature-registry.yaml +25 -0
  105. package/templates/starter/registry/features/catalog.yaml +743 -0
  106. package/templates/starter/registry/features/protocol.yaml +121 -0
  107. package/templates/starter/registry/features/routing.yaml +358 -0
  108. package/templates/starter/registry/features/workflows.yaml +404 -0
@@ -0,0 +1,1103 @@
1
+ # Documentation Token Registry
2
+ # Single source of truth for values AND names that appear across documentation.
3
+ # When a value or name changes, update this file FIRST, then propagate to all docs.
4
+ #
5
+ # NOTE: "tokens" in this file means tracked key-value pairs (feature counts, version
6
+ # numbers, CLI commands, etc.) — NOT LLM tokens (the compute units consumed during
7
+ # agent conversations). LLM token usage is tracked separately in SESSION-LOG.md.
8
+ #
9
+ # Four sections:
10
+ # tokens: — values that change (CLI commands, version numbers, counts, thresholds)
11
+ # names: — terminology that must stay consistent (concepts, workflows, stages, file roles)
12
+ # propagation_targets: — files known to use tokens/names from this registry
13
+ # doc_graph: — document dependency graph (nodes + edges)
14
+ #
15
+ # Usage: Agent reads this file before writing or updating any docs/ file.
16
+ # Cascade rule: when this file changes, check all docs/ for stale token values or name inconsistencies.
17
+ # Last updated: 2026-03-15
18
+
19
+ # ============================================================
20
+ # SECTION 1: VALUES (things that change)
21
+ # ============================================================
22
+ tokens:
23
+ cli_command: "wwa"
24
+ npm_package: "agent-method"
25
+ pip_package: "wwa-tools"
26
+ npx_zero_install: "npx agent-method"
27
+ npm_global_install: "npm install -g agent-method"
28
+ pip_install: "pip install wwa-tools"
29
+ mcp_server_start: "npx agent-method serve"
30
+ watcher_start: "npx agent-method watch"
31
+ project_name: "wwa"
32
+ repo_url: "https://github.com/anthropics/wwa.git"
33
+ npm_version: "1.5.1"
34
+ registry_version: "v1.6"
35
+ feature_count: 36
36
+ domain_count: 8
37
+ directive_count: 10
38
+ workflow_count: 8
39
+ query_pattern_count: 29
40
+ lite_models: "Haiku, GPT-3.5, Gemini Flash"
41
+ standard_models: "Sonnet, GPT-4, Gemini Pro, Codex"
42
+ full_models: "Opus, o1, Gemini Ultra"
43
+ max_file_lines: 300
44
+ base_md_max_lines: 100
45
+ specialist_max_lines: 150
46
+ entry_point_target_lines: 60
47
+ starter_file_count: 20
48
+ full_file_count: 34
49
+ cmd_init: "wwa init"
50
+ cmd_check: "wwa check"
51
+ cmd_scan: "wwa scan"
52
+ cmd_route: "wwa route"
53
+ cmd_plan: "wwa plan"
54
+ cmd_implement: "wwa implement"
55
+ cmd_review: "wwa review"
56
+ cmd_digest: "wwa digest"
57
+ cmd_close: "wwa close"
58
+ cmd_refine: "wwa refine"
59
+ cmd_status: "wwa status"
60
+ cmd_upgrade: "wwa upgrade"
61
+ cmd_casestudy: "wwa casestudy"
62
+ cmd_docs: "wwa docs"
63
+ cmd_doc_review: "wwa doc-review"
64
+ cmd_deps: "wwa deps"
65
+ cmd_serve: "wwa serve"
66
+ cmd_watch: "wwa watch"
67
+ cmd_completion: "wwa completion"
68
+ cmd_project_discovery: "wwa project-discovery"
69
+ cmd_context_refresh: "wwa context-refresh"
70
+ cmd_phase_complete: "wwa phase-complete"
71
+ cmd_backlog: "wwa backlog"
72
+ cmd_plan_create: "wwa plan-create"
73
+ cmd_dependency_analysis: "wwa dependency-analysis"
74
+ cmd_debt_assessment: "wwa debt-assessment"
75
+ cmd_docs_update: "wwa docs-update"
76
+ cmd_cross_reference: "wwa cross-reference"
77
+ cmd_add: "wwa add"
78
+ developer_cmd_count: 26
79
+ pipeline_cmd_count: 5
80
+ server_cmd_count: 2
81
+ completion_cmd_count: 1
82
+ total_cmd_count: 34
83
+ node_min_version: "18"
84
+ python_min_version: "3.9"
85
+ last_close: "2026-03-16"
86
+ methodology_file_count: 383
87
+ docs_file_count: 80
88
+ context_file_count: 6
89
+ session_count: 1
90
+ decision_count: 202
91
+ total_features_referenced: 0
92
+ files_near_threshold: 1
93
+ files_over_threshold: 1
94
+
95
+ # ============================================================
96
+ # SECTION 2: NAMES (terminology that must stay consistent)
97
+ # ============================================================
98
+ names:
99
+ workflow_stages:
100
+ - canonical: Initialize
101
+ aliases:
102
+ - init
103
+ - cold start
104
+ - session start
105
+ context: First stage. Agent loads entry point + STATE.md.
106
+ - canonical: Scope
107
+ aliases:
108
+ - scoping
109
+ - query classification
110
+ context: Agent classifies query against scoping table, loads relevant files.
111
+ - canonical: Plan
112
+ aliases:
113
+ - planning
114
+ - task planning
115
+ context: Agent proposes structured plan. Primary checkpoint.
116
+ - canonical: Execute
117
+ aliases:
118
+ - execution
119
+ - implement
120
+ - implementation
121
+ context: Agent implements approved plan. Records decisions in STATE.md.
122
+ - canonical: Verify
123
+ aliases:
124
+ - verification
125
+ - validation
126
+ context: Agent checks work against plan criteria.
127
+ - canonical: Close
128
+ aliases:
129
+ - session close
130
+ - wrap-up
131
+ context: Agent writes SUMMARY.md entry, updates STATE.md position.
132
+ interaction_levels:
133
+ - canonical: autonomous
134
+ context: Routine, low-risk work. Agent handles independently.
135
+ - canonical: checkpoint
136
+ context: Default. Approve plan, trust execution, report at completion.
137
+ - canonical: collaborative
138
+ context: Complex tasks. Iterate on each step.
139
+ - canonical: supervised
140
+ context: Learning methodology, high-risk, or debugging.
141
+ integration_profiles:
142
+ - canonical: lite
143
+ aliases:
144
+ - Lite
145
+ context: Minimal rules, STATE.md only, 2 cascade rules. For Haiku, GPT-3.5, Gemini Flash.
146
+ - canonical: standard
147
+ aliases:
148
+ - Standard
149
+ context: Default. Core rules + context pairing, overflow to METHODOLOGY.md. For Sonnet, GPT-4, Gemini Pro, Codex.
150
+ - canonical: full
151
+ aliases:
152
+ - Full
153
+ context: All rules inline, all intelligence layer files. For Opus, o1, Gemini Ultra.
154
+ template_tiers:
155
+ - canonical: starter
156
+ aliases:
157
+ - Starter
158
+ context: 7 files. Entry point, PROJECT.md, STATE.md, ROADMAP.md, PLAN.md, .context/BASE.md, PROJECT-PROFILE.md.
159
+ - canonical: full
160
+ aliases:
161
+ - Full
162
+ context: 11+ files. Adds REQUIREMENTS.md, SUMMARY.md, .context/REGISTRY.md, .context/COMPOSITION.md, todos/backlog.md.
163
+ project_types:
164
+ - canonical: general
165
+ cli_alias: general
166
+ context: Universal rules only. No extensions.
167
+ - canonical: code
168
+ cli_alias: code
169
+ context: Software development. Code change, bug fix, dependency, database, API, deployment.
170
+ - canonical: data
171
+ cli_alias: data
172
+ context: Dataset analysis, document exploration. Data ingest, schema, exploration.
173
+ - canonical: analytical
174
+ cli_alias: context
175
+ context: Research, evaluation, prompt/context work. Chain work, evaluation, composition.
176
+ - canonical: mixed
177
+ cli_alias: mix
178
+ context: Multiple extensions combined. Code + data, code + analytical.
179
+ guided_workflows:
180
+ - id: WF-01
181
+ canonical: standard-task
182
+ display: Standard task
183
+ context: Review → Plan → Implement → Document → Update. Default for general queries.
184
+ - id: WF-02
185
+ canonical: code-change
186
+ display: Code change
187
+ context: Review → Plan → Implement → Context-sync → Update. Code projects.
188
+ - id: WF-03
189
+ canonical: context-refresh
190
+ display: Context refresh
191
+ context: Scan → Compare → Update context → Cascade → Record.
192
+ - id: WF-04
193
+ canonical: agent-guided-onboarding
194
+ display: Agent-guided onboarding
195
+ aliases:
196
+ - bootstrap
197
+ - first session
198
+ context: Ask → Populate → Confirm. Greenfield (4 stages) and brownfield (5 stages).
199
+ - id: WF-05
200
+ canonical: data-exploration
201
+ display: Data exploration
202
+ context: Ingest → Map → Reference → Explore → Refine. Data projects.
203
+ - id: WF-06
204
+ canonical: analytical-system
205
+ display: Analytical system
206
+ context: Discover → Map chains → Build context → Compose → Evaluate → Refine.
207
+ - id: WF-07
208
+ canonical: specification-project
209
+ display: Specification project
210
+ context: For spec writing projects.
211
+ - id: WF-08
212
+ canonical: discovery
213
+ display: Discovery
214
+ aliases:
215
+ - brownfield discovery
216
+ context: Inventory → Map → Extract → Assess → Bootstrap. Brownfield projects.
217
+ feature_domains:
218
+ - id: CTX
219
+ canonical: Context management
220
+ feature_range: CTX-01 through CTX-06
221
+ context: Bootstrap, maintain, evolve .context/ files.
222
+ - id: QRY
223
+ canonical: Query routing
224
+ feature_range: QRY-01 through QRY-03
225
+ context: Session init, query classification, cascade propagation.
226
+ - id: STT
227
+ canonical: State management
228
+ feature_range: STT-01 through STT-03
229
+ context: Decision capture, uncertainty tracking, position tracking.
230
+ - id: TSK
231
+ canonical: Task execution
232
+ feature_range: TSK-01 through TSK-04
233
+ context: Planning, verification, session close, audit trail.
234
+ - id: HAI
235
+ canonical: Human-agent interaction
236
+ feature_range: HAI-01 through HAI-06
237
+ context: Checkpoints, interaction levels, audience separation, docs triggers, model capability, write obligations.
238
+ - id: TPL
239
+ canonical: Template and bootstrap
240
+ feature_range: TPL-01 through TPL-03
241
+ context: Project init, runtime detection, structure selection.
242
+ - id: EXP
243
+ canonical: Data exploration
244
+ feature_range: EXP-01 through EXP-04
245
+ context: Data ingest, reference building, exploration commands, abstraction management.
246
+ - id: SCAN
247
+ canonical: Project discovery
248
+ aliases:
249
+ - Brownfield discovery
250
+ feature_range: SCAN-01 through SCAN-07
251
+ context: >-
252
+ Codebase inventory, dependency mapping, pattern extraction, debt assessment, document dependency graph, document
253
+ registry generation, configurable boundaries.
254
+ protocol_directives:
255
+ - id: P-01
256
+ canonical: Build understanding
257
+ short: Every change is also a context change
258
+ - id: P-02
259
+ canonical: Maintain for future self
260
+ short: Record decisions in STATE.md in the SAME response
261
+ - id: P-03
262
+ canonical: Cascade is not optional
263
+ short: After every file change, check the cascade table
264
+ - id: P-04
265
+ canonical: Scope to avoid drowning
266
+ short: Load BASE.md + one specialist per query
267
+ - id: P-05
268
+ canonical: Surface uncertainty
269
+ short: Surface uncertainty as open questions in STATE.md
270
+ - id: P-06
271
+ canonical: Human controls direction
272
+ short: Propose plans and wait for approval
273
+ - id: P-07
274
+ canonical: Keep files loadable
275
+ short: Intelligence layer files under 300 lines
276
+ - id: P-08
277
+ canonical: Methodology is additive only
278
+ short: Never modify source code, never delete existing files
279
+ - id: P-09
280
+ canonical: Surface capability limitations
281
+ short: Agent self-monitors and alerts user to degradation
282
+ - id: P-10
283
+ canonical: Document proportionally
284
+ short: Match documentation effort to task significance
285
+ methodology_concepts:
286
+ - canonical: context pairing
287
+ aliases:
288
+ - BASE + specialist model
289
+ context: Loading BASE.md + one specialist file per query type.
290
+ - canonical: dependency cascade
291
+ aliases:
292
+ - cascade
293
+ - cascade table
294
+ - cascade rules
295
+ context: When X changes, also update Y. Prevents file drift.
296
+ - canonical: scoping rules
297
+ aliases:
298
+ - scoping table
299
+ - query routing
300
+ context: Query type → file set mapping in entry point.
301
+ - canonical: intelligence layer
302
+ aliases:
303
+ - project intelligence layer
304
+ context: PROJECT/STATE/REQUIREMENTS/ROADMAP/PLAN/SUMMARY files.
305
+ - canonical: interaction level
306
+ context: "Configurable checkpoint density: autonomous/checkpoint/collaborative/supervised."
307
+ - canonical: entry point
308
+ aliases:
309
+ - agent entry point
310
+ context: Auto-loaded file (CLAUDE.md/.cursorrules/AGENT.md) with scoping + cascade.
311
+ - canonical: specialist context
312
+ aliases:
313
+ - specialist file
314
+ - specialist
315
+ context: Domain-specific .context/ file loaded per scoping rule.
316
+ - canonical: phase gate
317
+ aliases:
318
+ - gate
319
+ - gate criteria
320
+ context: Testable criteria that define done per phase.
321
+ - canonical: codebase map
322
+ context: Table of paths, purposes, patterns in BASE.md for code projects.
323
+ - canonical: context refresh
324
+ context: Agent rescans project and updates .context/ files.
325
+ - canonical: scale management
326
+ aliases:
327
+ - file splitting
328
+ - index + components
329
+ context: When files exceed 300 lines, split into index + components subdirectory.
330
+ intelligence_layer_files:
331
+ - file: PROJECT.md
332
+ role: Project vision, audiences, principles
333
+ audience: human
334
+ - file: PROJECT-PROFILE.md
335
+ role: Project type, lifecycle stage, active extensions
336
+ audience: agent
337
+ - file: STATE.md
338
+ role: Current position, decisions, blockers, open questions
339
+ audience: both
340
+ - file: REQUIREMENTS.md
341
+ role: Formal requirements with traceability
342
+ tier: full
343
+ - file: ROADMAP.md
344
+ role: Phase breakdown with deliverables and gate criteria
345
+ audience: both
346
+ - file: PLAN.md
347
+ role: Current atomic task with verification criteria
348
+ audience: agent
349
+ - file: SUMMARY.md
350
+ role: Session audit trail (chronological record of work done)
351
+ audience: both
352
+ - file: SESSION-LOG.md
353
+ role: Session metrics and refinement tracking
354
+ audience: agent
355
+ - file: .context/BASE.md
356
+ role: System model, always loaded with entry point
357
+ audience: agent
358
+ - file: .context/REGISTRY.md
359
+ role: Navigation registry for split file trees
360
+ tier: full
361
+ - file: .context/PROTOCOL.yaml
362
+ role: Agent protocol — scoping, cascade, conventions, close-check obligations
363
+ audience: agent
364
+ - file: .context/INDEX.yaml
365
+ role: Navigation manifest — file inventory, project metadata, live metrics
366
+ audience: agent
367
+ - file: .context/METHODOLOGY.md
368
+ role: Onboarding protocol and format specs (loaded on-demand)
369
+ audience: agent
370
+ - file: Management/DIGEST.md
371
+ role: High-effort task digest for managers and leads
372
+ audience: human
373
+ - file: Management/STATUS.md
374
+ role: Project health snapshot — phase, blockers, decisions, risk
375
+ audience: human
376
+ - file: Reviews/INDEX.md
377
+ role: Synthesized project intelligence dashboard
378
+ audience: both
379
+ - file: agentWorkflows/INDEX.md
380
+ role: Agent workflow performance overview
381
+ audience: both
382
+ communication_points:
383
+ - canonical: direction
384
+ context: Human → agent. Drives work. Queries, approvals, redirects.
385
+ - canonical: checkpoint
386
+ context: Agent → human. Surfaces state. Plans, status, questions.
387
+ - canonical: record
388
+ context: Persistent artifacts. STATE.md, SUMMARY.md, .context/ files.
389
+ interaction_patterns:
390
+ - canonical: Cold start
391
+ aliases:
392
+ - session start
393
+ - initialization
394
+ context: "Two-file load: entry point + STATE.md."
395
+ - canonical: Scoped reading
396
+ aliases:
397
+ - query scoping
398
+ context: Query classification → file set loading.
399
+ - canonical: Decision recording
400
+ context: Immediate capture in STATE.md decisions table.
401
+ - canonical: Cascade updating
402
+ context: Post-change propagation via cascade table.
403
+ - canonical: Uncertainty flagging
404
+ context: Open questions surfaced in STATE.md.
405
+ - canonical: Audit trail
406
+ context: SUMMARY.md session entries at close.
407
+ - canonical: Session metrics
408
+ context: Effort, ambiguity, context, tokens, time, user response tracking.
409
+ entry_point_runtimes:
410
+ - file: CLAUDE.md
411
+ runtime: Claude Code
412
+ auto_loaded: true
413
+ - file: .cursorrules
414
+ runtime: Cursor
415
+ aliases:
416
+ - Cursor Composer
417
+ auto_loaded: true
418
+ - file: AGENT.md
419
+ runtime: Other
420
+ aliases:
421
+ - Gemini
422
+ - Codex
423
+ - Cline
424
+ - Aider
425
+ auto_loaded: false
426
+ note: Paste or reference manually
427
+
428
+ # ============================================================
429
+ # SECTION 3: PROPAGATION TRACKING
430
+ # ============================================================
431
+ propagation_targets:
432
+ docs:
433
+ - docs/guides/quick-start.md
434
+ - docs/guides/for-developers.md
435
+ - docs/guides/for-developers/cli-tools.md
436
+ - docs/guides/for-managers.md
437
+ - docs/guides/mcp-integration.md
438
+ - docs/index.md
439
+ - docs/architecture/file-roles.md
440
+ - docs/architecture/scoping-rules.md
441
+ - docs/architecture/dependency-cascade.md
442
+ - docs/architecture/context-pairing.md
443
+ - docs/architecture/integration-profiles.md
444
+ - docs/architecture/project-lifecycle.md
445
+ - docs/architecture/feature-tree.md
446
+ - docs/architecture/workflow-extensions.md
447
+ - docs/workflow/stages.md
448
+ - docs/workflow/interaction-patterns.md
449
+ - docs/workflow/communication-points.md
450
+ - docs/workflow/human-agent-contract.md
451
+ - docs/workflow/session-protocol.md
452
+ - docs/workflow/task-structure.md
453
+ templates:
454
+ - templates/README.md
455
+ - templates/starter/CLAUDE.md
456
+ - templates/starter/AGENT.md
457
+ - templates/starter/.cursorrules
458
+ - templates/full/CLAUDE.md
459
+ - templates/full/AGENT.md
460
+ - templates/full/.cursorrules
461
+ - templates/entry-points/CLAUDE.md
462
+ - templates/entry-points/AGENT.md
463
+ - templates/entry-points/.cursorrules
464
+ - templates/extensions/code-project.md
465
+ - templates/extensions/data-exploration.md
466
+ - templates/extensions/analytical-system.md
467
+ - templates/extensions/MANIFEST.md
468
+ - templates/starter/.context/PROTOCOL.yaml
469
+ - templates/full/.context/PROTOCOL.yaml
470
+ - templates/starter/.context/INDEX.yaml
471
+ - templates/full/.context/INDEX.yaml
472
+ project:
473
+ - README.md
474
+ - PROJECT.md
475
+ - CHANGELOG.md
476
+ - REQUIREMENTS.md
477
+ case_studies:
478
+ - case-studies/framework.md
479
+ internal:
480
+ - docs/internal/features.md
481
+ - docs/internal/feature-registry.yaml
482
+ - docs/internal/doc-update-policy.md
483
+ - docs/internal/docs-navigation-agent.md
484
+
485
+ # ============================================================
486
+ # SECTION 4: DOCUMENT DEPENDENCY GRAPH
487
+ # ============================================================
488
+ # Nodes: array of {path, category, role} for every docs/ file.
489
+ # Edges: array of {from, to, type} — typed relationships.
490
+ # Used by: wwa deps, wwa doc-review, wwa close (orphan detection).
491
+ doc_graph:
492
+ last_scan: "2026-03-16"
493
+ nodes:
494
+ - path: docs/index.md
495
+ category: hub
496
+ role: Documentation hub — audience, topic, and integration views
497
+ - path: docs/architecture/context-pairing.md
498
+ category: architecture
499
+ role: Context pairing specification — BASE + specialist model
500
+ - path: docs/architecture/context-pairing/examples-and-lifecycle.md
501
+ category: architecture
502
+ role: Context pairing examples and maintenance lifecycle
503
+ - path: docs/architecture/dependency-cascade.md
504
+ category: architecture
505
+ role: Dependency cascade specification — when X changes update Y
506
+ - path: docs/architecture/feature-tree.md
507
+ category: architecture
508
+ role: Feature tree index — domains, features, workflows, directives
509
+ - path: docs/architecture/feature-tree/activation-tables.md
510
+ category: architecture
511
+ role: Feature activation by lifecycle stage and project type
512
+ - path: docs/architecture/feature-tree/cross-reference.md
513
+ category: architecture
514
+ role: Feature cross-reference — features to files and config
515
+ - path: docs/architecture/feature-tree/dependencies-and-domains.md
516
+ category: architecture
517
+ role: Feature dependencies and domain groupings
518
+ - path: docs/architecture/feature-tree/workflows.md
519
+ category: architecture
520
+ role: Guided workflow definitions (WF-01 through WF-08)
521
+ - path: docs/architecture/file-roles.md
522
+ category: architecture
523
+ role: Intelligence layer file roles and format specifications
524
+ - path: docs/architecture/integration-profiles.md
525
+ category: architecture
526
+ role: Integration profiles — lite, standard, full tiers
527
+ - path: docs/architecture/project-lifecycle.md
528
+ category: architecture
529
+ role: Project lifecycle stages and transitions
530
+ - path: docs/architecture/scoping-rules.md
531
+ category: architecture
532
+ role: Scoping rules — query type to file set mapping
533
+ - path: docs/architecture/workflow-extensions.md
534
+ category: architecture
535
+ role: Project-type workflow extensions (code, data, analytical)
536
+ - path: docs/workflow/communication-points.md
537
+ category: workflow
538
+ role: Communication point types — direction, checkpoint, record
539
+ - path: docs/workflow/human-agent-contract.md
540
+ category: workflow
541
+ role: Human-agent contract — responsibilities and boundaries
542
+ - path: docs/workflow/interaction-patterns.md
543
+ category: workflow
544
+ role: Interaction patterns — cold start, scoped reading, cascade
545
+ - path: docs/workflow/session-protocol.md
546
+ category: workflow
547
+ role: Session protocol — init through close sequence
548
+ - path: docs/workflow/stages.md
549
+ category: workflow
550
+ role: Workflow stages — Initialize, Scope, Plan, Execute, Verify, Close
551
+ - path: docs/workflow/task-structure.md
552
+ category: workflow
553
+ role: Task structure — atomic tasks with verification criteria
554
+ - path: docs/guides/for-developers.md
555
+ category: guides
556
+ role: Developer guide index — setup, configuration, CLI tools
557
+ - path: docs/guides/for-developers/cli-tools.md
558
+ category: guides
559
+ role: CLI tools deep dive — installation, usage, examples
560
+ - path: docs/guides/for-developers/command-reference.md
561
+ category: guides
562
+ role: CLI command reference — all commands with options
563
+ - path: docs/guides/for-managers.md
564
+ category: guides
565
+ role: Manager guide — reading project health from methodology files
566
+ - path: docs/guides/mcp-integration.md
567
+ category: guides
568
+ role: MCP server integration guide
569
+ - path: docs/guides/quick-start.md
570
+ category: guides
571
+ role: Quick start — copy template, fill PROJECT.md, start working
572
+ - path: docs/guides/rendered-examples/base-context-example.md
573
+ category: guides
574
+ role: Rendered example — populated BASE.md
575
+ - path: docs/guides/rendered-examples/plan-example.md
576
+ category: guides
577
+ role: Rendered example — populated PLAN.md
578
+ - path: docs/guides/rendered-examples/roadmap-example.md
579
+ category: guides
580
+ role: Rendered example — populated ROADMAP.md
581
+ - path: docs/guides/rendered-examples/state-example.md
582
+ category: guides
583
+ role: Rendered example — populated STATE.md
584
+ - path: docs/guides/rendered-examples/summary-example.md
585
+ category: guides
586
+ role: Rendered example — populated SUMMARY.md
587
+ - path: docs/internal/doc-registry.md
588
+ category: internal
589
+ role: Generated document registry — human-readable summary
590
+ - path: docs/internal/doc-registry.yaml
591
+ category: internal
592
+ role: Generated document registry — machine-readable YAML
593
+ - path: docs/internal/doc-tokens.yaml
594
+ category: internal
595
+ role: Token registry — single source of truth for values and names
596
+ - path: docs/internal/doc-update-policy.md
597
+ category: internal
598
+ role: Documentation update policy — materiality thresholds
599
+ - path: docs/internal/docs-navigation-agent.md
600
+ category: internal
601
+ role: Agent navigation guide — how to find docs by topic
602
+ - path: docs/internal/entry-point-derivation.md
603
+ category: internal
604
+ role: Entry point derivation specification from feature registry
605
+ - path: docs/internal/entry-point-derivation/worked-example-and-extensions.md
606
+ category: internal
607
+ role: Entry point derivation worked example and extension rules
608
+ - path: docs/internal/feature-domain-map.md
609
+ category: internal
610
+ role: Feature domain map — research grounding per domain
611
+ - path: docs/internal/feature-interactions.md
612
+ category: internal
613
+ role: Feature interaction index — how features compose
614
+ - path: docs/internal/feature-interactions/activation-and-dependencies.md
615
+ category: internal
616
+ role: Feature activation rules and dependency chains
617
+ - path: docs/internal/feature-interactions/bootstrap.md
618
+ category: internal
619
+ role: Feature interactions during project bootstrap
620
+ - path: docs/internal/feature-interactions/cascading.md
621
+ category: internal
622
+ role: Feature interactions during cascade propagation
623
+ - path: docs/internal/feature-interactions/context-refresh.md
624
+ category: internal
625
+ role: Feature interactions during context refresh
626
+ - path: docs/internal/feature-interactions/session-lifecycle.md
627
+ category: internal
628
+ role: Feature interactions across session lifecycle
629
+ - path: docs/internal/feature-registry.yaml
630
+ category: internal
631
+ role: Feature registry — canonical feature definitions, domains, workflows
632
+ - path: docs/internal/features.md
633
+ category: internal
634
+ role: Feature catalog index — all features with domain grouping
635
+ - path: docs/internal/features/cross-domain.md
636
+ category: internal
637
+ role: Cross-domain features — SCAN, protocol directives
638
+ - path: docs/internal/features/ctx-context-management.md
639
+ category: internal
640
+ role: CTX domain features — context bootstrap and maintenance
641
+ - path: docs/internal/features/exp-data-exploration.md
642
+ category: internal
643
+ role: EXP domain features — data exploration capabilities
644
+ - path: docs/internal/features/hai-human-agent-interaction.md
645
+ category: internal
646
+ role: HAI domain features — checkpoints, levels, audiences
647
+ - path: docs/internal/features/qry-query-routing.md
648
+ category: internal
649
+ role: QRY domain features — query classification and routing
650
+ - path: docs/internal/features/stt-state-management.md
651
+ category: internal
652
+ role: STT domain features — decision and state tracking
653
+ - path: docs/internal/features/tpl-template-bootstrap.md
654
+ category: internal
655
+ role: TPL domain features — template init and detection
656
+ - path: docs/internal/features/tsk-task-execution.md
657
+ category: internal
658
+ role: TSK domain features — planning, verification, close
659
+ - path: docs/internal/gate-protocol.md
660
+ category: internal
661
+ role: Gate protocol — phase gate testing and transition rules
662
+ - path: docs/internal/pipeline-stages.md
663
+ category: internal
664
+ role: Pipeline stages index — bootstrap, runtime, tooling
665
+ - path: docs/internal/pipeline-stages/bootstrap-pipeline.md
666
+ category: internal
667
+ role: Bootstrap pipeline — project init sequence
668
+ - path: docs/internal/pipeline-stages/runtime-pipeline.md
669
+ category: internal
670
+ role: Runtime pipeline — per-query execution
671
+ - path: docs/internal/pipeline-stages/tooling-pipeline.md
672
+ category: internal
673
+ role: Tooling pipeline — CLI tool execution
674
+ - path: docs/internal/protocol-tools.md
675
+ category: internal
676
+ role: Protocol tools index — compliance, drift, workflow, telemetry, capability
677
+ - path: docs/internal/protocol-tools/cross-tool-integration.md
678
+ category: internal
679
+ role: Cross-tool integration patterns
680
+ - path: docs/internal/protocol-tools/tool-1-compliance.md
681
+ category: internal
682
+ role: Tool 1 — compliance checker specification
683
+ - path: docs/internal/protocol-tools/tool-2-drift.md
684
+ category: internal
685
+ role: Tool 2 — drift detector specification
686
+ - path: docs/internal/protocol-tools/tool-3-workflow.md
687
+ category: internal
688
+ role: Tool 3 — workflow tracker specification
689
+ - path: docs/internal/protocol-tools/tool-4-telemetry.md
690
+ category: internal
691
+ role: Tool 4 — telemetry collector specification
692
+ - path: docs/internal/protocol-tools/tool-5-capability.md
693
+ category: internal
694
+ role: Tool 5 — capability profiler specification
695
+ - path: docs/internal/quick-start-walkthrough.md
696
+ category: internal
697
+ role: Internal quick start walkthrough — dev-facing setup guide
698
+ - path: docs/internal/rendered-examples-methodology.md
699
+ category: internal
700
+ role: Rendered examples methodology — how examples are constructed
701
+ - path: docs/internal/routing-algorithm.md
702
+ category: internal
703
+ role: Routing algorithm index — classify, resolve, cascade
704
+ - path: docs/internal/routing-algorithm/cascade-execution.md
705
+ category: internal
706
+ role: Routing algorithm — cascade execution phase
707
+ - path: docs/internal/routing-algorithm/classification.md
708
+ category: internal
709
+ role: Routing algorithm — query classification phase
710
+ - path: docs/internal/routing-algorithm/edge-cases-integration.md
711
+ category: internal
712
+ role: Routing algorithm — edge cases and integration
713
+ - path: docs/internal/routing-algorithm/resolution.md
714
+ category: internal
715
+ role: Routing algorithm — file resolution phase
716
+ - path: ".context/BASE.md"
717
+ category: "context"
718
+ role: "detected at close — review during next session"
719
+ - path: ".context/PROTOCOL.yaml"
720
+ category: "context"
721
+ role: "detected at close — review during next session"
722
+ - path: ".context/METHODOLOGY.md"
723
+ category: "context"
724
+ role: "detected at close — review during next session"
725
+ - path: ".context/INDEX.yaml"
726
+ category: "context"
727
+ role: "detected at close — review during next session"
728
+ edges:
729
+ - from: docs/index.md
730
+ to: docs/internal/docs-navigation-agent.md
731
+ type: references
732
+ - from: docs/architecture/feature-tree.md
733
+ to: docs/architecture/feature-tree/dependencies-and-domains.md
734
+ type: references
735
+ - from: docs/architecture/feature-tree.md
736
+ to: docs/architecture/feature-tree/workflows.md
737
+ type: references
738
+ - from: docs/architecture/feature-tree.md
739
+ to: docs/architecture/feature-tree/cross-reference.md
740
+ type: references
741
+ - from: docs/architecture/feature-tree.md
742
+ to: docs/architecture/feature-tree/activation-tables.md
743
+ type: references
744
+ - from: docs/architecture/project-lifecycle.md
745
+ to: docs/architecture/file-roles.md
746
+ type: depends_on
747
+ - from: docs/architecture/project-lifecycle.md
748
+ to: docs/architecture/integration-profiles.md
749
+ type: depends_on
750
+ - from: docs/architecture/integration-profiles.md
751
+ to: docs/architecture/project-lifecycle.md
752
+ type: references
753
+ - from: docs/architecture/scoping-rules.md
754
+ to: docs/architecture/context-pairing.md
755
+ type: references
756
+ - from: docs/architecture/scoping-rules.md
757
+ to: docs/architecture/project-lifecycle.md
758
+ type: references
759
+ - from: docs/architecture/scoping-rules.md
760
+ to: docs/internal/routing-algorithm.md
761
+ type: references
762
+ - from: docs/architecture/dependency-cascade.md
763
+ to: docs/internal/routing-algorithm.md
764
+ type: references
765
+ - from: docs/architecture/context-pairing.md
766
+ to: docs/architecture/context-pairing/examples-and-lifecycle.md
767
+ type: references
768
+ - from: docs/architecture/context-pairing/examples-and-lifecycle.md
769
+ to: docs/architecture/scoping-rules.md
770
+ type: references
771
+ - from: docs/architecture/context-pairing/examples-and-lifecycle.md
772
+ to: docs/architecture/context-pairing.md
773
+ type: depends_on
774
+ - from: docs/architecture/file-roles.md
775
+ to: docs/architecture/context-pairing.md
776
+ type: extends
777
+ - from: docs/architecture/feature-tree/dependencies-and-domains.md
778
+ to: docs/architecture/feature-tree.md
779
+ type: references
780
+ - from: docs/architecture/feature-tree/workflows.md
781
+ to: docs/architecture/feature-tree.md
782
+ type: references
783
+ - from: docs/architecture/feature-tree/cross-reference.md
784
+ to: docs/architecture/feature-tree.md
785
+ type: references
786
+ - from: docs/architecture/feature-tree/activation-tables.md
787
+ to: docs/architecture/project-lifecycle.md
788
+ type: references
789
+ - from: docs/architecture/feature-tree/activation-tables.md
790
+ to: docs/architecture/feature-tree.md
791
+ type: references
792
+ - from: docs/workflow/stages.md
793
+ to: docs/workflow/session-protocol.md
794
+ type: references
795
+ - from: docs/workflow/stages.md
796
+ to: docs/workflow/communication-points.md
797
+ type: references
798
+ - from: docs/workflow/stages.md
799
+ to: docs/workflow/human-agent-contract.md
800
+ type: references
801
+ - from: docs/workflow/stages.md
802
+ to: docs/workflow/interaction-patterns.md
803
+ type: references
804
+ - from: docs/workflow/stages.md
805
+ to: docs/workflow/task-structure.md
806
+ type: references
807
+ - from: docs/workflow/communication-points.md
808
+ to: docs/workflow/stages.md
809
+ type: references
810
+ - from: docs/workflow/communication-points.md
811
+ to: docs/workflow/human-agent-contract.md
812
+ type: references
813
+ - from: docs/workflow/communication-points.md
814
+ to: docs/workflow/interaction-patterns.md
815
+ type: references
816
+ - from: docs/workflow/communication-points.md
817
+ to: docs/workflow/session-protocol.md
818
+ type: references
819
+ - from: docs/workflow/human-agent-contract.md
820
+ to: docs/workflow/stages.md
821
+ type: references
822
+ - from: docs/workflow/human-agent-contract.md
823
+ to: docs/workflow/communication-points.md
824
+ type: references
825
+ - from: docs/workflow/human-agent-contract.md
826
+ to: docs/workflow/session-protocol.md
827
+ type: references
828
+ - from: docs/workflow/human-agent-contract.md
829
+ to: docs/workflow/interaction-patterns.md
830
+ type: references
831
+ - from: docs/workflow/interaction-patterns.md
832
+ to: docs/workflow/stages.md
833
+ type: references
834
+ - from: docs/workflow/interaction-patterns.md
835
+ to: docs/workflow/communication-points.md
836
+ type: references
837
+ - from: docs/workflow/interaction-patterns.md
838
+ to: docs/workflow/human-agent-contract.md
839
+ type: references
840
+ - from: docs/workflow/interaction-patterns.md
841
+ to: docs/workflow/session-protocol.md
842
+ type: references
843
+ - from: docs/workflow/session-protocol.md
844
+ to: docs/workflow/stages.md
845
+ type: references
846
+ - from: docs/workflow/session-protocol.md
847
+ to: docs/workflow/communication-points.md
848
+ type: references
849
+ - from: docs/workflow/session-protocol.md
850
+ to: docs/workflow/human-agent-contract.md
851
+ type: references
852
+ - from: docs/workflow/session-protocol.md
853
+ to: docs/workflow/interaction-patterns.md
854
+ type: references
855
+ - from: docs/workflow/session-protocol.md
856
+ to: docs/workflow/task-structure.md
857
+ type: references
858
+ - from: docs/workflow/task-structure.md
859
+ to: docs/workflow/stages.md
860
+ type: references
861
+ - from: docs/workflow/task-structure.md
862
+ to: docs/workflow/session-protocol.md
863
+ type: references
864
+ - from: docs/workflow/task-structure.md
865
+ to: docs/workflow/human-agent-contract.md
866
+ type: references
867
+ - from: docs/guides/quick-start.md
868
+ to: docs/guides/for-developers.md
869
+ type: references
870
+ - from: docs/guides/quick-start.md
871
+ to: docs/guides/rendered-examples/state-example.md
872
+ type: references
873
+ - from: docs/guides/for-developers.md
874
+ to: docs/guides/quick-start.md
875
+ type: references
876
+ - from: docs/guides/for-developers.md
877
+ to: docs/guides/for-developers/cli-tools.md
878
+ type: references
879
+ - from: docs/guides/for-developers.md
880
+ to: docs/guides/for-developers/command-reference.md
881
+ type: references
882
+ - from: docs/guides/for-developers.md
883
+ to: docs/guides/mcp-integration.md
884
+ type: references
885
+ - from: docs/guides/for-developers.md
886
+ to: docs/architecture/file-roles.md
887
+ type: references
888
+ - from: docs/guides/for-developers.md
889
+ to: docs/architecture/scoping-rules.md
890
+ type: references
891
+ - from: docs/guides/for-developers.md
892
+ to: docs/architecture/context-pairing.md
893
+ type: references
894
+ - from: docs/guides/for-developers.md
895
+ to: docs/workflow/session-protocol.md
896
+ type: references
897
+ - from: docs/guides/for-developers.md
898
+ to: docs/workflow/task-structure.md
899
+ type: references
900
+ - from: docs/guides/for-developers/cli-tools.md
901
+ to: docs/guides/mcp-integration.md
902
+ type: references
903
+ - from: docs/guides/for-developers/command-reference.md
904
+ to: docs/guides/for-developers/cli-tools.md
905
+ type: references
906
+ - from: docs/guides/for-managers.md
907
+ to: docs/guides/rendered-examples/state-example.md
908
+ type: references
909
+ - from: docs/guides/for-managers.md
910
+ to: docs/guides/rendered-examples/roadmap-example.md
911
+ type: references
912
+ - from: docs/guides/for-managers.md
913
+ to: docs/guides/rendered-examples/summary-example.md
914
+ type: references
915
+ - from: docs/internal/docs-navigation-agent.md
916
+ to: docs/internal/features.md
917
+ type: references
918
+ - from: docs/internal/docs-navigation-agent.md
919
+ to: docs/internal/feature-registry.yaml
920
+ type: references
921
+ - from: docs/internal/docs-navigation-agent.md
922
+ to: docs/internal/routing-algorithm.md
923
+ type: references
924
+ - from: docs/internal/docs-navigation-agent.md
925
+ to: docs/internal/entry-point-derivation.md
926
+ type: references
927
+ - from: docs/internal/docs-navigation-agent.md
928
+ to: docs/internal/pipeline-stages.md
929
+ type: references
930
+ - from: docs/internal/docs-navigation-agent.md
931
+ to: docs/internal/rendered-examples-methodology.md
932
+ type: references
933
+ - from: docs/internal/docs-navigation-agent.md
934
+ to: docs/internal/quick-start-walkthrough.md
935
+ type: references
936
+ - from: docs/internal/features.md
937
+ to: docs/internal/feature-interactions.md
938
+ type: references
939
+ - from: docs/internal/features.md
940
+ to: docs/internal/features/ctx-context-management.md
941
+ type: depends_on
942
+ - from: docs/internal/features.md
943
+ to: docs/internal/features/qry-query-routing.md
944
+ type: depends_on
945
+ - from: docs/internal/features.md
946
+ to: docs/internal/features/stt-state-management.md
947
+ type: depends_on
948
+ - from: docs/internal/features.md
949
+ to: docs/internal/features/tsk-task-execution.md
950
+ type: depends_on
951
+ - from: docs/internal/features.md
952
+ to: docs/internal/features/hai-human-agent-interaction.md
953
+ type: depends_on
954
+ - from: docs/internal/features.md
955
+ to: docs/internal/features/tpl-template-bootstrap.md
956
+ type: depends_on
957
+ - from: docs/internal/features.md
958
+ to: docs/internal/features/exp-data-exploration.md
959
+ type: depends_on
960
+ - from: docs/internal/features.md
961
+ to: docs/internal/features/cross-domain.md
962
+ type: depends_on
963
+ - from: docs/internal/feature-interactions.md
964
+ to: docs/internal/feature-interactions/session-lifecycle.md
965
+ type: depends_on
966
+ - from: docs/internal/feature-interactions.md
967
+ to: docs/internal/feature-interactions/bootstrap.md
968
+ type: depends_on
969
+ - from: docs/internal/feature-interactions.md
970
+ to: docs/internal/feature-interactions/context-refresh.md
971
+ type: depends_on
972
+ - from: docs/internal/feature-interactions.md
973
+ to: docs/internal/feature-interactions/cascading.md
974
+ type: depends_on
975
+ - from: docs/internal/feature-interactions.md
976
+ to: docs/internal/feature-interactions/activation-and-dependencies.md
977
+ type: depends_on
978
+ - from: docs/internal/entry-point-derivation.md
979
+ to: docs/internal/feature-registry.yaml
980
+ type: depends_on
981
+ - from: docs/internal/entry-point-derivation.md
982
+ to: docs/internal/routing-algorithm.md
983
+ type: depends_on
984
+ - from: docs/internal/entry-point-derivation.md
985
+ to: docs/internal/entry-point-derivation/worked-example-and-extensions.md
986
+ type: depends_on
987
+ - from: docs/internal/entry-point-derivation/worked-example-and-extensions.md
988
+ to: docs/internal/feature-registry.yaml
989
+ type: references
990
+ - from: docs/internal/entry-point-derivation/worked-example-and-extensions.md
991
+ to: docs/internal/routing-algorithm.md
992
+ type: references
993
+ - from: docs/internal/routing-algorithm.md
994
+ to: docs/internal/feature-registry.yaml
995
+ type: depends_on
996
+ - from: docs/internal/routing-algorithm.md
997
+ to: docs/internal/feature-domain-map.md
998
+ type: references
999
+ - from: docs/internal/routing-algorithm.md
1000
+ to: docs/internal/routing-algorithm/classification.md
1001
+ type: depends_on
1002
+ - from: docs/internal/routing-algorithm.md
1003
+ to: docs/internal/routing-algorithm/resolution.md
1004
+ type: depends_on
1005
+ - from: docs/internal/routing-algorithm.md
1006
+ to: docs/internal/routing-algorithm/cascade-execution.md
1007
+ type: depends_on
1008
+ - from: docs/internal/routing-algorithm.md
1009
+ to: docs/internal/routing-algorithm/edge-cases-integration.md
1010
+ type: depends_on
1011
+ - from: docs/internal/routing-algorithm/classification.md
1012
+ to: docs/internal/routing-algorithm.md
1013
+ type: references
1014
+ - from: docs/internal/routing-algorithm/resolution.md
1015
+ to: docs/internal/routing-algorithm.md
1016
+ type: references
1017
+ - from: docs/internal/routing-algorithm/cascade-execution.md
1018
+ to: docs/internal/routing-algorithm.md
1019
+ type: references
1020
+ - from: docs/internal/routing-algorithm/edge-cases-integration.md
1021
+ to: docs/internal/routing-algorithm.md
1022
+ type: references
1023
+ - from: docs/internal/pipeline-stages.md
1024
+ to: docs/internal/feature-registry.yaml
1025
+ type: depends_on
1026
+ - from: docs/internal/pipeline-stages.md
1027
+ to: docs/internal/routing-algorithm.md
1028
+ type: references
1029
+ - from: docs/internal/pipeline-stages.md
1030
+ to: docs/internal/entry-point-derivation.md
1031
+ type: references
1032
+ - from: docs/internal/pipeline-stages.md
1033
+ to: docs/internal/pipeline-stages/runtime-pipeline.md
1034
+ type: depends_on
1035
+ - from: docs/internal/pipeline-stages.md
1036
+ to: docs/internal/pipeline-stages/tooling-pipeline.md
1037
+ type: depends_on
1038
+ - from: docs/internal/pipeline-stages.md
1039
+ to: docs/internal/pipeline-stages/bootstrap-pipeline.md
1040
+ type: depends_on
1041
+ - from: docs/internal/pipeline-stages/runtime-pipeline.md
1042
+ to: docs/internal/pipeline-stages.md
1043
+ type: references
1044
+ - from: docs/internal/pipeline-stages/tooling-pipeline.md
1045
+ to: docs/internal/pipeline-stages.md
1046
+ type: references
1047
+ - from: docs/internal/pipeline-stages/bootstrap-pipeline.md
1048
+ to: docs/internal/pipeline-stages.md
1049
+ type: references
1050
+ - from: docs/internal/protocol-tools.md
1051
+ to: docs/internal/feature-registry.yaml
1052
+ type: depends_on
1053
+ - from: docs/internal/protocol-tools.md
1054
+ to: docs/internal/gate-protocol.md
1055
+ type: references
1056
+ - from: docs/internal/protocol-tools.md
1057
+ to: docs/internal/pipeline-stages.md
1058
+ type: references
1059
+ - from: docs/internal/protocol-tools.md
1060
+ to: docs/internal/protocol-tools/tool-1-compliance.md
1061
+ type: depends_on
1062
+ - from: docs/internal/protocol-tools.md
1063
+ to: docs/internal/protocol-tools/tool-2-drift.md
1064
+ type: depends_on
1065
+ - from: docs/internal/protocol-tools.md
1066
+ to: docs/internal/protocol-tools/tool-3-workflow.md
1067
+ type: depends_on
1068
+ - from: docs/internal/protocol-tools.md
1069
+ to: docs/internal/protocol-tools/tool-4-telemetry.md
1070
+ type: depends_on
1071
+ - from: docs/internal/protocol-tools.md
1072
+ to: docs/internal/protocol-tools/tool-5-capability.md
1073
+ type: depends_on
1074
+ - from: docs/internal/protocol-tools.md
1075
+ to: docs/internal/protocol-tools/cross-tool-integration.md
1076
+ type: depends_on
1077
+ - from: docs/internal/protocol-tools/cross-tool-integration.md
1078
+ to: docs/internal/protocol-tools.md
1079
+ type: references
1080
+ - from: docs/internal/doc-update-policy.md
1081
+ to: docs/internal/doc-tokens.yaml
1082
+ type: depends_on
1083
+ - from: docs/internal/rendered-examples-methodology.md
1084
+ to: docs/guides/rendered-examples/state-example.md
1085
+ type: references
1086
+ - from: docs/internal/feature-domain-map.md
1087
+ to: docs/internal/feature-registry.yaml
1088
+ type: depends_on
1089
+ - from: docs/internal/docs-navigation-agent.md
1090
+ to: docs/workflow/interaction-patterns.md
1091
+ type: references
1092
+ - from: docs/internal/docs-navigation-agent.md
1093
+ to: docs/architecture/scoping-rules.md
1094
+ type: references
1095
+ - from: docs/internal/docs-navigation-agent.md
1096
+ to: docs/architecture/dependency-cascade.md
1097
+ type: references
1098
+ - from: docs/internal/docs-navigation-agent.md
1099
+ to: docs/architecture/file-roles.md
1100
+ type: references
1101
+ - from: docs/internal/docs-navigation-agent.md
1102
+ to: docs/guides/for-developers.md
1103
+ type: references