@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.
- package/README.md +67 -6
- package/README.zh-CN.md +42 -5
- package/cli.js +75051 -42154
- package/indexers/bundles/context-code-indexer/SKILL.md +20 -0
- package/indexers/bundles/context-code-indexer/context-indexer.yaml +230 -0
- package/indexers/bundles/context-code-indexer/references/composers/contracts-and-chains.md +23 -0
- package/indexers/bundles/context-code-indexer/references/composers/cross-module-chain.md +22 -0
- package/indexers/bundles/context-code-indexer/references/composers/development-and-delivery.md +22 -0
- package/indexers/bundles/context-code-indexer/references/composers/event-flow.md +21 -0
- package/indexers/bundles/context-code-indexer/references/composers/examples-and-documentation.md +22 -0
- package/indexers/bundles/context-code-indexer/references/composers/persistence-boundary.md +21 -0
- package/indexers/bundles/context-code-indexer/references/composers/protocol-boundary.md +22 -0
- package/indexers/bundles/context-code-indexer/references/composers/public-contract.md +23 -0
- package/indexers/bundles/context-code-indexer/references/indexer.md +49 -0
- package/indexers/bundles/context-code-indexer/references/metrics.md +201 -0
- package/indexers/bundles/context-code-indexer/templates/adapter-integration.md +119 -0
- package/indexers/bundles/context-code-indexer/templates/api-service.md +118 -0
- package/indexers/bundles/context-code-indexer/templates/background-runtime.md +109 -0
- package/indexers/bundles/context-code-indexer/templates/cli-tool.md +129 -0
- package/indexers/bundles/context-code-indexer/templates/component-library.md +99 -0
- package/indexers/bundles/context-code-indexer/templates/contract-source.md +73 -0
- package/indexers/bundles/context-code-indexer/templates/data-sync-reconciliation.md +77 -0
- package/indexers/bundles/context-code-indexer/templates/derived-generated-source.md +117 -0
- package/indexers/bundles/context-code-indexer/templates/domain-service.md +109 -0
- package/indexers/bundles/context-code-indexer/templates/event-consumer.md +62 -0
- package/indexers/bundles/context-code-indexer/templates/gateway-facade.md +89 -0
- package/indexers/bundles/context-code-indexer/templates/monorepo-container.md +124 -0
- package/indexers/bundles/context-code-indexer/templates/plugin-extension.md +52 -0
- package/indexers/bundles/context-code-indexer/templates/sdk-library.md +132 -0
- package/indexers/bundles/context-code-indexer/templates/storage-repository.md +56 -0
- package/indexers/bundles/context-code-indexer/templates/web-application.md +146 -0
- package/indexers/bundles/context-code-indexer/tests/fixtures/chapters.json +226 -0
- package/indexers/bundles/context-code-indexer/tests/fixtures/composers.json +82 -0
- package/indexers/bundles/context-code-indexer/tests/fixtures/profiles.json +210 -0
- package/indexers/bundles/context-code-indexer/tests/fixtures/scenarios.json +122 -0
- package/indexers/bundles/context-markdown-indexer/SKILL.md +20 -0
- package/indexers/bundles/context-markdown-indexer/context-indexer.yaml +147 -0
- package/indexers/bundles/context-markdown-indexer/references/classification.md +63 -0
- package/indexers/bundles/context-markdown-indexer/references/editorial-policy.md +106 -0
- package/indexers/bundles/context-markdown-indexer/references/indexer.md +23 -0
- package/indexers/bundles/context-markdown-indexer/references/semantic-planning.md +146 -0
- package/indexers/bundles/context-markdown-indexer/references/structure-and-artifacts.md +109 -0
- package/indexers/bundles/context-markdown-indexer/tests/fixtures/anonymous.json +31 -0
- package/indexers/bundles/context-markdown-indexer/tests/fixtures/editorial.json +309 -0
- package/indexers/bundles/context-markdown-indexer/tests/fixtures/migration-equivalence.json +186 -0
- package/indexers/bundles/context-markdown-indexer/tests/fixtures/profiles.json +171 -0
- package/indexers/bundles/context-markdown-indexer/tests/fixtures/routing.json +151 -0
- package/indexers/capability-manifest.json +40 -0
- package/indexers/contracts/hard-rule-conformance.json +2644 -0
- package/indexers/contracts/operator-contract.json +35 -0
- package/indexers/contracts/profile-contract.json +10162 -0
- package/indexers/release-manifest.json +208 -0
- package/package.json +5 -4
- package/plugins/README.md +17 -109
- package/plugins/README_CN.md +11 -89
- package/plugins/VERSION +1 -1
- package/plugins/claude/.claude-plugin/plugin.json +3 -11
- package/plugins/claude/CLAUDE.md +1 -1
- package/plugins/claude/README.md +1 -1
- package/plugins/claude/commands/context.md +76 -1
- package/plugins/codex/.codex-plugin/plugin.json +6 -17
- package/plugins/codex/AGENTS.md +1 -1
- package/plugins/codex/README.md +1 -1
- package/plugins/codex/skills/context/SKILL.md +77 -13
- package/plugins/cursor/.cursor-plugin/plugin.json +4 -17
- package/plugins/cursor/AGENTS.md +1 -1
- package/plugins/cursor/README.md +3 -2
- package/plugins/cursor/commands/c4a-context.md +76 -3
- package/plugins/skills/{c4a-context → context}/SKILL.md +78 -14
- package/plugins/skills/context-code-indexer/SKILL.md +20 -0
- package/plugins/skills/context-code-indexer/context-indexer.yaml +230 -0
- package/plugins/skills/context-code-indexer/references/composers/contracts-and-chains.md +23 -0
- package/plugins/skills/context-code-indexer/references/composers/cross-module-chain.md +22 -0
- package/plugins/skills/context-code-indexer/references/composers/development-and-delivery.md +22 -0
- package/plugins/skills/context-code-indexer/references/composers/event-flow.md +21 -0
- package/plugins/skills/context-code-indexer/references/composers/examples-and-documentation.md +22 -0
- package/plugins/skills/context-code-indexer/references/composers/persistence-boundary.md +21 -0
- package/plugins/skills/context-code-indexer/references/composers/protocol-boundary.md +22 -0
- package/plugins/skills/context-code-indexer/references/composers/public-contract.md +23 -0
- package/plugins/skills/context-code-indexer/references/indexer.md +49 -0
- package/plugins/skills/context-code-indexer/references/metrics.md +201 -0
- package/plugins/skills/context-code-indexer/templates/adapter-integration.md +119 -0
- package/plugins/skills/context-code-indexer/templates/api-service.md +118 -0
- package/plugins/skills/context-code-indexer/templates/background-runtime.md +109 -0
- package/plugins/skills/context-code-indexer/templates/cli-tool.md +129 -0
- package/plugins/skills/context-code-indexer/templates/component-library.md +99 -0
- package/plugins/skills/context-code-indexer/templates/contract-source.md +73 -0
- package/plugins/skills/context-code-indexer/templates/data-sync-reconciliation.md +77 -0
- package/plugins/skills/context-code-indexer/templates/derived-generated-source.md +117 -0
- package/plugins/skills/context-code-indexer/templates/domain-service.md +109 -0
- package/plugins/skills/context-code-indexer/templates/event-consumer.md +62 -0
- package/plugins/skills/context-code-indexer/templates/gateway-facade.md +89 -0
- package/plugins/skills/context-code-indexer/templates/monorepo-container.md +124 -0
- package/plugins/skills/context-code-indexer/templates/plugin-extension.md +52 -0
- package/plugins/skills/context-code-indexer/templates/sdk-library.md +132 -0
- package/plugins/skills/context-code-indexer/templates/storage-repository.md +56 -0
- package/plugins/skills/context-code-indexer/templates/web-application.md +146 -0
- package/plugins/skills/context-code-indexer/tests/fixtures/chapters.json +226 -0
- package/plugins/skills/context-code-indexer/tests/fixtures/composers.json +82 -0
- package/plugins/skills/context-code-indexer/tests/fixtures/profiles.json +210 -0
- package/plugins/skills/context-code-indexer/tests/fixtures/scenarios.json +122 -0
- package/plugins/skills/context-markdown-indexer/SKILL.md +20 -0
- package/plugins/skills/context-markdown-indexer/context-indexer.yaml +147 -0
- package/plugins/skills/context-markdown-indexer/references/classification.md +63 -0
- package/plugins/skills/context-markdown-indexer/references/editorial-policy.md +106 -0
- package/plugins/skills/context-markdown-indexer/references/indexer.md +23 -0
- package/plugins/skills/context-markdown-indexer/references/semantic-planning.md +146 -0
- package/plugins/skills/context-markdown-indexer/references/structure-and-artifacts.md +109 -0
- package/plugins/skills/context-markdown-indexer/tests/fixtures/anonymous.json +31 -0
- package/plugins/skills/context-markdown-indexer/tests/fixtures/editorial.json +309 -0
- package/plugins/skills/context-markdown-indexer/tests/fixtures/migration-equivalence.json +186 -0
- package/plugins/skills/context-markdown-indexer/tests/fixtures/profiles.json +171 -0
- package/plugins/skills/context-markdown-indexer/tests/fixtures/routing.json +151 -0
- package/providers/context/actions/accept-main-index-run.yaml +7 -0
- package/providers/context/actions/accept-material-answer-run.yaml +7 -0
- package/providers/context/actions/accept-post-author-composer-run.yaml +7 -0
- package/providers/context/actions/actualize-material-answer-bindings.yaml +8 -0
- package/providers/context/actions/apply-document-optimization-guidance.yaml +5 -0
- package/providers/context/actions/apply-indexer-project.yaml +7 -0
- package/providers/context/actions/audit-material-gap-state.yaml +8 -0
- package/providers/context/actions/audit-projected-artifact-fan-out.yaml +8 -0
- package/providers/context/actions/authorize-indexer-contract-overlay.yaml +7 -0
- package/providers/context/actions/authorize-indexer-dependencies.yaml +7 -0
- package/providers/context/actions/authorize-indexer-program-execution.yaml +7 -0
- package/providers/context/actions/build-main-index-author-worksets.yaml +7 -0
- package/providers/context/actions/build-main-index-catalog-fallback.yaml +7 -0
- package/providers/context/actions/build-main-index-partition-worksets.yaml +7 -0
- package/providers/context/actions/build-material-question-workset.yaml +7 -0
- package/providers/context/actions/build-post-author-composer-worksets.yaml +7 -0
- package/providers/context/actions/build-question-target-inventory.yaml +7 -0
- package/providers/context/actions/build-subject-catalog.yaml +7 -0
- package/providers/context/actions/build-target-resolution-views.yaml +7 -0
- package/providers/context/actions/checkpoint-material-answer-review.yaml +8 -0
- package/providers/context/actions/checkpoint-material-gaps.yaml +8 -0
- package/providers/context/actions/close-indexer-approved-knowledge.yaml +8 -0
- package/providers/context/actions/compile-indexer-candidates.yaml +8 -0
- package/providers/context/actions/compose-indexer-post-author-fragments.yaml +7 -0
- package/providers/context/actions/configure-community-indexer-fallback.yaml +6 -0
- package/providers/context/actions/configure-indexer-providers.yaml +6 -0
- package/providers/context/actions/confirm-index-requirement-workset.yaml +8 -0
- package/providers/context/actions/confirm-subject-reidentification.yaml +8 -0
- package/providers/context/actions/converge-main-index-partition-run.yaml +7 -0
- package/providers/context/actions/discover-markdown-indexer-providers.yaml +6 -0
- package/providers/context/actions/evaluate-material-gaps.yaml +8 -0
- package/providers/context/actions/fail-main-index-run.yaml +7 -0
- package/providers/context/actions/fail-material-answer-run.yaml +7 -0
- package/providers/context/actions/fail-post-author-composer-run.yaml +7 -0
- package/providers/context/actions/inspect-index-candidate-review-readiness.yaml +8 -0
- package/providers/context/actions/inspect-index-profile-failure.yaml +7 -0
- package/providers/context/actions/inspect-indexer-dependencies.yaml +7 -0
- package/providers/context/actions/inspect-indexer-program-execution.yaml +7 -0
- package/providers/context/actions/inspect-indexer-project-proposal.yaml +7 -0
- package/providers/context/actions/inspect-markdown-provider-capture.yaml +7 -0
- package/providers/context/actions/inspect-material-answer-review.yaml +8 -0
- package/providers/context/actions/materialize-indexer-instructions.yaml +7 -0
- package/providers/context/actions/observe-indexer-project.yaml +7 -0
- package/providers/context/actions/observe-main-index-run-ledger.yaml +7 -0
- package/providers/context/actions/observe-material-answer-runs.yaml +7 -0
- package/providers/context/actions/observe-post-author-composer-worksets.yaml +7 -0
- package/providers/context/actions/override-index-profile-audit.yaml +7 -0
- package/providers/context/actions/prepare-indexer-customization-project.yaml +7 -0
- package/providers/context/actions/prepare-main-index-run-ledger.yaml +7 -0
- package/providers/context/actions/prepare-material-answer-runs.yaml +7 -0
- package/providers/context/actions/propose-indexer-customization.yaml +7 -0
- package/providers/context/actions/propose-overlay-question-amendment.yaml +7 -0
- package/providers/context/actions/rebind-indexer-selection-to-requirement.yaml +7 -0
- package/providers/context/actions/reconcile-indexer-results.yaml +7 -0
- package/providers/context/actions/record-index-profile-revision.yaml +7 -0
- package/providers/context/actions/report-index-profile-failure.yaml +7 -0
- package/providers/context/actions/report-indexer-incremental-impact.yaml +8 -0
- package/providers/context/actions/resolve-effective-composers.yaml +7 -0
- package/providers/context/actions/review-material-answer-candidate.yaml +8 -0
- package/providers/context/actions/revise-index-output.yaml +7 -0
- package/providers/context/actions/route-index-requirement-confirmation.yaml +8 -0
- package/providers/context/actions/route-indexer-provider-selection.yaml +7 -0
- package/providers/context/actions/run-indexer-agent-step.yaml +7 -0
- package/providers/context/actions/run-indexer-post-author-composer.yaml +7 -0
- package/providers/context/actions/run-material-answer-indexers.yaml +7 -0
- package/providers/context/actions/start-main-index-run.yaml +7 -0
- package/providers/context/actions/start-material-answer-run.yaml +7 -0
- package/providers/context/actions/start-post-author-composer-run.yaml +7 -0
- package/providers/context/actions/validate-indexer-contract-overlays.yaml +7 -0
- package/providers/context/actions/validate-indexer-customization.yaml +7 -0
- package/providers/context/actions/validate-indexer-selection-proposal.yaml +7 -0
- package/providers/context/actions/validate-main-index-run.yaml +7 -0
- package/providers/context/actions/validate-markdown-provider-selection.yaml +7 -0
- package/providers/context/actions/validate-subject-key-schemas.yaml +8 -0
- package/providers/context/codes.yaml +70 -0
- package/providers/context/graphs/indexer.yaml +1068 -0
- package/providers/context/graphs/workspace.yaml +20 -1
- package/providers/context/manifest.json +1433 -121
- package/providers/context/provider.yaml +3 -2
- package/providers/context/resources/manuals/reference/code-extractors.md +2 -2
- package/providers/context/resources/manuals/reference/project-api.md +2 -2
- package/providers/context/resources/procedures/code-extraction.md +6 -2
- package/providers/context/resources/procedures/code-index-audit.md +36 -6
- package/providers/context/resources/procedures/document-optimization.md +23 -4
- package/providers/context/resources/semantic/code-index/templates/adapter.md +9 -0
- package/providers/context/resources/semantic/code-index/templates/contracts-and-chains.md +81 -0
- package/providers/context/resources/views/resolved-indexer-instructions.yaml +23 -0
- package/providers/context/schemas/document-optimization-decisions.schema.json +1 -1
- package/providers/context/schemas/indexer-agent-step-input.schema.json +30 -0
- package/providers/context/schemas/indexer-agent-step-result.schema.json +47 -0
- package/providers/context/schemas/indexer-candidate-compile-input.schema.json +57 -0
- package/providers/context/schemas/indexer-candidate-compile-output.schema.json +38 -0
- package/providers/context/schemas/indexer-candidate-review-readiness-input.schema.json +46 -0
- package/providers/context/schemas/indexer-candidate-review-readiness-output.schema.json +104 -0
- package/providers/context/schemas/indexer-contract-overlay-authorization-input.schema.json +32 -0
- package/providers/context/schemas/indexer-contract-overlay-authorization-result.schema.json +121 -0
- package/providers/context/schemas/indexer-contract-overlay-validation-input.schema.json +90 -0
- package/providers/context/schemas/indexer-contract-overlay-validation-result.schema.json +158 -0
- package/providers/context/schemas/indexer-customization-project-preparation-result.schema.json +44 -0
- package/providers/context/schemas/indexer-customization-proposal-draft.schema.json +83 -0
- package/providers/context/schemas/indexer-customization-validation-result.schema.json +36 -0
- package/providers/context/schemas/indexer-dependency-authorization-input.schema.json +71 -0
- package/providers/context/schemas/indexer-dependency-authorization-result.schema.json +138 -0
- package/providers/context/schemas/indexer-incremental-impact-input.schema.json +31 -0
- package/providers/context/schemas/indexer-incremental-impact-output.schema.json +52 -0
- package/providers/context/schemas/indexer-main-lifecycle-input.schema.json +187 -0
- package/providers/context/schemas/indexer-main-lifecycle-output.schema.json +180 -0
- package/providers/context/schemas/indexer-markdown-provider-capture-input.schema.json +17 -0
- package/providers/context/schemas/indexer-markdown-provider-capture-output.schema.json +54 -0
- package/providers/context/schemas/indexer-markdown-provider-validation-input.schema.json +34 -0
- package/providers/context/schemas/indexer-markdown-provider-validation-output.schema.json +75 -0
- package/providers/context/schemas/indexer-material-answer-lifecycle-input.schema.json +90 -0
- package/providers/context/schemas/indexer-material-answer-lifecycle-output.schema.json +80 -0
- package/providers/context/schemas/indexer-material-answer-review-inspection-input.schema.json +32 -0
- package/providers/context/schemas/indexer-material-answer-review-inspection-output.schema.json +32 -0
- package/providers/context/schemas/indexer-material-answer-review-resolution-input.schema.json +19 -0
- package/providers/context/schemas/indexer-material-answer-review-resolution-output.schema.json +87 -0
- package/providers/context/schemas/indexer-material-gap-lifecycle-input.schema.json +86 -0
- package/providers/context/schemas/indexer-material-gap-lifecycle-output.schema.json +19 -0
- package/providers/context/schemas/indexer-materialize-request.schema.json +53 -0
- package/providers/context/schemas/indexer-materialized-resource.schema.json +57 -0
- package/providers/context/schemas/indexer-overlay-question-amendment.schema.json +13 -0
- package/providers/context/schemas/indexer-overlay-question-proposal-input.schema.json +40 -0
- package/providers/context/schemas/indexer-overlay-question-rebind-input.schema.json +35 -0
- package/providers/context/schemas/indexer-overlay-question-rebind-result.schema.json +25 -0
- package/providers/context/schemas/indexer-post-author-fragment-request.schema.json +26 -0
- package/providers/context/schemas/indexer-post-author-fragment-result.schema.json +18 -0
- package/providers/context/schemas/indexer-post-author-lifecycle-input.schema.json +94 -0
- package/providers/context/schemas/indexer-post-author-lifecycle-output.schema.json +72 -0
- package/providers/context/schemas/indexer-profile-failure-inspection-input.schema.json +13 -0
- package/providers/context/schemas/indexer-profile-failure-inspection-result.schema.json +19 -0
- package/providers/context/schemas/indexer-profile-failure-report-input.schema.json +22 -0
- package/providers/context/schemas/indexer-profile-failure-report-result.schema.json +49 -0
- package/providers/context/schemas/indexer-profile-override-decision.schema.json +20 -0
- package/providers/context/schemas/indexer-profile-override-result.schema.json +49 -0
- package/providers/context/schemas/indexer-profile-revision-agent-input.schema.json +18 -0
- package/providers/context/schemas/indexer-profile-revision-record-input.schema.json +31 -0
- package/providers/context/schemas/indexer-profile-revision-record-result.schema.json +45 -0
- package/providers/context/schemas/indexer-program-execution-authorization-input.schema.json +145 -0
- package/providers/context/schemas/indexer-program-execution-authorization-result.schema.json +60 -0
- package/providers/context/schemas/indexer-project-action-result.schema.json +19 -0
- package/providers/context/schemas/indexer-project-gate-input.schema.json +100 -0
- package/providers/context/schemas/indexer-project-observation-input.schema.json +16 -0
- package/providers/context/schemas/indexer-project-observation-result.schema.json +42 -0
- package/providers/context/schemas/indexer-provider-route-input.schema.json +55 -0
- package/providers/context/schemas/indexer-provider-route-report.schema.json +188 -0
- package/providers/context/schemas/indexer-requirement-confirmation-input.schema.json +27 -0
- package/providers/context/schemas/indexer-requirement-confirmation-output.schema.json +24 -0
- package/providers/context/schemas/indexer-result-reconciliation-input.schema.json +59 -0
- package/providers/context/schemas/indexer-result-reconciliation-output.schema.json +43 -0
- package/providers/context/schemas/indexer-selection-proposal-input.schema.json +12 -0
- package/providers/context/schemas/indexer-selection-proposal-validation.schema.json +23 -0
- package/providers/context/schemas/indexer-subject-reidentification-input.schema.json +37 -0
- package/providers/context/schemas/indexer-subject-reidentification-output.schema.json +31 -0
- package/providers/context/skills/configure-indexer-providers/SKILL.md +58 -0
- package/providers/context/skills/prepare-indexer-customization-project/SKILL.md +31 -0
- package/providers/context/skills/propose-indexer-customization/SKILL.md +40 -0
- package/providers/context/skills/revise-index-output/SKILL.md +12 -0
- package/providers/context/skills/run-indexer-agent-step/SKILL.md +20 -0
- package/providers/context/skills/run-indexer-post-author-composer/SKILL.md +21 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: rebind-indexer-selection-to-requirement
|
|
3
|
+
runner: host
|
|
4
|
+
effect: read
|
|
5
|
+
handler: context.rebind-indexer-selection-to-requirement/v1
|
|
6
|
+
inputSchema: schemas/indexer-overlay-question-rebind-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-overlay-question-rebind-result.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: reconcile-indexer-results
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer reconcile-indexer-results --input .tmp/agent-payloads/indexer-reconciliation.json --format json
|
|
6
|
+
inputSchema: schemas/indexer-result-reconciliation-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-result-reconciliation-output.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: record-index-profile-revision
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer record-index-profile-revision --input .tmp/agent-payloads/indexer-profile-revision-record.json --format json
|
|
6
|
+
inputSchema: schemas/indexer-profile-revision-record-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-profile-revision-record-result.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: report-index-profile-failure
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer report-index-profile-failure --input .tmp/agent-payloads/indexer-profile-failure-report.json --format json
|
|
6
|
+
inputSchema: schemas/indexer-profile-failure-report-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-profile-failure-report-result.schema.json
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: report-indexer-incremental-impact
|
|
3
|
+
description: Compare the complete current author dependency views with the durable accepted Merkle projections and report exact Artifact and Section impact.
|
|
4
|
+
runner: command
|
|
5
|
+
effect: read
|
|
6
|
+
command: context indexer report-indexer-incremental-impact --input .tmp/agent-payloads/indexer-incremental-impact.json --format json
|
|
7
|
+
inputSchema: schemas/indexer-incremental-impact-input.schema.json
|
|
8
|
+
outputSchema: schemas/indexer-incremental-impact-output.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: resolve-effective-composers
|
|
3
|
+
runner: command
|
|
4
|
+
effect: read
|
|
5
|
+
command: context indexer resolve-effective-composers --input .tmp/agent-payloads/indexer-post-author-lifecycle.json --format json
|
|
6
|
+
inputSchema: schemas/indexer-post-author-lifecycle-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-post-author-lifecycle-output.schema.json
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: review-material-answer-candidate
|
|
3
|
+
description: Approve or reject only the exact material-answer evidence binding without approving reader content.
|
|
4
|
+
runner: host
|
|
5
|
+
effect: external
|
|
6
|
+
handler: context.review-material-answer-candidate/v1
|
|
7
|
+
inputSchema: schemas/indexer-material-answer-review-resolution-input.schema.json
|
|
8
|
+
outputSchema: schemas/indexer-material-answer-review-resolution-output.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: revise-index-output
|
|
3
|
+
runner: agent
|
|
4
|
+
effect: write
|
|
5
|
+
skill: skills/revise-index-output/SKILL.md
|
|
6
|
+
inputSchema: schemas/indexer-profile-revision-agent-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-profile-revision-record-input.schema.json
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: route-index-requirement-confirmation
|
|
3
|
+
description: Revalidate a requirement comparison report and select its exact confirmation Gate.
|
|
4
|
+
runner: command
|
|
5
|
+
effect: read
|
|
6
|
+
command: context indexer route-index-requirement-confirmation --input .tmp/agent-payloads/indexer-requirement-confirmation-route.json --format json
|
|
7
|
+
inputSchema: schemas/indexer-requirement-confirmation-input.schema.json
|
|
8
|
+
outputSchema: schemas/indexer-requirement-confirmation-output.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: route-indexer-provider-selection
|
|
3
|
+
runner: host
|
|
4
|
+
effect: read
|
|
5
|
+
handler: context.route-indexer-provider-selection/v1
|
|
6
|
+
inputSchema: schemas/indexer-provider-route-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-provider-route-report.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: run-indexer-post-author-composer
|
|
3
|
+
runner: agent
|
|
4
|
+
effect: write
|
|
5
|
+
skill: skills/run-indexer-post-author-composer/SKILL.md
|
|
6
|
+
inputSchema: schemas/indexer-post-author-fragment-request.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-post-author-fragment-result.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: start-main-index-run
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer start-main-index-run --input .tmp/agent-payloads/indexer-main-lifecycle.json --format json
|
|
6
|
+
inputSchema: schemas/indexer-main-lifecycle-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-main-lifecycle-output.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: start-material-answer-run
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer start-material-answer-run --input .tmp/agent-payloads/indexer-material-answer-start.json --format json
|
|
6
|
+
inputSchema: schemas/indexer-material-answer-lifecycle-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-material-answer-lifecycle-output.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: start-post-author-composer-run
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer start-post-author-composer-run --input .tmp/agent-payloads/indexer-post-author-lifecycle.json --format json
|
|
6
|
+
inputSchema: schemas/indexer-post-author-lifecycle-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-post-author-lifecycle-output.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: validate-indexer-contract-overlays
|
|
3
|
+
runner: host
|
|
4
|
+
effect: read
|
|
5
|
+
handler: context.validate-indexer-contract-overlay/v1
|
|
6
|
+
inputSchema: schemas/indexer-contract-overlay-validation-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-contract-overlay-validation-result.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: validate-indexer-customization
|
|
3
|
+
runner: host
|
|
4
|
+
effect: write
|
|
5
|
+
handler: context.validate-indexer-customization/v1
|
|
6
|
+
inputSchema: schemas/indexer-customization-proposal-draft.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-customization-validation-result.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: validate-indexer-selection-proposal
|
|
3
|
+
runner: host
|
|
4
|
+
effect: read
|
|
5
|
+
handler: context.validate-indexer-selection-proposal/v1
|
|
6
|
+
inputSchema: schemas/indexer-selection-proposal-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-selection-proposal-validation.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: validate-main-index-run
|
|
3
|
+
runner: command
|
|
4
|
+
effect: read
|
|
5
|
+
command: context indexer validate-main-index-run --input .tmp/agent-payloads/indexer-main-lifecycle.json --format json
|
|
6
|
+
inputSchema: schemas/indexer-main-lifecycle-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-main-lifecycle-output.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: validate-markdown-provider-selection
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer validate-markdown-provider-selection --input .tmp/agent-payloads/indexer-markdown-provider-validation.json --format json
|
|
6
|
+
inputSchema: schemas/indexer-markdown-provider-validation-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-markdown-provider-validation-output.schema.json
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: validate-subject-key-schemas
|
|
3
|
+
description: Recompute SubjectKey schema evolution and exact approved-Node mappings.
|
|
4
|
+
runner: command
|
|
5
|
+
effect: read
|
|
6
|
+
command: context indexer validate-subject-key-schemas --input .tmp/agent-payloads/indexer-subject-key-validation.json --format json
|
|
7
|
+
inputSchema: schemas/indexer-subject-reidentification-input.schema.json
|
|
8
|
+
outputSchema: schemas/indexer-subject-reidentification-output.schema.json
|
|
@@ -49,5 +49,75 @@ codes:
|
|
|
49
49
|
- { code: route.package.template-review-required, kind: route-reason, summary: "Replace or edit package templates, or explicitly accept the generic defaults.", document: resources/procedures/package-output.md }
|
|
50
50
|
- { code: route.document-revision.requested, kind: route-reason, summary: Apply and validate the user's requested correction on one approved knowledge page., document: resources/procedures/document-revision.md }
|
|
51
51
|
- { code: route.document-optimization.pending, kind: route-reason, summary: Resolve the current source-faithful document revision batch before building packages., document: resources/procedures/document-optimization.md }
|
|
52
|
+
- { code: route.document-optimization.guidance-required, kind: route-reason, summary: The same document revision quality problem remains after three attempts and requires one aggregated human direction., document: resources/procedures/document-optimization.md }
|
|
52
53
|
- { code: route.build.package-stale, kind: route-reason, summary: Build the declared package outputs from current approved knowledge., document: resources/procedures/close-and-build.md }
|
|
53
54
|
- { code: route.logs.delivery-pending, kind: route-reason, summary: Send locally queued runtime logs through the configured generic sink., document: resources/procedures/close-and-build.md }
|
|
55
|
+
- { code: route.indexer.agent-step, kind: route-reason, summary: Run one digest-bound Indexer workset with the static Context Agent Action. }
|
|
56
|
+
- { code: route.indexer.provider-configuration, kind: route-reason, summary: Configure an exact path-free Provider selection from currently visible Indexer Skills. }
|
|
57
|
+
- { code: route.indexer.markdown-capture-validation, kind: route-reason, summary: Require exact current document capture before discovering a semantic Markdown Provider. }
|
|
58
|
+
- { code: route.indexer.markdown-provider-discovery, kind: route-reason, summary: Report visible Markdown Indexer Skills and build one capture-bound Provider route input. }
|
|
59
|
+
- { code: route.indexer.markdown-provider-validation, kind: route-reason, summary: Revalidate the capture-bound selection and resolve it through the exact CLI or Host boundary. }
|
|
60
|
+
- { code: route.indexer.provider-selection, kind: route-reason, summary: "Mechanically route Provider composition, community fallback, owner conflicts, and capability gaps." }
|
|
61
|
+
- { code: route.indexer.community-fallback, kind: route-reason, summary: Retry unmatched owner cells with the applicable CLI-bundled community Indexer profile. }
|
|
62
|
+
- { code: route.indexer.selection-validation, kind: route-reason, summary: Statically validate the closed Provider selection before resolving any Bundle. }
|
|
63
|
+
- { code: route.indexer.customization-proposal, kind: route-reason, summary: Propose one minimal dependency-free extend draft from an exact final CLI capability-gap proof. }
|
|
64
|
+
- { code: route.indexer.customization-validation, kind: route-reason, summary: Validate and content-address stage one exact minimal customization draft without project source writes. }
|
|
65
|
+
- { code: route.indexer.customization-project-preparation, kind: route-reason, summary: Resolve the exact Providers and stage one CAS-bound customization project proposal. }
|
|
66
|
+
- { code: route.indexer.project-observation, kind: route-reason, summary: Observe the complete applied target set and rerun finalized selection validation. }
|
|
67
|
+
- { code: route.indexer.contract-overlay-validation, kind: route-reason, summary: Recompute data-only contract overlay conformance and resolve its trust path. }
|
|
68
|
+
- { code: route.indexer.requirement-confirmation-routing, kind: route-reason, summary: Revalidate the comparator report and select the ordinary or contraction confirmation Gate. }
|
|
69
|
+
- { code: route.indexer.requirement-confirmation, kind: route-reason, summary: "Confirm an initial, equivalent, or strengthening requirement workset." }
|
|
70
|
+
- { code: route.indexer.requirement-contraction, kind: route-reason, summary: Require non-delegable human confirmation for contraction or incomparable obligation replacement. }
|
|
71
|
+
- { code: route.indexer.contract-overlay-authorization, kind: route-reason, summary: Authorize one exact current-project contract overlay after conformance passes. }
|
|
72
|
+
- { code: route.indexer.overlay-question-proposal, kind: route-reason, summary: Propose namespaced question bindings from one current trusted overlay. }
|
|
73
|
+
- { code: route.indexer.overlay-question-rebind, kind: route-reason, summary: Revalidate an overlay requirement and build one coupled registry proposal. }
|
|
74
|
+
- { code: route.indexer.dependency-authorization, kind: route-reason, summary: Authorize one exact staged dependency intent set with install scripts disabled. }
|
|
75
|
+
- { code: route.indexer.program-execution-authorization, kind: route-reason, summary: Authorize one exact non-allowlisted Provider program for trusted non-sandboxed execution. }
|
|
76
|
+
- { code: route.indexer.project-confirmation, kind: route-reason, summary: Confirm and apply one exact staged Indexer project proposal. }
|
|
77
|
+
- { code: route.indexer.question-target-inventory, kind: route-reason, summary: Build the contract-derived question target denominator before partitioning. }
|
|
78
|
+
- { code: route.indexer.partition-worksets, kind: route-reason, summary: Build current immutable partition worksets from canonical inventory and owner cohorts. }
|
|
79
|
+
- { code: route.indexer.main-workset-observation, kind: route-reason, summary: Join the current main workset set with validated run records and select the next digest-bound work. }
|
|
80
|
+
- { code: route.indexer.main-run-validation, kind: route-reason, summary: Validate one exact partition or author Result before accepting it. }
|
|
81
|
+
- { code: route.indexer.main-run-ledger-preparation, kind: route-reason, summary: Recover the current content-addressed main run ledger and exact accepted cache hits. }
|
|
82
|
+
- { code: route.indexer.main-run-start, kind: route-reason, summary: Persist one exact pending main run before issuing its request. }
|
|
83
|
+
- { code: route.indexer.partition-convergence, kind: route-reason, summary: Accept a semantic partition or durably advance to the next authorized strategy without a user Gate. }
|
|
84
|
+
- { code: route.indexer.catalog-fallback, kind: route-reason, summary: Mechanically accept one deterministic catalog parent after semantic strategies are exhausted. }
|
|
85
|
+
- { code: route.indexer.main-run-acceptance, kind: route-reason, summary: "Atomically accept one fully validated main Result, receipts, and ledger transition." }
|
|
86
|
+
- { code: route.indexer.main-run-failure, kind: route-reason, summary: Persist one exact main run failure and its dependency digests. }
|
|
87
|
+
- { code: route.indexer.subject-catalog, kind: route-reason, summary: Merge approved Nodes and all validated primary partition group SubjectKeys. }
|
|
88
|
+
- { code: route.indexer.target-resolution, kind: route-reason, summary: Resolve enrich-or-independent groups by exact SubjectKey before authoring. }
|
|
89
|
+
- { code: route.indexer.projected-artifact-fan-out, kind: route-reason, summary: Recompute projected Artifact ownership and Bundle eligibility before Candidate materialization. }
|
|
90
|
+
- { code: route.indexer.subject-key-validation, kind: route-reason, summary: Recompute SubjectKey schema authority and approved-Node identity compatibility. }
|
|
91
|
+
- { code: route.indexer.subject-reidentification, kind: route-reason, summary: Require a non-delegable confirmation for one exact collision-free breaking SubjectKey mapping. }
|
|
92
|
+
- { code: route.indexer.author-worksets, kind: route-reason, summary: Build one immutable author workset for each validated partition group. }
|
|
93
|
+
- { code: route.indexer.effective-composers, kind: route-reason, summary: "Resolve the exact selected, declared, and profile-applicable composer set." }
|
|
94
|
+
- { code: route.indexer.post-author-worksets, kind: route-reason, summary: Materialize bounded composer worksets or publish an explicit not-required state. }
|
|
95
|
+
- { code: route.indexer.post-author-run-start, kind: route-reason, summary: Issue the exact request for the next pending or stale post-author composer. }
|
|
96
|
+
- { code: route.indexer.post-author-agent-step, kind: route-reason, summary: Run one selected post-author composer against the bounded PrimaryResultView. }
|
|
97
|
+
- { code: route.indexer.post-author-run-acceptance, kind: route-reason, summary: Validate and accept one exact post-author fragment Result. }
|
|
98
|
+
- { code: route.indexer.post-author-run-failure, kind: route-reason, summary: Record one exact post-author failure without publishing a partial envelope. }
|
|
99
|
+
- { code: route.indexer.post-author-observation, kind: route-reason, summary: Join current composer worksets with their ledger and publish independent completion Facts. }
|
|
100
|
+
- { code: route.indexer.post-author-composition, kind: route-reason, summary: Compose the current result envelope after every selected composer is accepted. }
|
|
101
|
+
- { code: route.indexer.result-reconciliation, kind: route-reason, summary: Recompute per-domain completion and emit exact capability or material gaps before reporting success. }
|
|
102
|
+
- { code: route.indexer.material-question-workset, kind: route-reason, summary: Build immutable question-target pairs and derive exact answer eligibility from current registry authority. }
|
|
103
|
+
- { code: route.indexer.material-answer-run-preparation, kind: route-reason, summary: Recover content-addressed material-answer runs and accepted empty or non-empty Results. }
|
|
104
|
+
- { code: route.indexer.material-answer-observation, kind: route-reason, summary: "Publish material-answer counts, next refs, candidates, and unresolved question keys." }
|
|
105
|
+
- { code: route.indexer.material-answer-run-start, kind: route-reason, summary: Persist one exact pending or stale material-answer run before dispatch. }
|
|
106
|
+
- { code: route.indexer.material-answer-agent-step, kind: route-reason, summary: Run one semantic-operation-gated material-answer request without rerunning main extraction. }
|
|
107
|
+
- { code: route.indexer.material-answer-run-acceptance, kind: route-reason, summary: Validate current source-span read receipts and atomically accept one material-answer Result. }
|
|
108
|
+
- { code: route.indexer.material-answer-run-failure, kind: route-reason, summary: Persist one exact material-answer failure without accepting partial evidence. }
|
|
109
|
+
- { code: route.indexer.material-answer-review, kind: route-reason, summary: Approve or reject only one exact material-answer evidence binding; final reader content remains unapproved. }
|
|
110
|
+
- { code: route.indexer.material-gap-audit, kind: route-reason, summary: Read-only recompute the expected retained material-gap ledger and route pre-Review drift to checkpoint or post-Review closure to close. }
|
|
111
|
+
- { code: route.indexer.material-gap-checkpoint, kind: route-reason, summary: Recompute and durably checkpoint the retained material-gap ledger before any blocking outcome. }
|
|
112
|
+
- { code: route.indexer.material-answer-review-checkpoint, kind: route-reason, summary: Persist one exact answer-approved successor under retained ledger CAS. }
|
|
113
|
+
- { code: route.indexer.candidate-review-readiness, kind: route-reason, summary: Prove exact precompile and postcompile mechanical audits are current for the effective candidate revision. }
|
|
114
|
+
- { code: route.indexer.candidate-compile, kind: route-reason, summary: Compile Candidate Artifacts from the exact accepted author IndexerResult set and authorized layout. }
|
|
115
|
+
- { code: route.indexer.incremental-impact, kind: route-reason, summary: "Report exact logical-unit, Artifact, and Section impact from complete current Merkle dependency views." }
|
|
116
|
+
- { code: route.indexer.profile-revision, kind: route-reason, summary: Revise one exact candidate set against the recorded runtime profile failure without changing baseline authority. }
|
|
117
|
+
- { code: route.indexer.profile-revision-record, kind: route-reason, summary: Record one distinct result revision under the stable problem lineage and three-attempt ledger CAS. }
|
|
118
|
+
- { code: route.indexer.profile-failure-report, kind: route-reason, summary: "Persist the complete module, artifact, metric, attempt, missing-input, and capability-loss report after three failures." }
|
|
119
|
+
- { code: route.indexer.profile-override, kind: route-reason, summary: Require the user to force approve one exact current runtime profile risk through a non-delegable Gate. }
|
|
120
|
+
- { code: route.indexer.candidate-review, kind: route-reason, summary: Review the exact current candidate set only after the mechanical audit readiness proof passes. }
|
|
121
|
+
- { code: route.indexer.material-gap-evaluation, kind: route-reason, summary: Derive layout and main Review admission from the current retained ledger. }
|
|
122
|
+
- { code: route.indexer.material-answer-actualization, kind: route-reason, summary: Map answer-approved landings to current Artifact or Section identities and checkpoint the result. }
|
|
123
|
+
- { code: route.indexer.approved-knowledge-close, kind: route-reason, summary: Atomically close approved Indexer structure with exact resolved material-answer provenance. }
|