@c4a/context-cli 0.6.19 → 0.7.0

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 (273) hide show
  1. package/README.md +67 -6
  2. package/README.zh-CN.md +42 -5
  3. package/cli.js +75051 -42154
  4. package/indexers/bundles/context-code-indexer/SKILL.md +20 -0
  5. package/indexers/bundles/context-code-indexer/context-indexer.yaml +230 -0
  6. package/indexers/bundles/context-code-indexer/references/composers/contracts-and-chains.md +23 -0
  7. package/indexers/bundles/context-code-indexer/references/composers/cross-module-chain.md +22 -0
  8. package/indexers/bundles/context-code-indexer/references/composers/development-and-delivery.md +22 -0
  9. package/indexers/bundles/context-code-indexer/references/composers/event-flow.md +21 -0
  10. package/indexers/bundles/context-code-indexer/references/composers/examples-and-documentation.md +22 -0
  11. package/indexers/bundles/context-code-indexer/references/composers/persistence-boundary.md +21 -0
  12. package/indexers/bundles/context-code-indexer/references/composers/protocol-boundary.md +22 -0
  13. package/indexers/bundles/context-code-indexer/references/composers/public-contract.md +23 -0
  14. package/indexers/bundles/context-code-indexer/references/indexer.md +49 -0
  15. package/indexers/bundles/context-code-indexer/references/metrics.md +201 -0
  16. package/indexers/bundles/context-code-indexer/templates/adapter-integration.md +119 -0
  17. package/indexers/bundles/context-code-indexer/templates/api-service.md +118 -0
  18. package/indexers/bundles/context-code-indexer/templates/background-runtime.md +109 -0
  19. package/indexers/bundles/context-code-indexer/templates/cli-tool.md +129 -0
  20. package/indexers/bundles/context-code-indexer/templates/component-library.md +99 -0
  21. package/indexers/bundles/context-code-indexer/templates/contract-source.md +73 -0
  22. package/indexers/bundles/context-code-indexer/templates/data-sync-reconciliation.md +77 -0
  23. package/indexers/bundles/context-code-indexer/templates/derived-generated-source.md +117 -0
  24. package/indexers/bundles/context-code-indexer/templates/domain-service.md +109 -0
  25. package/indexers/bundles/context-code-indexer/templates/event-consumer.md +62 -0
  26. package/indexers/bundles/context-code-indexer/templates/gateway-facade.md +89 -0
  27. package/indexers/bundles/context-code-indexer/templates/monorepo-container.md +124 -0
  28. package/indexers/bundles/context-code-indexer/templates/plugin-extension.md +52 -0
  29. package/indexers/bundles/context-code-indexer/templates/sdk-library.md +132 -0
  30. package/indexers/bundles/context-code-indexer/templates/storage-repository.md +56 -0
  31. package/indexers/bundles/context-code-indexer/templates/web-application.md +146 -0
  32. package/indexers/bundles/context-code-indexer/tests/fixtures/chapters.json +226 -0
  33. package/indexers/bundles/context-code-indexer/tests/fixtures/composers.json +82 -0
  34. package/indexers/bundles/context-code-indexer/tests/fixtures/profiles.json +210 -0
  35. package/indexers/bundles/context-code-indexer/tests/fixtures/scenarios.json +122 -0
  36. package/indexers/bundles/context-markdown-indexer/SKILL.md +20 -0
  37. package/indexers/bundles/context-markdown-indexer/context-indexer.yaml +147 -0
  38. package/indexers/bundles/context-markdown-indexer/references/classification.md +63 -0
  39. package/indexers/bundles/context-markdown-indexer/references/editorial-policy.md +106 -0
  40. package/indexers/bundles/context-markdown-indexer/references/indexer.md +23 -0
  41. package/indexers/bundles/context-markdown-indexer/references/semantic-planning.md +146 -0
  42. package/indexers/bundles/context-markdown-indexer/references/structure-and-artifacts.md +109 -0
  43. package/indexers/bundles/context-markdown-indexer/tests/fixtures/anonymous.json +31 -0
  44. package/indexers/bundles/context-markdown-indexer/tests/fixtures/editorial.json +309 -0
  45. package/indexers/bundles/context-markdown-indexer/tests/fixtures/migration-equivalence.json +186 -0
  46. package/indexers/bundles/context-markdown-indexer/tests/fixtures/profiles.json +171 -0
  47. package/indexers/bundles/context-markdown-indexer/tests/fixtures/routing.json +151 -0
  48. package/indexers/capability-manifest.json +40 -0
  49. package/indexers/contracts/hard-rule-conformance.json +2644 -0
  50. package/indexers/contracts/operator-contract.json +35 -0
  51. package/indexers/contracts/profile-contract.json +10162 -0
  52. package/indexers/release-manifest.json +208 -0
  53. package/package.json +5 -4
  54. package/plugins/README.md +17 -109
  55. package/plugins/README_CN.md +11 -89
  56. package/plugins/VERSION +1 -1
  57. package/plugins/claude/.claude-plugin/plugin.json +3 -11
  58. package/plugins/claude/CLAUDE.md +1 -1
  59. package/plugins/claude/README.md +1 -1
  60. package/plugins/claude/commands/context.md +76 -1
  61. package/plugins/codex/.codex-plugin/plugin.json +6 -17
  62. package/plugins/codex/AGENTS.md +1 -1
  63. package/plugins/codex/README.md +1 -1
  64. package/plugins/codex/skills/context/SKILL.md +77 -13
  65. package/plugins/cursor/.cursor-plugin/plugin.json +4 -17
  66. package/plugins/cursor/AGENTS.md +1 -1
  67. package/plugins/cursor/README.md +3 -2
  68. package/plugins/cursor/commands/c4a-context.md +76 -3
  69. package/plugins/skills/{c4a-context → context}/SKILL.md +78 -14
  70. package/plugins/skills/context-code-indexer/SKILL.md +20 -0
  71. package/plugins/skills/context-code-indexer/context-indexer.yaml +230 -0
  72. package/plugins/skills/context-code-indexer/references/composers/contracts-and-chains.md +23 -0
  73. package/plugins/skills/context-code-indexer/references/composers/cross-module-chain.md +22 -0
  74. package/plugins/skills/context-code-indexer/references/composers/development-and-delivery.md +22 -0
  75. package/plugins/skills/context-code-indexer/references/composers/event-flow.md +21 -0
  76. package/plugins/skills/context-code-indexer/references/composers/examples-and-documentation.md +22 -0
  77. package/plugins/skills/context-code-indexer/references/composers/persistence-boundary.md +21 -0
  78. package/plugins/skills/context-code-indexer/references/composers/protocol-boundary.md +22 -0
  79. package/plugins/skills/context-code-indexer/references/composers/public-contract.md +23 -0
  80. package/plugins/skills/context-code-indexer/references/indexer.md +49 -0
  81. package/plugins/skills/context-code-indexer/references/metrics.md +201 -0
  82. package/plugins/skills/context-code-indexer/templates/adapter-integration.md +119 -0
  83. package/plugins/skills/context-code-indexer/templates/api-service.md +118 -0
  84. package/plugins/skills/context-code-indexer/templates/background-runtime.md +109 -0
  85. package/plugins/skills/context-code-indexer/templates/cli-tool.md +129 -0
  86. package/plugins/skills/context-code-indexer/templates/component-library.md +99 -0
  87. package/plugins/skills/context-code-indexer/templates/contract-source.md +73 -0
  88. package/plugins/skills/context-code-indexer/templates/data-sync-reconciliation.md +77 -0
  89. package/plugins/skills/context-code-indexer/templates/derived-generated-source.md +117 -0
  90. package/plugins/skills/context-code-indexer/templates/domain-service.md +109 -0
  91. package/plugins/skills/context-code-indexer/templates/event-consumer.md +62 -0
  92. package/plugins/skills/context-code-indexer/templates/gateway-facade.md +89 -0
  93. package/plugins/skills/context-code-indexer/templates/monorepo-container.md +124 -0
  94. package/plugins/skills/context-code-indexer/templates/plugin-extension.md +52 -0
  95. package/plugins/skills/context-code-indexer/templates/sdk-library.md +132 -0
  96. package/plugins/skills/context-code-indexer/templates/storage-repository.md +56 -0
  97. package/plugins/skills/context-code-indexer/templates/web-application.md +146 -0
  98. package/plugins/skills/context-code-indexer/tests/fixtures/chapters.json +226 -0
  99. package/plugins/skills/context-code-indexer/tests/fixtures/composers.json +82 -0
  100. package/plugins/skills/context-code-indexer/tests/fixtures/profiles.json +210 -0
  101. package/plugins/skills/context-code-indexer/tests/fixtures/scenarios.json +122 -0
  102. package/plugins/skills/context-markdown-indexer/SKILL.md +20 -0
  103. package/plugins/skills/context-markdown-indexer/context-indexer.yaml +147 -0
  104. package/plugins/skills/context-markdown-indexer/references/classification.md +63 -0
  105. package/plugins/skills/context-markdown-indexer/references/editorial-policy.md +106 -0
  106. package/plugins/skills/context-markdown-indexer/references/indexer.md +23 -0
  107. package/plugins/skills/context-markdown-indexer/references/semantic-planning.md +146 -0
  108. package/plugins/skills/context-markdown-indexer/references/structure-and-artifacts.md +109 -0
  109. package/plugins/skills/context-markdown-indexer/tests/fixtures/anonymous.json +31 -0
  110. package/plugins/skills/context-markdown-indexer/tests/fixtures/editorial.json +309 -0
  111. package/plugins/skills/context-markdown-indexer/tests/fixtures/migration-equivalence.json +186 -0
  112. package/plugins/skills/context-markdown-indexer/tests/fixtures/profiles.json +171 -0
  113. package/plugins/skills/context-markdown-indexer/tests/fixtures/routing.json +151 -0
  114. package/providers/context/actions/accept-main-index-run.yaml +7 -0
  115. package/providers/context/actions/accept-material-answer-run.yaml +7 -0
  116. package/providers/context/actions/accept-post-author-composer-run.yaml +7 -0
  117. package/providers/context/actions/actualize-material-answer-bindings.yaml +8 -0
  118. package/providers/context/actions/apply-document-optimization-guidance.yaml +5 -0
  119. package/providers/context/actions/apply-indexer-project.yaml +7 -0
  120. package/providers/context/actions/audit-material-gap-state.yaml +8 -0
  121. package/providers/context/actions/audit-projected-artifact-fan-out.yaml +8 -0
  122. package/providers/context/actions/authorize-indexer-contract-overlay.yaml +7 -0
  123. package/providers/context/actions/authorize-indexer-dependencies.yaml +7 -0
  124. package/providers/context/actions/authorize-indexer-program-execution.yaml +7 -0
  125. package/providers/context/actions/build-main-index-author-worksets.yaml +7 -0
  126. package/providers/context/actions/build-main-index-catalog-fallback.yaml +7 -0
  127. package/providers/context/actions/build-main-index-partition-worksets.yaml +7 -0
  128. package/providers/context/actions/build-material-question-workset.yaml +7 -0
  129. package/providers/context/actions/build-post-author-composer-worksets.yaml +7 -0
  130. package/providers/context/actions/build-question-target-inventory.yaml +7 -0
  131. package/providers/context/actions/build-subject-catalog.yaml +7 -0
  132. package/providers/context/actions/build-target-resolution-views.yaml +7 -0
  133. package/providers/context/actions/checkpoint-material-answer-review.yaml +8 -0
  134. package/providers/context/actions/checkpoint-material-gaps.yaml +8 -0
  135. package/providers/context/actions/close-indexer-approved-knowledge.yaml +8 -0
  136. package/providers/context/actions/compile-indexer-candidates.yaml +8 -0
  137. package/providers/context/actions/compose-indexer-post-author-fragments.yaml +7 -0
  138. package/providers/context/actions/configure-community-indexer-fallback.yaml +6 -0
  139. package/providers/context/actions/configure-indexer-providers.yaml +6 -0
  140. package/providers/context/actions/confirm-index-requirement-workset.yaml +8 -0
  141. package/providers/context/actions/confirm-subject-reidentification.yaml +8 -0
  142. package/providers/context/actions/converge-main-index-partition-run.yaml +7 -0
  143. package/providers/context/actions/discover-markdown-indexer-providers.yaml +6 -0
  144. package/providers/context/actions/evaluate-material-gaps.yaml +8 -0
  145. package/providers/context/actions/fail-main-index-run.yaml +7 -0
  146. package/providers/context/actions/fail-material-answer-run.yaml +7 -0
  147. package/providers/context/actions/fail-post-author-composer-run.yaml +7 -0
  148. package/providers/context/actions/inspect-index-candidate-review-readiness.yaml +8 -0
  149. package/providers/context/actions/inspect-index-profile-failure.yaml +7 -0
  150. package/providers/context/actions/inspect-indexer-dependencies.yaml +7 -0
  151. package/providers/context/actions/inspect-indexer-program-execution.yaml +7 -0
  152. package/providers/context/actions/inspect-indexer-project-proposal.yaml +7 -0
  153. package/providers/context/actions/inspect-markdown-provider-capture.yaml +7 -0
  154. package/providers/context/actions/inspect-material-answer-review.yaml +8 -0
  155. package/providers/context/actions/materialize-indexer-instructions.yaml +7 -0
  156. package/providers/context/actions/observe-indexer-project.yaml +7 -0
  157. package/providers/context/actions/observe-main-index-run-ledger.yaml +7 -0
  158. package/providers/context/actions/observe-material-answer-runs.yaml +7 -0
  159. package/providers/context/actions/observe-post-author-composer-worksets.yaml +7 -0
  160. package/providers/context/actions/override-index-profile-audit.yaml +7 -0
  161. package/providers/context/actions/prepare-indexer-customization-project.yaml +7 -0
  162. package/providers/context/actions/prepare-main-index-run-ledger.yaml +7 -0
  163. package/providers/context/actions/prepare-material-answer-runs.yaml +7 -0
  164. package/providers/context/actions/propose-indexer-customization.yaml +7 -0
  165. package/providers/context/actions/propose-overlay-question-amendment.yaml +7 -0
  166. package/providers/context/actions/rebind-indexer-selection-to-requirement.yaml +7 -0
  167. package/providers/context/actions/reconcile-indexer-results.yaml +7 -0
  168. package/providers/context/actions/record-index-profile-revision.yaml +7 -0
  169. package/providers/context/actions/report-index-profile-failure.yaml +7 -0
  170. package/providers/context/actions/report-indexer-incremental-impact.yaml +8 -0
  171. package/providers/context/actions/resolve-effective-composers.yaml +7 -0
  172. package/providers/context/actions/review-material-answer-candidate.yaml +8 -0
  173. package/providers/context/actions/revise-index-output.yaml +7 -0
  174. package/providers/context/actions/route-index-requirement-confirmation.yaml +8 -0
  175. package/providers/context/actions/route-indexer-provider-selection.yaml +7 -0
  176. package/providers/context/actions/run-indexer-agent-step.yaml +7 -0
  177. package/providers/context/actions/run-indexer-post-author-composer.yaml +7 -0
  178. package/providers/context/actions/run-material-answer-indexers.yaml +7 -0
  179. package/providers/context/actions/start-main-index-run.yaml +7 -0
  180. package/providers/context/actions/start-material-answer-run.yaml +7 -0
  181. package/providers/context/actions/start-post-author-composer-run.yaml +7 -0
  182. package/providers/context/actions/validate-indexer-contract-overlays.yaml +7 -0
  183. package/providers/context/actions/validate-indexer-customization.yaml +7 -0
  184. package/providers/context/actions/validate-indexer-selection-proposal.yaml +7 -0
  185. package/providers/context/actions/validate-main-index-run.yaml +7 -0
  186. package/providers/context/actions/validate-markdown-provider-selection.yaml +7 -0
  187. package/providers/context/actions/validate-subject-key-schemas.yaml +8 -0
  188. package/providers/context/codes.yaml +70 -0
  189. package/providers/context/graphs/indexer.yaml +1068 -0
  190. package/providers/context/graphs/workspace.yaml +20 -1
  191. package/providers/context/manifest.json +1433 -121
  192. package/providers/context/provider.yaml +3 -2
  193. package/providers/context/resources/manuals/reference/code-extractors.md +2 -2
  194. package/providers/context/resources/manuals/reference/project-api.md +2 -2
  195. package/providers/context/resources/procedures/code-extraction.md +6 -2
  196. package/providers/context/resources/procedures/code-index-audit.md +36 -6
  197. package/providers/context/resources/procedures/document-optimization.md +23 -4
  198. package/providers/context/resources/semantic/code-index/templates/adapter.md +9 -0
  199. package/providers/context/resources/semantic/code-index/templates/contracts-and-chains.md +81 -0
  200. package/providers/context/resources/views/resolved-indexer-instructions.yaml +23 -0
  201. package/providers/context/schemas/document-optimization-decisions.schema.json +1 -1
  202. package/providers/context/schemas/indexer-agent-step-input.schema.json +30 -0
  203. package/providers/context/schemas/indexer-agent-step-result.schema.json +47 -0
  204. package/providers/context/schemas/indexer-candidate-compile-input.schema.json +57 -0
  205. package/providers/context/schemas/indexer-candidate-compile-output.schema.json +38 -0
  206. package/providers/context/schemas/indexer-candidate-review-readiness-input.schema.json +46 -0
  207. package/providers/context/schemas/indexer-candidate-review-readiness-output.schema.json +104 -0
  208. package/providers/context/schemas/indexer-contract-overlay-authorization-input.schema.json +32 -0
  209. package/providers/context/schemas/indexer-contract-overlay-authorization-result.schema.json +121 -0
  210. package/providers/context/schemas/indexer-contract-overlay-validation-input.schema.json +90 -0
  211. package/providers/context/schemas/indexer-contract-overlay-validation-result.schema.json +158 -0
  212. package/providers/context/schemas/indexer-customization-project-preparation-result.schema.json +44 -0
  213. package/providers/context/schemas/indexer-customization-proposal-draft.schema.json +83 -0
  214. package/providers/context/schemas/indexer-customization-validation-result.schema.json +36 -0
  215. package/providers/context/schemas/indexer-dependency-authorization-input.schema.json +71 -0
  216. package/providers/context/schemas/indexer-dependency-authorization-result.schema.json +138 -0
  217. package/providers/context/schemas/indexer-incremental-impact-input.schema.json +31 -0
  218. package/providers/context/schemas/indexer-incremental-impact-output.schema.json +52 -0
  219. package/providers/context/schemas/indexer-main-lifecycle-input.schema.json +187 -0
  220. package/providers/context/schemas/indexer-main-lifecycle-output.schema.json +180 -0
  221. package/providers/context/schemas/indexer-markdown-provider-capture-input.schema.json +17 -0
  222. package/providers/context/schemas/indexer-markdown-provider-capture-output.schema.json +54 -0
  223. package/providers/context/schemas/indexer-markdown-provider-validation-input.schema.json +34 -0
  224. package/providers/context/schemas/indexer-markdown-provider-validation-output.schema.json +75 -0
  225. package/providers/context/schemas/indexer-material-answer-lifecycle-input.schema.json +90 -0
  226. package/providers/context/schemas/indexer-material-answer-lifecycle-output.schema.json +80 -0
  227. package/providers/context/schemas/indexer-material-answer-review-inspection-input.schema.json +32 -0
  228. package/providers/context/schemas/indexer-material-answer-review-inspection-output.schema.json +32 -0
  229. package/providers/context/schemas/indexer-material-answer-review-resolution-input.schema.json +19 -0
  230. package/providers/context/schemas/indexer-material-answer-review-resolution-output.schema.json +87 -0
  231. package/providers/context/schemas/indexer-material-gap-lifecycle-input.schema.json +86 -0
  232. package/providers/context/schemas/indexer-material-gap-lifecycle-output.schema.json +19 -0
  233. package/providers/context/schemas/indexer-materialize-request.schema.json +53 -0
  234. package/providers/context/schemas/indexer-materialized-resource.schema.json +57 -0
  235. package/providers/context/schemas/indexer-overlay-question-amendment.schema.json +13 -0
  236. package/providers/context/schemas/indexer-overlay-question-proposal-input.schema.json +40 -0
  237. package/providers/context/schemas/indexer-overlay-question-rebind-input.schema.json +35 -0
  238. package/providers/context/schemas/indexer-overlay-question-rebind-result.schema.json +25 -0
  239. package/providers/context/schemas/indexer-post-author-fragment-request.schema.json +26 -0
  240. package/providers/context/schemas/indexer-post-author-fragment-result.schema.json +18 -0
  241. package/providers/context/schemas/indexer-post-author-lifecycle-input.schema.json +94 -0
  242. package/providers/context/schemas/indexer-post-author-lifecycle-output.schema.json +72 -0
  243. package/providers/context/schemas/indexer-profile-failure-inspection-input.schema.json +13 -0
  244. package/providers/context/schemas/indexer-profile-failure-inspection-result.schema.json +19 -0
  245. package/providers/context/schemas/indexer-profile-failure-report-input.schema.json +22 -0
  246. package/providers/context/schemas/indexer-profile-failure-report-result.schema.json +49 -0
  247. package/providers/context/schemas/indexer-profile-override-decision.schema.json +20 -0
  248. package/providers/context/schemas/indexer-profile-override-result.schema.json +49 -0
  249. package/providers/context/schemas/indexer-profile-revision-agent-input.schema.json +18 -0
  250. package/providers/context/schemas/indexer-profile-revision-record-input.schema.json +31 -0
  251. package/providers/context/schemas/indexer-profile-revision-record-result.schema.json +45 -0
  252. package/providers/context/schemas/indexer-program-execution-authorization-input.schema.json +145 -0
  253. package/providers/context/schemas/indexer-program-execution-authorization-result.schema.json +60 -0
  254. package/providers/context/schemas/indexer-project-action-result.schema.json +19 -0
  255. package/providers/context/schemas/indexer-project-gate-input.schema.json +100 -0
  256. package/providers/context/schemas/indexer-project-observation-input.schema.json +16 -0
  257. package/providers/context/schemas/indexer-project-observation-result.schema.json +42 -0
  258. package/providers/context/schemas/indexer-provider-route-input.schema.json +55 -0
  259. package/providers/context/schemas/indexer-provider-route-report.schema.json +188 -0
  260. package/providers/context/schemas/indexer-requirement-confirmation-input.schema.json +27 -0
  261. package/providers/context/schemas/indexer-requirement-confirmation-output.schema.json +24 -0
  262. package/providers/context/schemas/indexer-result-reconciliation-input.schema.json +59 -0
  263. package/providers/context/schemas/indexer-result-reconciliation-output.schema.json +43 -0
  264. package/providers/context/schemas/indexer-selection-proposal-input.schema.json +12 -0
  265. package/providers/context/schemas/indexer-selection-proposal-validation.schema.json +23 -0
  266. package/providers/context/schemas/indexer-subject-reidentification-input.schema.json +37 -0
  267. package/providers/context/schemas/indexer-subject-reidentification-output.schema.json +31 -0
  268. package/providers/context/skills/configure-indexer-providers/SKILL.md +58 -0
  269. package/providers/context/skills/prepare-indexer-customization-project/SKILL.md +31 -0
  270. package/providers/context/skills/propose-indexer-customization/SKILL.md +40 -0
  271. package/providers/context/skills/revise-index-output/SKILL.md +12 -0
  272. package/providers/context/skills/run-indexer-agent-step/SKILL.md +20 -0
  273. package/providers/context/skills/run-indexer-post-author-composer/SKILL.md +21 -0
