@c4a/context-cli 0.6.18 → 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 +73 -8
- package/README.zh-CN.md +47 -7
- package/cli.js +89881 -53821
- package/docs/document-optimization.md +35 -11
- package/docs/document-optimization.zh-CN.md +29 -9
- 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 +112 -7
- 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 +113 -19
- 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 +112 -9
- package/plugins/skills/{c4a-context → context}/SKILL.md +114 -20
- 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-code-index-guidance.yaml +5 -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/maintain-evidence.yaml +1 -1
- package/providers/context/actions/materialize-indexer-instructions.yaml +7 -0
- package/providers/context/actions/migrate-codeindex.yaml +5 -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/register-source-batch.yaml +1 -1
- 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/restore-repository-sources.yaml +1 -1
- 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 +72 -0
- package/providers/context/graphs/indexer.yaml +1068 -0
- package/providers/context/graphs/workspace.yaml +52 -3
- package/providers/context/manifest.json +1487 -157
- package/providers/context/provider.yaml +3 -2
- package/providers/context/resources/dialogue/code-extraction.md +12 -0
- package/providers/context/resources/dialogue/document-classification.md +1 -1
- package/providers/context/resources/dialogue/knowledge-review.md +7 -1
- package/providers/context/resources/dialogue/source-boundary.md +9 -1
- package/providers/context/resources/dialogue/workflow-mode-after-capture.md +11 -8
- package/providers/context/resources/dialogue/workflow-mode-after-creation.md +6 -4
- package/providers/context/resources/manuals/guides/lark-resources.md +7 -0
- package/providers/context/resources/manuals/guides/package-outputs.md +3 -3
- package/providers/context/resources/manuals/reference/code-extractors.md +7 -6
- package/providers/context/resources/manuals/reference/package-templates.md +18 -10
- package/providers/context/resources/manuals/reference/project-api.md +49 -24
- package/providers/context/resources/procedures/close-and-build.md +24 -9
- package/providers/context/resources/procedures/code-extraction.md +41 -13
- package/providers/context/resources/procedures/code-index-audit.md +83 -13
- package/providers/context/resources/procedures/document-capture.md +9 -0
- package/providers/context/resources/procedures/document-optimization.md +88 -21
- package/providers/context/resources/procedures/document-revision.md +11 -6
- package/providers/context/resources/procedures/knowledge-review.md +4 -1
- package/providers/context/resources/procedures/source-boundary.md +20 -8
- package/providers/context/resources/semantic/align/structure-planning.md +4 -4
- package/providers/context/resources/semantic/code-index/classification.md +8 -5
- 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 +29 -6
- 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/schemas/source-batch-input.schema.json +18 -3
- 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,151 @@
|
|
|
1
|
+
{
|
|
2
|
+
"protocol": "context.indexer.markdown-routing-fixture-set/v1",
|
|
3
|
+
"anonymized": true,
|
|
4
|
+
"cases": [
|
|
5
|
+
{
|
|
6
|
+
"id": "anonymous-mixed-reader-guide",
|
|
7
|
+
"profile": "user-and-developer-guide",
|
|
8
|
+
"source_role": "authoritative-document",
|
|
9
|
+
"density_mode": "macro",
|
|
10
|
+
"candidate_signal": "independent-reader-tasks",
|
|
11
|
+
"candidate_resolution": "accept-correction",
|
|
12
|
+
"artifacts": [
|
|
13
|
+
{
|
|
14
|
+
"artifact_id": "product-intent",
|
|
15
|
+
"artifact_kind": "content",
|
|
16
|
+
"boundary_decision": "promote-reader-artifact",
|
|
17
|
+
"sections": [
|
|
18
|
+
{
|
|
19
|
+
"section_key": "reader-outcome",
|
|
20
|
+
"owner_indexer_id": "anonymous-markdown-indexer",
|
|
21
|
+
"document_kind": "product-requirements",
|
|
22
|
+
"reader_goal": "understand-product-intent",
|
|
23
|
+
"artifact_kind": "content"
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"artifact_id": "technical-design",
|
|
29
|
+
"artifact_kind": "content",
|
|
30
|
+
"boundary_decision": "promote-reader-artifact",
|
|
31
|
+
"sections": [
|
|
32
|
+
{
|
|
33
|
+
"section_key": "runtime-boundary",
|
|
34
|
+
"owner_indexer_id": "anonymous-markdown-indexer",
|
|
35
|
+
"document_kind": "technical-guide",
|
|
36
|
+
"reader_goal": "understand-technical-design",
|
|
37
|
+
"artifact_kind": "content"
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"artifact_id": "reader-task",
|
|
43
|
+
"artifact_kind": "content",
|
|
44
|
+
"boundary_decision": "promote-reader-artifact",
|
|
45
|
+
"sections": [
|
|
46
|
+
{
|
|
47
|
+
"section_key": "complete-task",
|
|
48
|
+
"owner_indexer_id": "anonymous-markdown-indexer",
|
|
49
|
+
"document_kind": "task-guide",
|
|
50
|
+
"reader_goal": "complete-reader-task",
|
|
51
|
+
"artifact_kind": "content"
|
|
52
|
+
}
|
|
53
|
+
]
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"id": "anonymous-local-headings",
|
|
59
|
+
"profile": "technical-guide",
|
|
60
|
+
"source_role": "supporting-document",
|
|
61
|
+
"density_mode": "meso",
|
|
62
|
+
"candidate_signal": "local-heading-only",
|
|
63
|
+
"candidate_resolution": "dismiss-with-rationale",
|
|
64
|
+
"artifacts": [
|
|
65
|
+
{
|
|
66
|
+
"artifact_id": "technical-content",
|
|
67
|
+
"artifact_kind": "content",
|
|
68
|
+
"boundary_decision": "retain-section-group",
|
|
69
|
+
"sections": [
|
|
70
|
+
{
|
|
71
|
+
"section_key": "design",
|
|
72
|
+
"owner_indexer_id": "anonymous-markdown-indexer",
|
|
73
|
+
"document_kind": "technical-guide",
|
|
74
|
+
"reader_goal": "understand-technical-design",
|
|
75
|
+
"artifact_kind": "content"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"section_key": "constraints",
|
|
79
|
+
"owner_indexer_id": "anonymous-markdown-indexer",
|
|
80
|
+
"document_kind": "technical-guide",
|
|
81
|
+
"reader_goal": "understand-technical-design",
|
|
82
|
+
"artifact_kind": "content"
|
|
83
|
+
}
|
|
84
|
+
]
|
|
85
|
+
}
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"id": "anonymous-fragmented-site",
|
|
90
|
+
"profile": "documentation-site",
|
|
91
|
+
"source_role": "supporting-document",
|
|
92
|
+
"density_mode": "micro",
|
|
93
|
+
"candidate_signal": "conflicting-authority",
|
|
94
|
+
"candidate_resolution": "keep-unresolved",
|
|
95
|
+
"artifacts": [
|
|
96
|
+
{
|
|
97
|
+
"artifact_id": "reader-questions",
|
|
98
|
+
"artifact_kind": "content",
|
|
99
|
+
"boundary_decision": "promote-reader-artifact",
|
|
100
|
+
"sections": [
|
|
101
|
+
{
|
|
102
|
+
"section_key": "question-answer",
|
|
103
|
+
"owner_indexer_id": "anonymous-markdown-indexer",
|
|
104
|
+
"document_kind": "faq-support",
|
|
105
|
+
"reader_goal": "resolve-reader-question",
|
|
106
|
+
"artifact_kind": "content"
|
|
107
|
+
}
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"artifact_id": "decision-context",
|
|
112
|
+
"artifact_kind": "content",
|
|
113
|
+
"boundary_decision": "promote-reader-artifact",
|
|
114
|
+
"sections": [
|
|
115
|
+
{
|
|
116
|
+
"section_key": "decision",
|
|
117
|
+
"owner_indexer_id": "anonymous-markdown-indexer",
|
|
118
|
+
"document_kind": "decision-record",
|
|
119
|
+
"reader_goal": "understand-decision-and-tradeoffs",
|
|
120
|
+
"artifact_kind": "content"
|
|
121
|
+
}
|
|
122
|
+
]
|
|
123
|
+
}
|
|
124
|
+
]
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"id": "anonymous-short-domain-reference",
|
|
128
|
+
"profile": "domain-reference",
|
|
129
|
+
"source_role": "authoritative-document",
|
|
130
|
+
"density_mode": "single-pass",
|
|
131
|
+
"candidate_signal": "short-coherent-source",
|
|
132
|
+
"candidate_resolution": "accept-correction",
|
|
133
|
+
"artifacts": [
|
|
134
|
+
{
|
|
135
|
+
"artifact_id": "domain-content",
|
|
136
|
+
"artifact_kind": "content",
|
|
137
|
+
"boundary_decision": "retain-section-group",
|
|
138
|
+
"sections": [
|
|
139
|
+
{
|
|
140
|
+
"section_key": "definition",
|
|
141
|
+
"owner_indexer_id": "anonymous-markdown-indexer",
|
|
142
|
+
"document_kind": "domain-reference",
|
|
143
|
+
"reader_goal": "understand-domain",
|
|
144
|
+
"artifact_kind": "content"
|
|
145
|
+
}
|
|
146
|
+
]
|
|
147
|
+
}
|
|
148
|
+
]
|
|
149
|
+
}
|
|
150
|
+
]
|
|
151
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: accept-main-index-run
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer accept-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: accept-material-answer-run
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer accept-material-answer-run --input .tmp/agent-payloads/indexer-material-answer-accept.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: accept-post-author-composer-run
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer accept-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,8 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: actualize-material-answer-bindings
|
|
3
|
+
description: Map answer-approved landings to exact Artifact or Section identities and checkpoint the successor ledger.
|
|
4
|
+
runner: command
|
|
5
|
+
effect: write
|
|
6
|
+
command: context indexer actualize-material-answer-bindings --input .tmp/agent-payloads/indexer-material-answer-actualization.json --format json
|
|
7
|
+
inputSchema: schemas/indexer-material-gap-lifecycle-input.schema.json
|
|
8
|
+
outputSchema: schemas/indexer-material-gap-lifecycle-output.schema.json
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: audit-material-gap-state
|
|
3
|
+
description: Read-only recompute the expected retained material-gap ledger and route lifecycle drift.
|
|
4
|
+
runner: command
|
|
5
|
+
effect: read
|
|
6
|
+
command: context indexer audit-material-gap-state --input .tmp/agent-payloads/indexer-material-gap-audit.json --format json
|
|
7
|
+
inputSchema: schemas/indexer-material-gap-lifecycle-input.schema.json
|
|
8
|
+
outputSchema: schemas/indexer-material-gap-lifecycle-output.schema.json
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: audit-projected-artifact-fan-out
|
|
3
|
+
description: Recompute projected Artifact ownership and stop unsafe fan-out before any Candidate is materialized.
|
|
4
|
+
runner: command
|
|
5
|
+
effect: read
|
|
6
|
+
command: context indexer audit-projected-artifact-fan-out --input .tmp/agent-payloads/indexer-main-lifecycle.json --format json
|
|
7
|
+
inputSchema: schemas/indexer-main-lifecycle-input.schema.json
|
|
8
|
+
outputSchema: schemas/indexer-main-lifecycle-output.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: authorize-indexer-contract-overlay
|
|
3
|
+
runner: host
|
|
4
|
+
effect: external
|
|
5
|
+
handler: context.authorize-indexer-contract-overlay/v1
|
|
6
|
+
inputSchema: schemas/indexer-contract-overlay-authorization-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-contract-overlay-authorization-result.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: authorize-indexer-dependencies
|
|
3
|
+
runner: host
|
|
4
|
+
effect: external
|
|
5
|
+
handler: context.authorize-indexer-dependencies/v1
|
|
6
|
+
inputSchema: schemas/indexer-dependency-authorization-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-dependency-authorization-result.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: authorize-indexer-program-execution
|
|
3
|
+
runner: host
|
|
4
|
+
effect: external
|
|
5
|
+
handler: context.authorize-indexer-program-execution/v1
|
|
6
|
+
inputSchema: schemas/indexer-program-execution-authorization-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-program-execution-authorization-result.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: build-main-index-author-worksets
|
|
3
|
+
runner: command
|
|
4
|
+
effect: read
|
|
5
|
+
command: context indexer build-main-index-author-worksets --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: build-main-index-catalog-fallback
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer build-main-index-catalog-fallback --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: build-main-index-partition-worksets
|
|
3
|
+
runner: command
|
|
4
|
+
effect: read
|
|
5
|
+
command: context indexer build-main-index-partition-worksets --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: build-material-question-workset
|
|
3
|
+
runner: command
|
|
4
|
+
effect: read
|
|
5
|
+
command: context indexer build-material-question-workset --input .tmp/agent-payloads/indexer-material-question-workset.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: build-post-author-composer-worksets
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer build-post-author-composer-worksets --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: build-question-target-inventory
|
|
3
|
+
runner: command
|
|
4
|
+
effect: read
|
|
5
|
+
command: context indexer build-question-target-inventory --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: build-subject-catalog
|
|
3
|
+
runner: command
|
|
4
|
+
effect: read
|
|
5
|
+
command: context indexer build-subject-catalog --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: build-target-resolution-views
|
|
3
|
+
runner: command
|
|
4
|
+
effect: read
|
|
5
|
+
command: context indexer build-target-resolution-views --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,8 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: checkpoint-material-answer-review
|
|
3
|
+
description: Persist one exact answer-approved Review successor under retained ledger CAS.
|
|
4
|
+
runner: command
|
|
5
|
+
effect: write
|
|
6
|
+
command: context indexer checkpoint-material-answer-review --input .tmp/agent-payloads/indexer-material-answer-review-checkpoint.json --format json
|
|
7
|
+
inputSchema: schemas/indexer-material-gap-lifecycle-input.schema.json
|
|
8
|
+
outputSchema: schemas/indexer-material-gap-lifecycle-output.schema.json
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: checkpoint-material-gaps
|
|
3
|
+
description: Recompute current reconciliation and durably checkpoint retained material gaps before any blocking outcome.
|
|
4
|
+
runner: command
|
|
5
|
+
effect: write
|
|
6
|
+
command: context indexer checkpoint-material-gaps --input .tmp/agent-payloads/indexer-material-gap-checkpoint.json --format json
|
|
7
|
+
inputSchema: schemas/indexer-material-gap-lifecycle-input.schema.json
|
|
8
|
+
outputSchema: schemas/indexer-material-gap-lifecycle-output.schema.json
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: close-indexer-approved-knowledge
|
|
3
|
+
description: Atomically close an approved Indexer structure and reconcile exact resolved material-answer provenance.
|
|
4
|
+
runner: command
|
|
5
|
+
effect: write
|
|
6
|
+
command: context indexer close-indexer-approved-knowledge --input .tmp/agent-payloads/indexer-approved-knowledge-close.json --format json
|
|
7
|
+
inputSchema: schemas/indexer-material-gap-lifecycle-input.schema.json
|
|
8
|
+
outputSchema: schemas/indexer-material-gap-lifecycle-output.schema.json
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: compile-indexer-candidates
|
|
3
|
+
description: Compile Candidate Artifacts only from the exact current accepted author IndexerResult set and authorized layout transition.
|
|
4
|
+
runner: command
|
|
5
|
+
effect: write
|
|
6
|
+
command: context indexer compile-indexer-candidates --input .tmp/agent-payloads/indexer-candidate-compile.json --format json
|
|
7
|
+
inputSchema: schemas/indexer-candidate-compile-input.schema.json
|
|
8
|
+
outputSchema: schemas/indexer-candidate-compile-output.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: compose-indexer-post-author-fragments
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer compose-indexer-post-author-fragments --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: confirm-index-requirement-workset
|
|
3
|
+
description: Confirm one exact requirement workset with the authority required by its recomputed comparator.
|
|
4
|
+
runner: host
|
|
5
|
+
effect: external
|
|
6
|
+
handler: context.confirm-index-requirement-workset/v1
|
|
7
|
+
inputSchema: schemas/indexer-requirement-confirmation-input.schema.json
|
|
8
|
+
outputSchema: schemas/indexer-requirement-confirmation-output.schema.json
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: confirm-subject-reidentification
|
|
3
|
+
description: Confirm one activation-safe, complete, collision-free old-to-new SubjectKey mapping.
|
|
4
|
+
runner: host
|
|
5
|
+
effect: external
|
|
6
|
+
handler: context.confirm-subject-reidentification/v1
|
|
7
|
+
inputSchema: schemas/indexer-subject-reidentification-input.schema.json
|
|
8
|
+
outputSchema: schemas/indexer-subject-reidentification-output.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: converge-main-index-partition-run
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer converge-main-index-partition-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,8 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: evaluate-material-gaps
|
|
3
|
+
description: Derive layout and main Candidate Review admission from the current retained ledger.
|
|
4
|
+
runner: command
|
|
5
|
+
effect: read
|
|
6
|
+
command: context indexer evaluate-material-gaps --input .tmp/agent-payloads/indexer-material-gap-evaluation.json --format json
|
|
7
|
+
inputSchema: schemas/indexer-material-gap-lifecycle-input.schema.json
|
|
8
|
+
outputSchema: schemas/indexer-material-gap-lifecycle-output.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: fail-main-index-run
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer fail-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: fail-material-answer-run
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer fail-material-answer-run --input .tmp/agent-payloads/indexer-material-answer-fail.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: fail-post-author-composer-run
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer fail-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,8 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: inspect-index-candidate-review-readiness
|
|
3
|
+
description: Load exact CLI audit records and prove both mechanical audit stages are current before main Candidate Review.
|
|
4
|
+
runner: command
|
|
5
|
+
effect: read
|
|
6
|
+
command: context indexer inspect-index-candidate-review-readiness --input .tmp/agent-payloads/indexer-candidate-review-readiness.json --format json
|
|
7
|
+
inputSchema: schemas/indexer-candidate-review-readiness-input.schema.json
|
|
8
|
+
outputSchema: schemas/indexer-candidate-review-readiness-output.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: inspect-index-profile-failure
|
|
3
|
+
runner: command
|
|
4
|
+
effect: read
|
|
5
|
+
command: context indexer inspect-index-profile-failure --input .tmp/agent-payloads/indexer-profile-failure-inspection.json --format json
|
|
6
|
+
inputSchema: schemas/indexer-profile-failure-inspection-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-profile-failure-inspection-result.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: inspect-indexer-dependencies
|
|
3
|
+
runner: host
|
|
4
|
+
effect: read
|
|
5
|
+
handler: context.inspect-indexer-dependencies/v1
|
|
6
|
+
inputSchema: schemas/indexer-dependency-authorization-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-dependency-authorization-result.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: inspect-indexer-program-execution
|
|
3
|
+
runner: host
|
|
4
|
+
effect: read
|
|
5
|
+
handler: context.inspect-indexer-program-execution/v1
|
|
6
|
+
inputSchema: schemas/indexer-program-execution-authorization-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-program-execution-authorization-result.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: inspect-indexer-project-proposal
|
|
3
|
+
runner: host
|
|
4
|
+
effect: read
|
|
5
|
+
handler: context.inspect-indexer-project-proposal/v1
|
|
6
|
+
inputSchema: schemas/indexer-project-gate-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-project-action-result.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: inspect-markdown-provider-capture
|
|
3
|
+
runner: command
|
|
4
|
+
effect: read
|
|
5
|
+
command: context indexer inspect-markdown-provider-capture --input .tmp/agent-payloads/indexer-markdown-provider-capture.json --format json
|
|
6
|
+
inputSchema: schemas/indexer-markdown-provider-capture-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-markdown-provider-capture-output.schema.json
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: inspect-material-answer-review
|
|
3
|
+
description: Recompute the exact reviewable evidence-binding baseline for one material-answer candidate.
|
|
4
|
+
runner: host
|
|
5
|
+
effect: read
|
|
6
|
+
handler: context.inspect-material-answer-review/v1
|
|
7
|
+
inputSchema: schemas/indexer-material-answer-review-inspection-input.schema.json
|
|
8
|
+
outputSchema: schemas/indexer-material-answer-review-inspection-output.schema.json
|
|
@@ -2,5 +2,5 @@ schema: agent-graph.action.v1
|
|
|
2
2
|
id: maintain-evidence
|
|
3
3
|
runner: command
|
|
4
4
|
effect: write
|
|
5
|
-
command: context review maintain --input - --format json
|
|
5
|
+
command: context review maintain --input .tmp/agent-payloads/evidence-maintenance.json --format json
|
|
6
6
|
inputSchema: schemas/evidence-maintenance-input.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: materialize-indexer-instructions
|
|
3
|
+
runner: host
|
|
4
|
+
effect: read
|
|
5
|
+
handler: context.materialize-indexer-instructions/v1
|
|
6
|
+
inputSchema: schemas/indexer-materialize-request.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-materialized-resource.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: observe-indexer-project
|
|
3
|
+
runner: host
|
|
4
|
+
effect: read
|
|
5
|
+
handler: context.observe-indexer-project/v1
|
|
6
|
+
inputSchema: schemas/indexer-project-observation-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-project-observation-result.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: observe-main-index-run-ledger
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer observe-main-index-run-ledger --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: observe-material-answer-runs
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer observe-material-answer-runs --input .tmp/agent-payloads/indexer-material-answer-observation.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: observe-post-author-composer-worksets
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer observe-post-author-composer-worksets --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: override-index-profile-audit
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer override-index-profile-audit --input .tmp/agent-payloads/indexer-profile-override-decision.json --format json
|
|
6
|
+
inputSchema: schemas/indexer-profile-override-decision.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-profile-override-result.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: prepare-indexer-customization-project
|
|
3
|
+
runner: agent
|
|
4
|
+
effect: write
|
|
5
|
+
skill: skills/prepare-indexer-customization-project/SKILL.md
|
|
6
|
+
inputSchema: schemas/indexer-customization-validation-result.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-customization-project-preparation-result.schema.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
schema: agent-graph.action.v1
|
|
2
|
+
id: prepare-main-index-run-ledger
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer prepare-main-index-run-ledger --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: prepare-material-answer-runs
|
|
3
|
+
runner: command
|
|
4
|
+
effect: write
|
|
5
|
+
command: context indexer prepare-material-answer-runs --input .tmp/agent-payloads/indexer-material-answer-runs.json --format json
|
|
6
|
+
inputSchema: schemas/indexer-material-answer-lifecycle-input.schema.json
|
|
7
|
+
outputSchema: schemas/indexer-material-answer-lifecycle-output.schema.json
|