@@ -0,0 +1,109 @@
1
+ ---
2
+ id: context.code-indexer.template.background-runtime
3
+ kind: procedure
4
+ media-type: text/markdown
5
+ ---
6
+
7
+ # Background runtime template
8
+
9
+ Use for `background-runtime`: queue or stream consumers, scheduled jobs,
10
+ pipelines, functions, controllers, watchers, and long-running agents activated
11
+ by a trigger instead of an interactive request.
12
+
13
+ Use the exact profile and Artifact policy variant supplied by the workset.
14
+
15
+ ## Evidence pass
16
+
17
+ Locate:
18
+
19
+ - process/runtime bootstrap and worker/job registration;
20
+ - trigger identity: topic, queue, schedule, hook, file, controller event, or
21
+ platform invocation;
22
+ - payload/schema locator and producer when available;
23
+ - handler dispatch, concurrency, partitioning, ordering, and state changes;
24
+ - downstream services, persistence, emitted events, and side effects;
25
+ - retry, timeout, checkpoint, idempotency, dead-letter, and recovery behavior;
26
+ - configuration, scaling, health, observability, deployment, and ownership;
27
+ - replay/test fixtures and generated payload types that are not authoritative.
28
+
29
+ Distinguish code defaults from runtime configuration. Do not describe delivery
30
+ guarantees unless registration, framework configuration, or maintained
31
+ documentation proves them.
32
+
33
+ ## Questions the knowledge must answer
34
+
35
+ 1. What activates the runtime and where is that trigger registered?
36
+ 2. What input contract is consumed, and who produces it?
37
+ 3. How does work move from dispatch through orchestration and side effects?
38
+ 4. What are the concurrency, ordering, retry, and idempotency boundaries?
39
+ 5. How does the runtime checkpoint, recover, or surface failed work?
40
+ 6. How is it configured, operated, observed, scaled, and deployed?
41
+
42
+ ## Suggested knowledge units
43
+
44
+ - **Runtime map**: bootstrap, trigger families, handler registry, dependencies,
45
+ state boundaries, and operating model.
46
+ - **Trigger/workflow registry**: stable trigger identity, input contract,
47
+ handler, downstream effects, retry/idempotency, and source locator.
48
+ - **Processing flow**: focused end-to-end path for a high-value workflow family.
49
+ - **Recovery and operations guide**: checkpointing, failed work, observability,
50
+ configuration, local execution, deployment, and safe replay where evidenced.
51
+ - **Producer-consumer chain**: only when both registered modules and the event
52
+ identity are source-backed.
53
+
54
+ ## Chapter blueprints
55
+
56
+ ```markdown
57
+ # <Background runtime> map
58
+ ## Responsibility and activation model
59
+ ## Bootstrap and trigger registration
60
+ ## Workflow or handler families
61
+ ## State and downstream side effects
62
+ ## Concurrency, ordering, retry, and idempotency
63
+ ## Failure recovery and observability
64
+ ## Configuration, scaling, and deployment
65
+ ## Contract sources and exclusions
66
+ ```
67
+
68
+ For a trigger family:
69
+
70
+ ```markdown
71
+ ## <Trigger or workflow>
72
+ - Trigger identity and registration:
73
+ - Input contract and producer:
74
+ - Dispatch and handler:
75
+ - State changes and downstream effects:
76
+ - Retry/idempotency/checkpoint behavior:
77
+ - Failure destination and operator action:
78
+ - Source evidence:
79
+ ```
80
+
81
+ ## Granularity and relationships
82
+
83
+ Prefer one record per stable trigger or coherent workflow family. Do not create
84
+ one page per handler helper, event field, retry branch, or generated payload
85
+ type. Split a page when triggers have different contracts, ownership, delivery,
86
+ or recovery semantics.
87
+
88
+ Every retained page must name concrete trigger, handler, state, side-effect,
89
+ and recovery identities with source locators. A runtime page that only lists
90
+ directories or says a worker “processes events” is too thin.
91
+
92
+ Connect producers and consumers only through a concrete topic/trigger/schema
93
+ identity. A shared type name or import is insufficient.
94
+
95
+ ## Template composition examples
96
+
97
+ - A consumer that invokes a domain boundary reads `domain-service.md`.
98
+ - A scheduler that calls external APIs selects `adapter-integration` and reads
99
+ `protocol-boundary.md`.
100
+ - A controller exposing administrative commands may combine this template with
101
+ `cli-tool.md` or `api-service.md`, but should still produce one runtime map.
102
+
103
+ ## Revise or stop when
104
+
105
+ - no trigger registry or executable worker entry can be found;
106
+ - delivery, ordering, retry, or idempotency would be guessed;
107
+ - the producer or authoritative payload contract is required but unavailable;
108
+ - the plan expands generated event structures or helpers one symbol per page;
109
+ - runtime configuration cannot be distinguished from test setup.
@@ -0,0 +1,129 @@
1
+ ---
2
+ id: context.code-indexer.template.cli-tool
3
+ kind: procedure
4
+ media-type: text/markdown
5
+ ---
6
+
7
+ # CLI and developer tool template
8
+
9
+ Use for `cli-tool`: command-line applications, developer tools, administrative
10
+ executables, generators, and command-driven plugin hosts. A build script used
11
+ only internally does not need a CLI knowledge unit unless it is a supported
12
+ operator or contributor surface.
13
+
14
+ Use the exact profile and Artifact policy variant supplied by the workset.
15
+
16
+ ## Evidence pass
17
+
18
+ Locate:
19
+
20
+ - executable/bin entry, runtime requirement, and command parser;
21
+ - root and nested command registration;
22
+ - positional arguments, flags, defaults, mutually exclusive options, and input
23
+ schemas;
24
+ - configuration files, environment variables, profiles, credential sources,
25
+ and precedence;
26
+ - interactive prompts versus non-interactive/automation behavior;
27
+ - filesystem, repository, network, platform, and plugin side effects;
28
+ - output formats, stdout/stderr behavior, exit codes, polling, and recovery;
29
+ - local development, packaging, installation, compatibility, and release;
30
+ - deprecated commands, aliases, parser helpers, and formatters to exclude.
31
+
32
+ Inspect actual command registration and representative execution paths. Help
33
+ text is useful evidence but may not describe hidden preconditions or effects.
34
+
35
+ ## Questions the knowledge must answer
36
+
37
+ 1. How is the CLI installed or invoked, and what runtime does it require?
38
+ 2. What stable command families exist and what user outcomes do they produce?
39
+ 3. What inputs, configuration, credentials, and precedence rules apply?
40
+ 4. Which commands mutate files, repositories, remote services, or user state?
41
+ 5. What output and exit behavior supports automation and diagnosis?
42
+ 6. Which plugin or extension points change the command surface?
43
+ 7. How does a user recover from common source-backed failure states?
44
+
45
+ ## Suggested knowledge units
46
+
47
+ - **Command map**: invocation model, command families, configuration,
48
+ credentials, side effects, output formats, and extension points.
49
+ - **Task workflow**: an end-to-end supported user goal spanning several
50
+ commands, with preconditions, state transitions, and recovery.
51
+ - **Command-family reference**: coherent subcommands with inputs, outputs,
52
+ side effects, and examples.
53
+ - **Configuration and credentials**: when precedence or environment behavior is
54
+ complex and stable enough for a dedicated page.
55
+ - **Plugin/extension contract**: use the single complete blueprint in
56
+ `plugin-extension.md`; the command map only links commands and configuration
57
+ to that contract.
58
+ - **Development and release guide**: only source-backed contributor workflows
59
+ owned by this module.
60
+
61
+ ## Chapter blueprints
62
+
63
+ ```markdown
64
+ # <CLI> command map
65
+ ## Purpose, installation, and invocation
66
+ ## Command families
67
+ ## Configuration and precedence
68
+ ## Credentials and external dependencies
69
+ ## Filesystem/repository/remote side effects
70
+ ## Output formats and exit semantics
71
+ ## Plugins, compatibility, and release
72
+ ## Diagnostics, recovery, and exclusions
73
+ ```
74
+
75
+ For a command family:
76
+
77
+ ```markdown
78
+ # <Command family>
79
+ ## User outcomes and preconditions
80
+ ## Commands and arguments
81
+ ## Configuration and credential requirements
82
+ ## Execution and side effects
83
+ ## Output and exit behavior
84
+ ## Failure recovery
85
+ ## Source-backed examples
86
+ ```
87
+
88
+ A workflow page may use:
89
+
90
+ ```markdown
91
+ # <User task>
92
+ ## Starting state
93
+ ## Command sequence
94
+ ## State and artifact changes
95
+ ## Remote operations
96
+ ## Success checks
97
+ ## Recovery and rollback boundaries
98
+ ```
99
+
100
+ ## Granularity and relationships
101
+
102
+ Prefer command families and user tasks over one page per parser node, flag,
103
+ prompt, formatter, or implementation function. Split only when commands have
104
+ different state ownership, external systems, or safety/recovery contracts.
105
+
106
+ Every retained page must name real commands, task outcomes, state changes, or
107
+ extension identities with source locators. A list of command directories or
108
+ parser nodes is not a command map.
109
+
110
+ Connect commands to configuration, package/file outputs, plugin providers, and
111
+ platform operations only when source registrations or call sites prove them.
112
+
113
+ ## Template composition examples
114
+
115
+ - A CLI with installable providers also reads `adapter-integration.md` and
116
+ `plugin-extension.md`.
117
+ - A CLI that primarily wraps a remote protocol selects `adapter-integration` and
118
+ reads `protocol-boundary.md`.
119
+ - A monorepo release tool may combine this template with
120
+ `monorepo-container.md` and the `development-and-delivery.md` composer
121
+ contract without duplicating its command registry.
122
+
123
+ ## Revise or stop when
124
+
125
+ - no stable command registry or executable entry is found;
126
+ - examples require inventing flags or commands not present in source;
127
+ - side effects or credential behavior are unclear but material to safe use;
128
+ - every option/parser helper is becoming an independent page;
129
+ - deprecated or hidden implementation commands are presented as supported.
@@ -0,0 +1,99 @@
1
+ ---
2
+ id: context.code-indexer.template.component-library
3
+ kind: procedure
4
+ media-type: text/markdown
5
+ ---
6
+
7
+ # Component library template
8
+
9
+ Use for `component-library`: a supported collection of UI components, tokens,
10
+ hooks, primitives, or design-system packages consumed through documented
11
+ imports and component contracts. A web application that happens to contain
12
+ shared components remains a `web-application` unless the component surface is
13
+ published as an independent consumer boundary.
14
+
15
+ Use the exact profile and Artifact policy variant supplied by the workset.
16
+
17
+ ## Evidence pass
18
+
19
+ Locate:
20
+
21
+ - public package exports, component registries, barrels, or documented imports;
22
+ - component props, slots, events, variants, composition, and lifecycle rules;
23
+ - theme, token, styling, accessibility, locale, and provider requirements;
24
+ - maintained examples, stories, visual tests, and consumer integration tests;
25
+ - compatibility, peer dependency, platform, and release constraints;
26
+ - generated declarations, documentation sites, demos, and internal primitives
27
+ that must not become independent reader pages without a public contract.
28
+
29
+ Treat stories and examples as usage evidence, not as authority for unsupported
30
+ props or behavior. When generated declarations disagree with source, identify
31
+ the authoritative source and record the gap.
32
+
33
+ ## Questions the knowledge must answer
34
+
35
+ 1. Which component families are public, and how are they imported?
36
+ 2. What props, events, variants, slots, and composition rules are supported?
37
+ 3. Which providers, themes, tokens, runtimes, or peer packages are required?
38
+ 4. What accessibility, state, lifecycle, and failure constraints apply?
39
+ 5. Which examples demonstrate supported use and important combinations?
40
+ 6. Which implementation primitives or demo-only components are excluded?
41
+
42
+ ## Suggested knowledge units
43
+
44
+ - **Library map**: purpose, supported entrypoints, providers, component
45
+ families, compatibility, and navigation.
46
+ - **Component-family guide**: shared concepts, composition, variants,
47
+ accessibility, and representative source-backed examples.
48
+ - **Granular component reference**: only when consumers search for the exact
49
+ public component and its contract contains meaningful behavior.
50
+ - **Tokens and theming**: only the stable consumer contract, including scope,
51
+ defaults, override order, and compatibility.
52
+ - **Migration or compatibility guide**: only when maintained sources describe
53
+ version transitions or supported platform constraints.
54
+
55
+ ## Chapter blueprints
56
+
57
+ ```markdown
58
+ # <Component library> map
59
+ ## Purpose and intended consumers
60
+ ## Supported imports and providers
61
+ ## Component and token families
62
+ ## Composition and state model
63
+ ## Accessibility and localization
64
+ ## Theming and customization
65
+ ## Compatibility and release constraints
66
+ ## Examples, evidence, and exclusions
67
+ ```
68
+
69
+ For a component family:
70
+
71
+ ```markdown
72
+ # <Component family>
73
+ ## When to use it
74
+ ## Supported components and imports
75
+ ## Props, events, slots, and variants
76
+ ## Composition and state
77
+ ## Accessibility and interaction
78
+ ## Source-backed examples
79
+ ## Related families and evidence
80
+ ```
81
+
82
+ ## Granularity and relationships
83
+
84
+ Prefer component families over one page per export. Use a granular page only
85
+ when the exact public identity has a stable consumer contract beyond a type
86
+ signature. Relate components to providers, tokens, accessibility behavior,
87
+ examples, and compatible peers only when source evidence supports the link.
88
+
89
+ Do not copy implementation bodies, generated declarations, every story, or
90
+ every styling variant into reader-facing content. Do not use ordinal batches
91
+ to disguise an enumeration-heavy index.
92
+
93
+ ## Revise or stop when
94
+
95
+ - public components cannot be distinguished from internal or demo-only code;
96
+ - component behavior is inferred only from screenshots or names;
97
+ - examples invent combinations that maintained usage does not support;
98
+ - accessibility or provider requirements are asserted without evidence;
99
+ - one-page-per-component expansion has no consumer-navigation justification.
@@ -0,0 +1,73 @@
1
+ ---
2
+ id: context.code-indexer.template.contract-source
3
+ kind: procedure
4
+ media-type: text/markdown
5
+ ---
6
+
7
+ # Authoritative contract source template
8
+
9
+ Use for `contract-source`: a module whose maintained value is an authoritative
10
+ IDL, OpenAPI document, schema registry, message contract, or equivalent
11
+ machine-readable interface definition. It defines contracts consumed by other
12
+ modules but does not need to execute or dispatch them itself.
13
+
14
+ Use the exact profile and Artifact policy variant supplied by the workset.
15
+ Generated projections must point back to this authority and remain supporting
16
+ evidence rather than a second contract authority.
17
+
18
+ ## Evidence pass
19
+
20
+ Locate:
21
+
22
+ - schema roots, namespaces/packages, service or message registries, and imports;
23
+ - operation, event, request, response, and error identities;
24
+ - versioning, compatibility, deprecation, and evolution rules;
25
+ - generator configuration, target languages/packages, and generated output
26
+ boundaries;
27
+ - known provider and consumer registrations when those modules are registered;
28
+ - ownership, validation, publication, and release entrypoints.
29
+
30
+ ## Questions the knowledge must answer
31
+
32
+ 1. Which contracts are authoritative in this module?
33
+ 2. How are operations/messages grouped and identified?
34
+ 3. What versioning and compatibility rules are declared?
35
+ 4. Which generated artifacts and consumers derive from this source?
36
+ 5. How is the contract validated, published, and changed?
37
+
38
+ ## Suggested knowledge units
39
+
40
+ - **Contract registry**: namespaces, service/message families, authority,
41
+ versions, owners, and navigation.
42
+ - **Operation or message-family reference**: exact identities, payload roles,
43
+ errors, compatibility, and generated targets.
44
+ - **Generation and publication map**: generator inputs/outputs, validation,
45
+ versioning, and release boundary.
46
+ - **Provider-consumer flow**: only when both runtime endpoints are registered
47
+ and source-backed; use the cross-module template.
48
+
49
+ ## Chapter blueprint
50
+
51
+ ```markdown
52
+ # <Contract module> registry
53
+ ## Authority, ownership, and schema roots
54
+ ## Namespaces and contract families
55
+ ## Operations, messages, and error identities
56
+ ## Versioning, compatibility, and deprecation
57
+ ## Generated targets and active consumers
58
+ ## Validation, publication, and release
59
+ ## Evidence and exclusions
60
+ ```
61
+
62
+ Use the canonical operation record from `protocol-boundary.md` for detailed
63
+ families. Do not duplicate every generated language binding or claim runtime
64
+ behavior from the schema alone.
65
+
66
+ ## Granularity and stop conditions
67
+
68
+ Aggregate related operations/messages by authoritative family. Split when
69
+ namespace, owner, version policy, or compatibility behavior differs. Every page
70
+ must contain exact contract identities and source locators, not just filenames.
71
+
72
+ Revise or stop when authority cannot be distinguished from a generated copy,
73
+ imports or versions are unresolved, or compatibility claims are not declared.
@@ -0,0 +1,77 @@
1
+ ---
2
+ id: context.code-indexer.template.data-sync-reconciliation
3
+ kind: procedure
4
+ media-type: text/markdown
5
+ ---
6
+
7
+ # Data synchronization and reconciliation template
8
+
9
+ Use for `data-sync-reconciliation` when a stable reader question crosses source,
10
+ transformation, persistence, delivery, or reconciliation boundaries. The flow
11
+ is an independently owned logical unit; each participating module keeps its own
12
+ non-duplicated responsibility map.
13
+
14
+ ## Evidence pass
15
+
16
+ Establish:
17
+
18
+ - an explicit start trigger and terminal outcome;
19
+ - each registered module boundary in execution order;
20
+ - operation, event, repository, command, or plugin identities joining adjacent
21
+ modules;
22
+ - transformations, ownership handoffs, state changes, and failure boundaries;
23
+ - source locators on both sides of every join;
24
+ - authentication, retries, fallback, observability, and recovery only where
25
+ they are explicitly configured.
26
+
27
+ Imports, filenames, symbol co-occurrence, and similar names do not prove a
28
+ runtime chain.
29
+
30
+ ## Questions the knowledge must answer
31
+
32
+ 1. What reader goal and source-backed trigger start the flow?
33
+ 2. Which module owns each step and boundary?
34
+ 3. Which exact contract or identity joins each adjacent step?
35
+ 4. What state, identity, or data is transformed at every handoff?
36
+ 5. Where can the flow fail, retry, fall back, or terminate?
37
+
38
+ ## Chapter blueprint
39
+
40
+ ```markdown
41
+ # <Cross-module flow>
42
+ ## Reader goal and starting trigger
43
+ ## Boundary sequence and module ownership
44
+ ## Contract and transformation at each handoff
45
+ ## State changes and terminal outcome
46
+ ## Authentication, failure, retry, and fallback
47
+ ## Source-backed edge inventory
48
+ ## Known gaps and excluded implementation detail
49
+ ```
50
+
51
+ Examples include application-to-client-to-endpoint, endpoint-to-service-to-
52
+ repository, producer-to-event-to-consumer, command-to-remote-operation, and
53
+ plugin-host-to-provider.
54
+
55
+ ## Partition and ownership rule
56
+
57
+ A flow normally cites sources already owned by module units. Give the flow one
58
+ stable SubjectKey and keep module inventory ownership unchanged; its author
59
+ workset may reference the exact cross-source evidence views but must not claim
60
+ the same inventory members as a second primary owner.
61
+
62
+ The aggregate candidate may cite evidence from every participating source. It
63
+ must cover all Route-reported structural probes selected by the flow profile;
64
+ one page may cover several probes when it carries each exact evidence locator.
65
+ Use `operation` and `handoff` candidate sections and emit source-backed
66
+ `depends_on` edges from the owning module candidate to the next registered
67
+ module candidate. Narrative arrows or a textual sequence do not satisfy the
68
+ structured relationship requirement.
69
+
70
+ ## Granularity and stop conditions
71
+
72
+ Emit one deduplicated page per coherent end-to-end flow family. Split when the
73
+ trigger, terminal outcome, ownership, contract, or failure policy differs.
74
+
75
+ Revise or stop when either endpoint or a joining identity is missing, the chain
76
+ crosses unregistered sources, relationships depend on inference, or the output
77
+ repeats module pages without adding a handoff model.
@@ -0,0 +1,117 @@
1
+ ---
2
+ id: context.code-indexer.template.derived-generated-source
3
+ kind: procedure
4
+ media-type: text/markdown
5
+ ---
6
+
7
+ # Generated, mirrored, vendored, and legacy source template
8
+
9
+ Use for `derived-generated-source` and source states `generated`, `mirrored`,
10
+ `vendored`, or `legacy`. Its main purpose is to prevent derived artifacts from
11
+ being mistaken for independent knowledge authority while preserving useful
12
+ consumer and provenance information.
13
+
14
+ ## Evidence pass
15
+
16
+ Locate:
17
+
18
+ - generation, sync, vendoring, migration, or deprecation markers;
19
+ - authoritative repository, schema, template, source directory, or upstream
20
+ package;
21
+ - generator/sync command, configuration, version pin, and output boundary;
22
+ - ownership and update cadence;
23
+ - consumers that still import or execute the derived tree;
24
+ - local modifications, compatibility wrappers, or hand-maintained overlays;
25
+ - release/build artifacts and whether they are committed or reproducible;
26
+ - replacement path for legacy source when one is explicitly maintained.
27
+
28
+ Do not assume all files in a generated-looking directory are derived. Confirm
29
+ markers, build steps, headers, manifests, or source mapping.
30
+
31
+ ## Questions the knowledge must answer
32
+
33
+ 1. Why does this source exist and what lifecycle category applies?
34
+ 2. Where is the authoritative source of truth?
35
+ 3. How is the derived content produced, synchronized, or versioned?
36
+ 4. Which consumers depend on it and through what supported surface?
37
+ 5. Are local edits permitted, overwritten, or layered separately?
38
+ 6. What is safe to inspect here, and what knowledge belongs upstream?
39
+ 7. For legacy source, what current replacement and migration status are proven?
40
+
41
+ ## Suggested knowledge units
42
+
43
+ - **Provenance record**: lifecycle, authority, generator/sync, version relation,
44
+ ownership, output boundary, and consumer summary.
45
+ - **Generated public surface**: only when this tree is the supported consumer
46
+ interface; combine with `sdk-library` and keep the upstream schema explicit.
47
+ - **Compatibility or migration boundary**: when maintained wrappers or legacy
48
+ behavior remain operationally relevant and source-backed.
49
+ - **Update/recovery procedure**: only maintained generation or synchronization
50
+ commands, verification, and overwrite boundaries.
51
+
52
+ Default to a narrow provenance Artifact unless the workset also selects a
53
+ supported consumer surface. A consumer-facing derived unit must bind its
54
+ authority evidence to the confirmed source locator; a missing authority remains
55
+ a material gap rather than a reason to invent semantics or hide the supported
56
+ consumer surface.
57
+
58
+ ## Chapter blueprints
59
+
60
+ ```markdown
61
+ # <Derived source> provenance
62
+ ## Lifecycle classification
63
+ ## Authority and ownership
64
+ ## Generator, sync, or vendoring mechanism
65
+ ## Version and compatibility relationship
66
+ ## Output boundary and local-edit policy
67
+ ## Active consumers
68
+ ## Update, verification, and recovery
69
+ ## Reader-facing knowledge owned elsewhere
70
+ ```
71
+
72
+ For a generated public client:
73
+
74
+ ```markdown
75
+ # <Generated client> consumer surface
76
+ ## Intended consumers and supported import
77
+ ## Authoritative schema and generation version
78
+ ## Client initialization and operation families
79
+ ## Generated versus maintained behavior
80
+ ## Compatibility and regeneration
81
+ ## Evidence and excluded generated detail
82
+ ```
83
+
84
+ ## Granularity and relationships
85
+
86
+ Do not duplicate pages already owned by the authoritative schema,
87
+ implementation, or package. Generated files may provide exact locators and
88
+ cross-checks but should not expand every model, constant, serializer, or method
89
+ into reader-facing Markdown.
90
+
91
+ Relate the derived unit to its authority and active consumers. A relationship
92
+ to an upstream schema must use an explicit locator or generation configuration,
93
+ not a naming guess.
94
+
95
+ If the authority cannot be located, a narrow provenance unit may still record
96
+ confirmed lifecycle markers, generator clues, output boundaries, and active
97
+ consumers. Keep any separate unit that promises field semantics, compatibility,
98
+ or upstream meaning in a `request-material` disposition tied to a blocking
99
+ material-question proposal until the missing authority is provided.
100
+
101
+ ## Template composition examples
102
+
103
+ - A generated API client is `sdk-library` + `derived-generated-source` and reads
104
+ `protocol-boundary.md` for protocol authority.
105
+ - A vendored library with no project-owned surface remains one provenance page,
106
+ not a copied API reference.
107
+ - A legacy adapter still serving callers combines this template with
108
+ `adapter-integration.md`; document only proven compatibility and migration behavior.
109
+
110
+ ## Revise or stop when
111
+
112
+ - the authoritative source cannot be identified for semantic or compatibility
113
+ claims beyond a narrow provenance record;
114
+ - generated and hand-maintained files cannot be separated;
115
+ - the plan duplicates upstream reference material without consumer value;
116
+ - legacy replacement or deprecation claims are inferred rather than evidenced;
117
+ - generated symbols dominate projected pages.