@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,1068 @@
|
|
|
1
|
+
schema: agent-graph.graph.v1
|
|
2
|
+
id: indexer
|
|
3
|
+
description: Static Agent route for one digest-bound Indexer workset.
|
|
4
|
+
entrypoints:
|
|
5
|
+
agent-step: run-indexer-agent-step
|
|
6
|
+
provider-selection: configure-indexer-providers
|
|
7
|
+
markdown-provider: inspect-markdown-provider-capture
|
|
8
|
+
requirement-confirmation: route-index-requirement-confirmation
|
|
9
|
+
contract-overlay-authorization: authorize-indexer-contract-overlay
|
|
10
|
+
contract-overlay-validation: validate-indexer-contract-overlays
|
|
11
|
+
subject-key-validation: validate-subject-key-schemas
|
|
12
|
+
dependency-authorization: authorize-indexer-dependencies
|
|
13
|
+
program-execution-authorization: authorize-indexer-program-execution
|
|
14
|
+
overlay-question-proposal: propose-overlay-question-amendment
|
|
15
|
+
overlay-question-rebind: rebind-indexer-selection-to-requirement
|
|
16
|
+
project-confirmation: confirm-indexer-project
|
|
17
|
+
main-index: build-question-target-inventory
|
|
18
|
+
main-run-validation: validate-main-index-author-result
|
|
19
|
+
post-author-composer-step: run-indexer-post-author-composer
|
|
20
|
+
material-answer: build-material-question-workset
|
|
21
|
+
material-answer-step: run-material-answer-indexers
|
|
22
|
+
material-answer-review: review-material-answer-candidates
|
|
23
|
+
material-gap-audit: audit-material-gap-state
|
|
24
|
+
material-gap-evaluation: evaluate-material-gaps
|
|
25
|
+
material-answer-actualization: actualize-material-answer-bindings
|
|
26
|
+
approved-knowledge-close: close-indexer-approved-knowledge
|
|
27
|
+
candidate-review: inspect-index-candidate-review-readiness
|
|
28
|
+
candidate-compile: compile-indexer-candidates
|
|
29
|
+
incremental-impact: report-indexer-incremental-impact
|
|
30
|
+
nodes:
|
|
31
|
+
- id: configure-indexer-providers
|
|
32
|
+
kind: action
|
|
33
|
+
reasonCode: route.indexer.provider-configuration
|
|
34
|
+
action: actions/configure-indexer-providers.yaml
|
|
35
|
+
- id: inspect-markdown-provider-capture
|
|
36
|
+
kind: action
|
|
37
|
+
reasonCode: route.indexer.markdown-capture-validation
|
|
38
|
+
action: actions/inspect-markdown-provider-capture.yaml
|
|
39
|
+
- id: discover-markdown-indexer-providers
|
|
40
|
+
kind: action
|
|
41
|
+
reasonCode: route.indexer.markdown-provider-discovery
|
|
42
|
+
action: actions/discover-markdown-indexer-providers.yaml
|
|
43
|
+
- id: route-markdown-indexer-provider-selection
|
|
44
|
+
kind: action
|
|
45
|
+
reasonCode: route.indexer.provider-selection
|
|
46
|
+
action: actions/route-indexer-provider-selection.yaml
|
|
47
|
+
- id: configure-markdown-community-indexer-fallback
|
|
48
|
+
kind: action
|
|
49
|
+
reasonCode: route.indexer.community-fallback
|
|
50
|
+
action: actions/configure-community-indexer-fallback.yaml
|
|
51
|
+
- id: route-markdown-community-indexer-fallback
|
|
52
|
+
kind: action
|
|
53
|
+
reasonCode: route.indexer.provider-selection
|
|
54
|
+
action: actions/route-indexer-provider-selection.yaml
|
|
55
|
+
- id: validate-markdown-indexer-selection-proposal
|
|
56
|
+
kind: action
|
|
57
|
+
join: any
|
|
58
|
+
reasonCode: route.indexer.selection-validation
|
|
59
|
+
action: actions/validate-indexer-selection-proposal.yaml
|
|
60
|
+
- id: validate-markdown-provider-selection
|
|
61
|
+
kind: action
|
|
62
|
+
reasonCode: route.indexer.markdown-provider-validation
|
|
63
|
+
action: actions/validate-markdown-provider-selection.yaml
|
|
64
|
+
- id: markdown-document-capture-not-current
|
|
65
|
+
kind: terminal
|
|
66
|
+
terminalOutcome: blocked
|
|
67
|
+
- id: markdown-provider-selection-current
|
|
68
|
+
kind: terminal
|
|
69
|
+
terminalOutcome: completed
|
|
70
|
+
- id: markdown-provider-host-resolution-required
|
|
71
|
+
kind: terminal
|
|
72
|
+
terminalOutcome: blocked
|
|
73
|
+
- id: markdown-provider-selection-invalid
|
|
74
|
+
kind: terminal
|
|
75
|
+
terminalOutcome: failed
|
|
76
|
+
- id: route-index-requirement-confirmation
|
|
77
|
+
kind: action
|
|
78
|
+
reasonCode: route.indexer.requirement-confirmation-routing
|
|
79
|
+
action: actions/route-index-requirement-confirmation.yaml
|
|
80
|
+
- id: confirm-index-requirements
|
|
81
|
+
kind: gate
|
|
82
|
+
reasonCode: route.indexer.requirement-confirmation
|
|
83
|
+
inspectionAction: actions/route-index-requirement-confirmation.yaml
|
|
84
|
+
resolutionAction: actions/confirm-index-requirement-workset.yaml
|
|
85
|
+
gate:
|
|
86
|
+
id: confirm-index-requirements
|
|
87
|
+
prompt: Confirm the exact current Indexer requirement workset.
|
|
88
|
+
authority: context.indexer-requirement-confirmation
|
|
89
|
+
delegatable: true
|
|
90
|
+
satisfiedBy:
|
|
91
|
+
- path: indexer_requirements.confirmed
|
|
92
|
+
equals: true
|
|
93
|
+
- id: confirm-index-requirement-contraction
|
|
94
|
+
kind: gate
|
|
95
|
+
reasonCode: route.indexer.requirement-contraction
|
|
96
|
+
inspectionAction: actions/route-index-requirement-confirmation.yaml
|
|
97
|
+
resolutionAction: actions/confirm-index-requirement-workset.yaml
|
|
98
|
+
gate:
|
|
99
|
+
id: confirm-index-requirement-contraction
|
|
100
|
+
prompt: Confirm the exact requirement contraction or incomparable obligation replacement.
|
|
101
|
+
authority: context.indexer-requirement-contraction
|
|
102
|
+
delegatable: false
|
|
103
|
+
satisfiedBy:
|
|
104
|
+
- path: indexer_requirements.confirmed
|
|
105
|
+
equals: true
|
|
106
|
+
- id: indexer-requirements-confirmed
|
|
107
|
+
kind: terminal
|
|
108
|
+
join: any
|
|
109
|
+
terminalOutcome: completed
|
|
110
|
+
- id: route-indexer-provider-selection
|
|
111
|
+
kind: action
|
|
112
|
+
reasonCode: route.indexer.provider-selection
|
|
113
|
+
action: actions/route-indexer-provider-selection.yaml
|
|
114
|
+
- id: configure-community-indexer-fallback
|
|
115
|
+
kind: action
|
|
116
|
+
reasonCode: route.indexer.community-fallback
|
|
117
|
+
action: actions/configure-community-indexer-fallback.yaml
|
|
118
|
+
- id: route-community-indexer-fallback
|
|
119
|
+
kind: action
|
|
120
|
+
reasonCode: route.indexer.provider-selection
|
|
121
|
+
action: actions/route-indexer-provider-selection.yaml
|
|
122
|
+
- id: validate-indexer-selection-proposal
|
|
123
|
+
kind: action
|
|
124
|
+
join: any
|
|
125
|
+
reasonCode: route.indexer.selection-validation
|
|
126
|
+
action: actions/validate-indexer-selection-proposal.yaml
|
|
127
|
+
- id: indexer-provider-conflict
|
|
128
|
+
kind: terminal
|
|
129
|
+
join: any
|
|
130
|
+
terminalOutcome: waiting-user
|
|
131
|
+
- id: indexer-capability-gap
|
|
132
|
+
kind: terminal
|
|
133
|
+
join: any
|
|
134
|
+
terminalOutcome: blocked
|
|
135
|
+
- id: indexer-customization-required
|
|
136
|
+
kind: terminal
|
|
137
|
+
join: any
|
|
138
|
+
terminalOutcome: blocked
|
|
139
|
+
- id: propose-indexer-customization
|
|
140
|
+
kind: action
|
|
141
|
+
join: any
|
|
142
|
+
reasonCode: route.indexer.customization-proposal
|
|
143
|
+
action: actions/propose-indexer-customization.yaml
|
|
144
|
+
- id: validate-indexer-customization
|
|
145
|
+
kind: action
|
|
146
|
+
reasonCode: route.indexer.customization-validation
|
|
147
|
+
action: actions/validate-indexer-customization.yaml
|
|
148
|
+
- id: prepare-indexer-customization-project
|
|
149
|
+
kind: action
|
|
150
|
+
reasonCode: route.indexer.customization-project-preparation
|
|
151
|
+
action: actions/prepare-indexer-customization-project.yaml
|
|
152
|
+
- id: indexer-customization-validation-required
|
|
153
|
+
kind: terminal
|
|
154
|
+
terminalOutcome: partial
|
|
155
|
+
- id: indexer-selection-invalid
|
|
156
|
+
kind: terminal
|
|
157
|
+
terminalOutcome: failed
|
|
158
|
+
- id: run-indexer-agent-step
|
|
159
|
+
kind: action
|
|
160
|
+
reasonCode: route.indexer.agent-step
|
|
161
|
+
action: actions/run-indexer-agent-step.yaml
|
|
162
|
+
resources:
|
|
163
|
+
required:
|
|
164
|
+
- resources/views/resolved-indexer-instructions.yaml
|
|
165
|
+
- id: propose-overlay-question-amendment
|
|
166
|
+
kind: action
|
|
167
|
+
reasonCode: route.indexer.overlay-question-proposal
|
|
168
|
+
action: actions/propose-overlay-question-amendment.yaml
|
|
169
|
+
- id: rebind-indexer-selection-to-requirement
|
|
170
|
+
kind: action
|
|
171
|
+
reasonCode: route.indexer.overlay-question-rebind
|
|
172
|
+
action: actions/rebind-indexer-selection-to-requirement.yaml
|
|
173
|
+
- id: done
|
|
174
|
+
kind: terminal
|
|
175
|
+
join: any
|
|
176
|
+
terminalOutcome: completed
|
|
177
|
+
- id: validate-indexer-contract-overlays
|
|
178
|
+
kind: action
|
|
179
|
+
reasonCode: route.indexer.contract-overlay-validation
|
|
180
|
+
action: actions/validate-indexer-contract-overlays.yaml
|
|
181
|
+
- id: contract-overlay-trusted
|
|
182
|
+
kind: terminal
|
|
183
|
+
terminalOutcome: completed
|
|
184
|
+
- id: validate-subject-key-schemas
|
|
185
|
+
kind: action
|
|
186
|
+
reasonCode: route.indexer.subject-key-validation
|
|
187
|
+
action: actions/validate-subject-key-schemas.yaml
|
|
188
|
+
- id: subject-key-schema-current
|
|
189
|
+
kind: terminal
|
|
190
|
+
terminalOutcome: completed
|
|
191
|
+
- id: subject-reidentification-invalid
|
|
192
|
+
kind: terminal
|
|
193
|
+
terminalOutcome: failed
|
|
194
|
+
- id: confirm-subject-reidentification
|
|
195
|
+
kind: gate
|
|
196
|
+
reasonCode: route.indexer.subject-reidentification
|
|
197
|
+
inspectionAction: actions/validate-subject-key-schemas.yaml
|
|
198
|
+
resolutionAction: actions/confirm-subject-reidentification.yaml
|
|
199
|
+
gate:
|
|
200
|
+
id: confirm-subject-reidentification
|
|
201
|
+
prompt: Confirm the exact collision-free old-to-new Node identity mapping for this breaking SubjectKey schema change.
|
|
202
|
+
authority: context.indexer-subject-reidentification
|
|
203
|
+
delegatable: false
|
|
204
|
+
satisfiedBy:
|
|
205
|
+
- path: indexer_subject_reidentification.authorized
|
|
206
|
+
equals: true
|
|
207
|
+
- id: subject-reidentification-confirmed
|
|
208
|
+
kind: terminal
|
|
209
|
+
terminalOutcome: completed
|
|
210
|
+
- id: contract-overlay-authorization-required
|
|
211
|
+
kind: terminal
|
|
212
|
+
terminalOutcome: waiting-user
|
|
213
|
+
- id: authorize-indexer-contract-overlay
|
|
214
|
+
kind: gate
|
|
215
|
+
reasonCode: route.indexer.contract-overlay-authorization
|
|
216
|
+
inspectionAction: actions/validate-indexer-contract-overlays.yaml
|
|
217
|
+
resolutionAction: actions/authorize-indexer-contract-overlay.yaml
|
|
218
|
+
gate:
|
|
219
|
+
id: authorize-indexer-contract-overlay
|
|
220
|
+
prompt: Authorize the exact current-project data-only contract overlay after conformance validation.
|
|
221
|
+
authority: context.indexer-contract-overlay
|
|
222
|
+
delegatable: false
|
|
223
|
+
satisfiedBy:
|
|
224
|
+
- path: indexer_contract_overlay.trust_state
|
|
225
|
+
equals: project-authorized-exact-digest
|
|
226
|
+
- id: contract-overlay-authorization-done
|
|
227
|
+
kind: terminal
|
|
228
|
+
terminalOutcome: completed
|
|
229
|
+
- id: authorize-indexer-dependencies
|
|
230
|
+
kind: gate
|
|
231
|
+
reasonCode: route.indexer.dependency-authorization
|
|
232
|
+
inspectionAction: actions/inspect-indexer-dependencies.yaml
|
|
233
|
+
resolutionAction: actions/authorize-indexer-dependencies.yaml
|
|
234
|
+
gate:
|
|
235
|
+
id: authorize-indexer-dependencies
|
|
236
|
+
prompt: Authorize the exact dependency identities and locked artifacts with install scripts disabled.
|
|
237
|
+
authority: context.indexer-dependency-install
|
|
238
|
+
delegatable: true
|
|
239
|
+
satisfiedBy:
|
|
240
|
+
- path: indexer_dependencies.authorized
|
|
241
|
+
equals: true
|
|
242
|
+
- id: dependency-authorization-done
|
|
243
|
+
kind: terminal
|
|
244
|
+
terminalOutcome: completed
|
|
245
|
+
- id: authorize-indexer-program-execution
|
|
246
|
+
kind: gate
|
|
247
|
+
reasonCode: route.indexer.program-execution-authorization
|
|
248
|
+
inspectionAction: actions/inspect-indexer-program-execution.yaml
|
|
249
|
+
resolutionAction: actions/authorize-indexer-program-execution.yaml
|
|
250
|
+
gate:
|
|
251
|
+
id: authorize-indexer-program-execution
|
|
252
|
+
prompt: Authorize the exact non-allowlisted Provider program for trusted non-sandboxed execution.
|
|
253
|
+
authority: context.indexer-program-execution
|
|
254
|
+
delegatable: true
|
|
255
|
+
satisfiedBy:
|
|
256
|
+
- path: indexer_program_execution.authorized
|
|
257
|
+
equals: true
|
|
258
|
+
- id: program-execution-authorization-done
|
|
259
|
+
kind: terminal
|
|
260
|
+
terminalOutcome: completed
|
|
261
|
+
- id: confirm-indexer-project
|
|
262
|
+
kind: gate
|
|
263
|
+
reasonCode: route.indexer.project-confirmation
|
|
264
|
+
inspectionAction: actions/inspect-indexer-project-proposal.yaml
|
|
265
|
+
resolutionAction: actions/apply-indexer-project.yaml
|
|
266
|
+
gate:
|
|
267
|
+
id: confirm-indexer-project
|
|
268
|
+
prompt: Confirm the exact Indexer registry/customization proposal and dependency intents.
|
|
269
|
+
authority: context.indexer-project-confirmation
|
|
270
|
+
delegatable: true
|
|
271
|
+
satisfiedBy:
|
|
272
|
+
- path: indexer_project.confirmed
|
|
273
|
+
equals: true
|
|
274
|
+
- id: project-done
|
|
275
|
+
kind: terminal
|
|
276
|
+
terminalOutcome: completed
|
|
277
|
+
- id: observe-indexer-project
|
|
278
|
+
kind: action
|
|
279
|
+
reasonCode: route.indexer.project-observation
|
|
280
|
+
action: actions/observe-indexer-project.yaml
|
|
281
|
+
- id: build-question-target-inventory
|
|
282
|
+
kind: action
|
|
283
|
+
reasonCode: route.indexer.question-target-inventory
|
|
284
|
+
action: actions/build-question-target-inventory.yaml
|
|
285
|
+
- id: build-main-index-partition-worksets
|
|
286
|
+
kind: action
|
|
287
|
+
reasonCode: route.indexer.partition-worksets
|
|
288
|
+
action: actions/build-main-index-partition-worksets.yaml
|
|
289
|
+
- id: prepare-main-index-partition-runs
|
|
290
|
+
kind: action
|
|
291
|
+
reasonCode: route.indexer.main-run-ledger-preparation
|
|
292
|
+
action: actions/prepare-main-index-run-ledger.yaml
|
|
293
|
+
- id: observe-main-index-partition-worksets
|
|
294
|
+
kind: action
|
|
295
|
+
reasonCode: route.indexer.main-workset-observation
|
|
296
|
+
action: actions/observe-main-index-run-ledger.yaml
|
|
297
|
+
- id: start-main-index-partition-run
|
|
298
|
+
kind: action
|
|
299
|
+
reasonCode: route.indexer.main-run-start
|
|
300
|
+
action: actions/start-main-index-run.yaml
|
|
301
|
+
- id: run-main-index-partition-workset
|
|
302
|
+
kind: action
|
|
303
|
+
reasonCode: route.indexer.agent-step
|
|
304
|
+
action: actions/run-indexer-agent-step.yaml
|
|
305
|
+
resources:
|
|
306
|
+
required:
|
|
307
|
+
- resources/views/resolved-indexer-instructions.yaml
|
|
308
|
+
- id: converge-main-index-partition-run
|
|
309
|
+
kind: action
|
|
310
|
+
reasonCode: route.indexer.partition-convergence
|
|
311
|
+
action: actions/converge-main-index-partition-run.yaml
|
|
312
|
+
- id: start-main-index-catalog-fallback
|
|
313
|
+
kind: action
|
|
314
|
+
reasonCode: route.indexer.main-run-start
|
|
315
|
+
action: actions/start-main-index-run.yaml
|
|
316
|
+
- id: build-main-index-catalog-fallback
|
|
317
|
+
kind: action
|
|
318
|
+
reasonCode: route.indexer.catalog-fallback
|
|
319
|
+
action: actions/build-main-index-catalog-fallback.yaml
|
|
320
|
+
- id: fail-main-index-partition-run
|
|
321
|
+
kind: action
|
|
322
|
+
reasonCode: route.indexer.main-run-failure
|
|
323
|
+
action: actions/fail-main-index-run.yaml
|
|
324
|
+
- id: build-subject-catalog
|
|
325
|
+
kind: action
|
|
326
|
+
reasonCode: route.indexer.subject-catalog
|
|
327
|
+
action: actions/build-subject-catalog.yaml
|
|
328
|
+
- id: build-target-resolution-views
|
|
329
|
+
kind: action
|
|
330
|
+
reasonCode: route.indexer.target-resolution
|
|
331
|
+
action: actions/build-target-resolution-views.yaml
|
|
332
|
+
- id: audit-projected-artifact-fan-out
|
|
333
|
+
kind: action
|
|
334
|
+
reasonCode: route.indexer.projected-artifact-fan-out
|
|
335
|
+
action: actions/audit-projected-artifact-fan-out.yaml
|
|
336
|
+
- id: build-main-index-author-worksets
|
|
337
|
+
kind: action
|
|
338
|
+
reasonCode: route.indexer.author-worksets
|
|
339
|
+
action: actions/build-main-index-author-worksets.yaml
|
|
340
|
+
- id: validate-main-index-author-result
|
|
341
|
+
kind: action
|
|
342
|
+
reasonCode: route.indexer.main-run-validation
|
|
343
|
+
action: actions/validate-main-index-run.yaml
|
|
344
|
+
- id: index-target-resolution-ambiguous
|
|
345
|
+
kind: terminal
|
|
346
|
+
join: any
|
|
347
|
+
terminalOutcome: blocked
|
|
348
|
+
- id: index-target-resolution-invalid
|
|
349
|
+
kind: terminal
|
|
350
|
+
join: any
|
|
351
|
+
terminalOutcome: failed
|
|
352
|
+
- id: main-index-plan-revision-required
|
|
353
|
+
kind: terminal
|
|
354
|
+
terminalOutcome: partial
|
|
355
|
+
- id: prepare-main-index-author-runs
|
|
356
|
+
kind: action
|
|
357
|
+
reasonCode: route.indexer.main-run-ledger-preparation
|
|
358
|
+
action: actions/prepare-main-index-run-ledger.yaml
|
|
359
|
+
- id: observe-main-index-author-worksets
|
|
360
|
+
kind: action
|
|
361
|
+
reasonCode: route.indexer.main-workset-observation
|
|
362
|
+
action: actions/observe-main-index-run-ledger.yaml
|
|
363
|
+
- id: start-main-index-author-run
|
|
364
|
+
kind: action
|
|
365
|
+
reasonCode: route.indexer.main-run-start
|
|
366
|
+
action: actions/start-main-index-run.yaml
|
|
367
|
+
- id: run-main-index-author-workset
|
|
368
|
+
kind: action
|
|
369
|
+
reasonCode: route.indexer.agent-step
|
|
370
|
+
action: actions/run-indexer-agent-step.yaml
|
|
371
|
+
resources:
|
|
372
|
+
required:
|
|
373
|
+
- resources/views/resolved-indexer-instructions.yaml
|
|
374
|
+
- id: accept-main-index-author-run
|
|
375
|
+
kind: action
|
|
376
|
+
reasonCode: route.indexer.main-run-acceptance
|
|
377
|
+
action: actions/accept-main-index-run.yaml
|
|
378
|
+
- id: fail-main-index-author-run
|
|
379
|
+
kind: action
|
|
380
|
+
reasonCode: route.indexer.main-run-failure
|
|
381
|
+
action: actions/fail-main-index-run.yaml
|
|
382
|
+
- id: main-index-blocked
|
|
383
|
+
kind: terminal
|
|
384
|
+
join: any
|
|
385
|
+
terminalOutcome: blocked
|
|
386
|
+
- id: resolve-effective-composers
|
|
387
|
+
kind: action
|
|
388
|
+
reasonCode: route.indexer.effective-composers
|
|
389
|
+
action: actions/resolve-effective-composers.yaml
|
|
390
|
+
- id: build-post-author-composer-worksets
|
|
391
|
+
kind: action
|
|
392
|
+
reasonCode: route.indexer.post-author-worksets
|
|
393
|
+
action: actions/build-post-author-composer-worksets.yaml
|
|
394
|
+
- id: start-post-author-composer-run
|
|
395
|
+
kind: action
|
|
396
|
+
reasonCode: route.indexer.post-author-run-start
|
|
397
|
+
action: actions/start-post-author-composer-run.yaml
|
|
398
|
+
- id: run-indexer-post-author-composer
|
|
399
|
+
kind: action
|
|
400
|
+
reasonCode: route.indexer.post-author-agent-step
|
|
401
|
+
action: actions/run-indexer-post-author-composer.yaml
|
|
402
|
+
- id: accept-post-author-composer-run
|
|
403
|
+
kind: action
|
|
404
|
+
reasonCode: route.indexer.post-author-run-acceptance
|
|
405
|
+
action: actions/accept-post-author-composer-run.yaml
|
|
406
|
+
- id: fail-post-author-composer-run
|
|
407
|
+
kind: action
|
|
408
|
+
reasonCode: route.indexer.post-author-run-failure
|
|
409
|
+
action: actions/fail-post-author-composer-run.yaml
|
|
410
|
+
- id: observe-post-author-composer-worksets
|
|
411
|
+
kind: action
|
|
412
|
+
reasonCode: route.indexer.post-author-observation
|
|
413
|
+
action: actions/observe-post-author-composer-worksets.yaml
|
|
414
|
+
- id: compose-indexer-post-author-fragments
|
|
415
|
+
kind: action
|
|
416
|
+
reasonCode: route.indexer.post-author-composition
|
|
417
|
+
action: actions/compose-indexer-post-author-fragments.yaml
|
|
418
|
+
- id: reconcile-indexer-results
|
|
419
|
+
kind: action
|
|
420
|
+
join: any
|
|
421
|
+
reasonCode: route.indexer.result-reconciliation
|
|
422
|
+
action: actions/reconcile-indexer-results.yaml
|
|
423
|
+
- id: checkpoint-material-gaps
|
|
424
|
+
kind: action
|
|
425
|
+
join: any
|
|
426
|
+
reasonCode: route.indexer.material-gap-checkpoint
|
|
427
|
+
action: actions/checkpoint-material-gaps.yaml
|
|
428
|
+
- id: audit-material-gap-state
|
|
429
|
+
kind: action
|
|
430
|
+
join: any
|
|
431
|
+
reasonCode: route.indexer.material-gap-audit
|
|
432
|
+
action: actions/audit-material-gap-state.yaml
|
|
433
|
+
- id: material-gap-audit-current
|
|
434
|
+
kind: terminal
|
|
435
|
+
join: any
|
|
436
|
+
terminalOutcome: completed
|
|
437
|
+
- id: indexer-reconciliation-ready
|
|
438
|
+
kind: terminal
|
|
439
|
+
join: any
|
|
440
|
+
terminalOutcome: completed
|
|
441
|
+
- id: index-material-required
|
|
442
|
+
kind: terminal
|
|
443
|
+
join: any
|
|
444
|
+
terminalOutcome: blocked
|
|
445
|
+
- id: build-material-question-workset
|
|
446
|
+
kind: action
|
|
447
|
+
reasonCode: route.indexer.material-question-workset
|
|
448
|
+
action: actions/build-material-question-workset.yaml
|
|
449
|
+
- id: evaluate-material-gaps
|
|
450
|
+
kind: action
|
|
451
|
+
join: any
|
|
452
|
+
reasonCode: route.indexer.material-gap-evaluation
|
|
453
|
+
action: actions/evaluate-material-gaps.yaml
|
|
454
|
+
- id: indexer-layout-ready
|
|
455
|
+
kind: terminal
|
|
456
|
+
join: any
|
|
457
|
+
terminalOutcome: completed
|
|
458
|
+
- id: actualize-material-answer-bindings
|
|
459
|
+
kind: action
|
|
460
|
+
reasonCode: route.indexer.material-answer-actualization
|
|
461
|
+
action: actions/actualize-material-answer-bindings.yaml
|
|
462
|
+
- id: close-indexer-approved-knowledge
|
|
463
|
+
kind: action
|
|
464
|
+
reasonCode: route.indexer.approved-knowledge-close
|
|
465
|
+
action: actions/close-indexer-approved-knowledge.yaml
|
|
466
|
+
- id: indexer-approved-knowledge-closed
|
|
467
|
+
kind: terminal
|
|
468
|
+
terminalOutcome: completed
|
|
469
|
+
- id: prepare-material-answer-runs
|
|
470
|
+
kind: action
|
|
471
|
+
reasonCode: route.indexer.material-answer-run-preparation
|
|
472
|
+
action: actions/prepare-material-answer-runs.yaml
|
|
473
|
+
- id: observe-material-answer-runs
|
|
474
|
+
kind: action
|
|
475
|
+
reasonCode: route.indexer.material-answer-observation
|
|
476
|
+
action: actions/observe-material-answer-runs.yaml
|
|
477
|
+
- id: start-material-answer-run
|
|
478
|
+
kind: action
|
|
479
|
+
reasonCode: route.indexer.material-answer-run-start
|
|
480
|
+
action: actions/start-material-answer-run.yaml
|
|
481
|
+
- id: run-material-answer-indexers
|
|
482
|
+
kind: action
|
|
483
|
+
reasonCode: route.indexer.material-answer-agent-step
|
|
484
|
+
action: actions/run-material-answer-indexers.yaml
|
|
485
|
+
resources:
|
|
486
|
+
required:
|
|
487
|
+
- resources/views/resolved-indexer-instructions.yaml
|
|
488
|
+
- id: accept-material-answer-run
|
|
489
|
+
kind: action
|
|
490
|
+
reasonCode: route.indexer.material-answer-run-acceptance
|
|
491
|
+
action: actions/accept-material-answer-run.yaml
|
|
492
|
+
- id: fail-material-answer-run
|
|
493
|
+
kind: action
|
|
494
|
+
reasonCode: route.indexer.material-answer-run-failure
|
|
495
|
+
action: actions/fail-material-answer-run.yaml
|
|
496
|
+
- id: material-answer-blocked
|
|
497
|
+
kind: terminal
|
|
498
|
+
join: any
|
|
499
|
+
terminalOutcome: blocked
|
|
500
|
+
- id: material-answer-failed
|
|
501
|
+
kind: terminal
|
|
502
|
+
join: any
|
|
503
|
+
terminalOutcome: failed
|
|
504
|
+
- id: review-material-answer-candidates
|
|
505
|
+
kind: gate
|
|
506
|
+
reasonCode: route.indexer.material-answer-review
|
|
507
|
+
inspectionAction: actions/inspect-material-answer-review.yaml
|
|
508
|
+
resolutionAction: actions/review-material-answer-candidate.yaml
|
|
509
|
+
gate:
|
|
510
|
+
id: review-material-answer-candidates
|
|
511
|
+
prompt: Review only the exact question-target and source-span evidence binding for this material answer.
|
|
512
|
+
authority: context.indexer-material-answer-review
|
|
513
|
+
delegatable: true
|
|
514
|
+
satisfiedBy:
|
|
515
|
+
- path: indexer_material_answer_review.state
|
|
516
|
+
equals: approved
|
|
517
|
+
- id: checkpoint-material-answer-review
|
|
518
|
+
kind: action
|
|
519
|
+
reasonCode: route.indexer.material-answer-review-checkpoint
|
|
520
|
+
action: actions/checkpoint-material-answer-review.yaml
|
|
521
|
+
- id: post-author-blocked
|
|
522
|
+
kind: terminal
|
|
523
|
+
join: any
|
|
524
|
+
terminalOutcome: blocked
|
|
525
|
+
- id: inspect-index-candidate-review-readiness
|
|
526
|
+
kind: action
|
|
527
|
+
reasonCode: route.indexer.candidate-review-readiness
|
|
528
|
+
action: actions/inspect-index-candidate-review-readiness.yaml
|
|
529
|
+
- id: compile-indexer-candidates
|
|
530
|
+
kind: action
|
|
531
|
+
reasonCode: route.indexer.candidate-compile
|
|
532
|
+
action: actions/compile-indexer-candidates.yaml
|
|
533
|
+
- id: indexer-candidates-compiled
|
|
534
|
+
kind: terminal
|
|
535
|
+
terminalOutcome: completed
|
|
536
|
+
- id: report-indexer-incremental-impact
|
|
537
|
+
kind: action
|
|
538
|
+
reasonCode: route.indexer.incremental-impact
|
|
539
|
+
action: actions/report-indexer-incremental-impact.yaml
|
|
540
|
+
- id: indexer-incremental-impact-reported
|
|
541
|
+
kind: terminal
|
|
542
|
+
terminalOutcome: completed
|
|
543
|
+
- id: revise-index-output
|
|
544
|
+
kind: action
|
|
545
|
+
reasonCode: route.indexer.profile-revision
|
|
546
|
+
action: actions/revise-index-output.yaml
|
|
547
|
+
- id: record-index-profile-revision
|
|
548
|
+
kind: action
|
|
549
|
+
reasonCode: route.indexer.profile-revision-record
|
|
550
|
+
action: actions/record-index-profile-revision.yaml
|
|
551
|
+
- id: report-index-profile-failure
|
|
552
|
+
kind: action
|
|
553
|
+
reasonCode: route.indexer.profile-failure-report
|
|
554
|
+
action: actions/report-index-profile-failure.yaml
|
|
555
|
+
- id: override-index-profile-audit
|
|
556
|
+
kind: gate
|
|
557
|
+
reasonCode: route.indexer.profile-override
|
|
558
|
+
inspectionAction: actions/inspect-index-profile-failure.yaml
|
|
559
|
+
resolutionAction: actions/override-index-profile-audit.yaml
|
|
560
|
+
gate:
|
|
561
|
+
id: override-index-profile-audit
|
|
562
|
+
prompt: Force approve only the exact current runtime profile risk after reading the complete three-attempt report.
|
|
563
|
+
authority: context.indexer-profile-risk-override
|
|
564
|
+
delegatable: false
|
|
565
|
+
satisfiedBy:
|
|
566
|
+
- path: indexer_profile_override.completed
|
|
567
|
+
equals: true
|
|
568
|
+
- id: review-index-candidates
|
|
569
|
+
kind: gate
|
|
570
|
+
reasonCode: route.indexer.candidate-review
|
|
571
|
+
inspectionAction: actions/inspect-review.yaml
|
|
572
|
+
resolutionAction: actions/apply-forced-review.yaml
|
|
573
|
+
delegated:
|
|
574
|
+
inspection: skip
|
|
575
|
+
resolutionAction: actions/apply-managed-review.yaml
|
|
576
|
+
resources:
|
|
577
|
+
required: []
|
|
578
|
+
recommended: []
|
|
579
|
+
gate:
|
|
580
|
+
id: review-index-candidates
|
|
581
|
+
prompt: Review the exact current candidate set only after both mechanical audit stages are current.
|
|
582
|
+
authority: context.knowledge-review
|
|
583
|
+
delegatable: true
|
|
584
|
+
satisfiedBy:
|
|
585
|
+
- path: indexer_candidate_review.completed
|
|
586
|
+
equals: true
|
|
587
|
+
- id: index-baseline-audit-failed
|
|
588
|
+
kind: terminal
|
|
589
|
+
terminalOutcome: failed
|
|
590
|
+
- id: index-profile-revision-pending
|
|
591
|
+
kind: terminal
|
|
592
|
+
terminalOutcome: blocked
|
|
593
|
+
- id: index-candidate-review-complete
|
|
594
|
+
kind: terminal
|
|
595
|
+
terminalOutcome: completed
|
|
596
|
+
edges:
|
|
597
|
+
- from: inspect-markdown-provider-capture
|
|
598
|
+
to: discover-markdown-indexer-providers
|
|
599
|
+
outcomes: [completed]
|
|
600
|
+
- from: inspect-markdown-provider-capture
|
|
601
|
+
to: markdown-document-capture-not-current
|
|
602
|
+
outcomes: [blocked]
|
|
603
|
+
- from: discover-markdown-indexer-providers
|
|
604
|
+
to: route-markdown-indexer-provider-selection
|
|
605
|
+
outcomes: [completed]
|
|
606
|
+
- from: route-markdown-indexer-provider-selection
|
|
607
|
+
to: validate-markdown-indexer-selection-proposal
|
|
608
|
+
outcomes: [completed]
|
|
609
|
+
- from: route-markdown-indexer-provider-selection
|
|
610
|
+
to: configure-markdown-community-indexer-fallback
|
|
611
|
+
outcomes: [partial]
|
|
612
|
+
- from: route-markdown-indexer-provider-selection
|
|
613
|
+
to: indexer-provider-conflict
|
|
614
|
+
outcomes: [waiting-user]
|
|
615
|
+
- from: route-markdown-indexer-provider-selection
|
|
616
|
+
to: indexer-customization-required
|
|
617
|
+
outcomes: [blocked]
|
|
618
|
+
- from: configure-markdown-community-indexer-fallback
|
|
619
|
+
to: route-markdown-community-indexer-fallback
|
|
620
|
+
outcomes: [completed]
|
|
621
|
+
- from: route-markdown-community-indexer-fallback
|
|
622
|
+
to: validate-markdown-indexer-selection-proposal
|
|
623
|
+
outcomes: [completed]
|
|
624
|
+
- from: route-markdown-community-indexer-fallback
|
|
625
|
+
to: indexer-provider-conflict
|
|
626
|
+
outcomes: [waiting-user]
|
|
627
|
+
- from: route-markdown-community-indexer-fallback
|
|
628
|
+
to: propose-indexer-customization
|
|
629
|
+
outcomes: [partial, blocked]
|
|
630
|
+
- from: validate-markdown-indexer-selection-proposal
|
|
631
|
+
to: validate-markdown-provider-selection
|
|
632
|
+
outcomes: [completed]
|
|
633
|
+
- from: validate-markdown-indexer-selection-proposal
|
|
634
|
+
to: markdown-provider-selection-invalid
|
|
635
|
+
outcomes: [failed]
|
|
636
|
+
- from: validate-markdown-provider-selection
|
|
637
|
+
to: markdown-provider-selection-current
|
|
638
|
+
outcomes: [completed]
|
|
639
|
+
- from: validate-markdown-provider-selection
|
|
640
|
+
to: markdown-provider-host-resolution-required
|
|
641
|
+
outcomes: [partial]
|
|
642
|
+
- from: validate-markdown-provider-selection
|
|
643
|
+
to: indexer-customization-required
|
|
644
|
+
outcomes: [blocked]
|
|
645
|
+
- from: validate-markdown-provider-selection
|
|
646
|
+
to: markdown-provider-selection-invalid
|
|
647
|
+
outcomes: [failed]
|
|
648
|
+
- from: configure-indexer-providers
|
|
649
|
+
to: route-indexer-provider-selection
|
|
650
|
+
outcomes: [completed]
|
|
651
|
+
- from: route-index-requirement-confirmation
|
|
652
|
+
to: confirm-index-requirements
|
|
653
|
+
outcomes: [waiting-user]
|
|
654
|
+
- from: route-index-requirement-confirmation
|
|
655
|
+
to: confirm-index-requirement-contraction
|
|
656
|
+
outcomes: [blocked]
|
|
657
|
+
- from: confirm-index-requirements
|
|
658
|
+
to: indexer-requirements-confirmed
|
|
659
|
+
outcomes: [completed]
|
|
660
|
+
- from: confirm-index-requirement-contraction
|
|
661
|
+
to: indexer-requirements-confirmed
|
|
662
|
+
outcomes: [completed]
|
|
663
|
+
- from: route-indexer-provider-selection
|
|
664
|
+
to: validate-indexer-selection-proposal
|
|
665
|
+
outcomes: [completed]
|
|
666
|
+
- from: route-indexer-provider-selection
|
|
667
|
+
to: configure-community-indexer-fallback
|
|
668
|
+
outcomes: [partial]
|
|
669
|
+
- from: route-indexer-provider-selection
|
|
670
|
+
to: indexer-provider-conflict
|
|
671
|
+
outcomes: [waiting-user]
|
|
672
|
+
- from: route-indexer-provider-selection
|
|
673
|
+
to: indexer-customization-required
|
|
674
|
+
outcomes: [blocked]
|
|
675
|
+
- from: configure-community-indexer-fallback
|
|
676
|
+
to: route-community-indexer-fallback
|
|
677
|
+
outcomes: [completed]
|
|
678
|
+
- from: route-community-indexer-fallback
|
|
679
|
+
to: validate-indexer-selection-proposal
|
|
680
|
+
outcomes: [completed]
|
|
681
|
+
- from: route-community-indexer-fallback
|
|
682
|
+
to: indexer-provider-conflict
|
|
683
|
+
outcomes: [waiting-user]
|
|
684
|
+
- from: route-community-indexer-fallback
|
|
685
|
+
to: propose-indexer-customization
|
|
686
|
+
outcomes: [partial, blocked]
|
|
687
|
+
- from: propose-indexer-customization
|
|
688
|
+
to: validate-indexer-customization
|
|
689
|
+
outcomes: [completed]
|
|
690
|
+
- from: propose-indexer-customization
|
|
691
|
+
to: indexer-selection-invalid
|
|
692
|
+
outcomes: [failed]
|
|
693
|
+
- from: validate-indexer-customization
|
|
694
|
+
to: prepare-indexer-customization-project
|
|
695
|
+
outcomes: [completed]
|
|
696
|
+
- from: prepare-indexer-customization-project
|
|
697
|
+
to: confirm-indexer-project
|
|
698
|
+
outcomes: [completed]
|
|
699
|
+
- from: prepare-indexer-customization-project
|
|
700
|
+
to: authorize-indexer-dependencies
|
|
701
|
+
outcomes: [partial]
|
|
702
|
+
- from: prepare-indexer-customization-project
|
|
703
|
+
to: authorize-indexer-program-execution
|
|
704
|
+
outcomes: [waiting-user]
|
|
705
|
+
- from: prepare-indexer-customization-project
|
|
706
|
+
to: indexer-selection-invalid
|
|
707
|
+
outcomes: [failed]
|
|
708
|
+
- from: validate-indexer-customization
|
|
709
|
+
to: indexer-selection-invalid
|
|
710
|
+
outcomes: [failed]
|
|
711
|
+
- from: validate-indexer-selection-proposal
|
|
712
|
+
to: done
|
|
713
|
+
outcomes: [completed]
|
|
714
|
+
- from: validate-indexer-selection-proposal
|
|
715
|
+
to: indexer-selection-invalid
|
|
716
|
+
outcomes: [failed]
|
|
717
|
+
- from: validate-subject-key-schemas
|
|
718
|
+
to: subject-key-schema-current
|
|
719
|
+
outcomes: [completed]
|
|
720
|
+
- from: validate-subject-key-schemas
|
|
721
|
+
to: confirm-subject-reidentification
|
|
722
|
+
outcomes: [blocked]
|
|
723
|
+
- from: validate-subject-key-schemas
|
|
724
|
+
to: subject-reidentification-invalid
|
|
725
|
+
outcomes: [failed]
|
|
726
|
+
- from: confirm-subject-reidentification
|
|
727
|
+
to: subject-reidentification-confirmed
|
|
728
|
+
outcomes: [completed]
|
|
729
|
+
- from: run-indexer-agent-step
|
|
730
|
+
to: done
|
|
731
|
+
outcomes: [completed]
|
|
732
|
+
- from: propose-overlay-question-amendment
|
|
733
|
+
to: done
|
|
734
|
+
outcomes: [completed]
|
|
735
|
+
- from: rebind-indexer-selection-to-requirement
|
|
736
|
+
to: done
|
|
737
|
+
outcomes: [completed]
|
|
738
|
+
- from: validate-indexer-contract-overlays
|
|
739
|
+
to: contract-overlay-trusted
|
|
740
|
+
outcomes: [completed]
|
|
741
|
+
- from: validate-indexer-contract-overlays
|
|
742
|
+
to: contract-overlay-authorization-required
|
|
743
|
+
outcomes: [waiting-user]
|
|
744
|
+
- from: authorize-indexer-contract-overlay
|
|
745
|
+
to: contract-overlay-authorization-done
|
|
746
|
+
outcomes: [completed]
|
|
747
|
+
- from: authorize-indexer-dependencies
|
|
748
|
+
to: prepare-indexer-customization-project
|
|
749
|
+
kind: repeat
|
|
750
|
+
outcomes: [completed]
|
|
751
|
+
- from: authorize-indexer-dependencies
|
|
752
|
+
to: indexer-selection-invalid
|
|
753
|
+
outcomes: [failed]
|
|
754
|
+
- from: authorize-indexer-program-execution
|
|
755
|
+
to: prepare-indexer-customization-project
|
|
756
|
+
kind: repeat
|
|
757
|
+
outcomes: [completed]
|
|
758
|
+
- from: authorize-indexer-program-execution
|
|
759
|
+
to: indexer-selection-invalid
|
|
760
|
+
outcomes: [failed]
|
|
761
|
+
- from: confirm-indexer-project
|
|
762
|
+
to: observe-indexer-project
|
|
763
|
+
outcomes: [completed]
|
|
764
|
+
- from: confirm-indexer-project
|
|
765
|
+
to: indexer-selection-invalid
|
|
766
|
+
outcomes: [failed]
|
|
767
|
+
- from: observe-indexer-project
|
|
768
|
+
to: validate-indexer-selection-proposal
|
|
769
|
+
outcomes: [completed]
|
|
770
|
+
- from: observe-indexer-project
|
|
771
|
+
to: indexer-selection-invalid
|
|
772
|
+
outcomes: [failed]
|
|
773
|
+
- from: build-question-target-inventory
|
|
774
|
+
to: build-main-index-partition-worksets
|
|
775
|
+
outcomes: [completed]
|
|
776
|
+
- from: build-main-index-partition-worksets
|
|
777
|
+
to: prepare-main-index-partition-runs
|
|
778
|
+
outcomes: [completed]
|
|
779
|
+
- from: prepare-main-index-partition-runs
|
|
780
|
+
to: observe-main-index-partition-worksets
|
|
781
|
+
outcomes: [completed]
|
|
782
|
+
- from: observe-main-index-partition-worksets
|
|
783
|
+
to: start-main-index-partition-run
|
|
784
|
+
outcomes: [partial]
|
|
785
|
+
- from: observe-main-index-partition-worksets
|
|
786
|
+
to: build-subject-catalog
|
|
787
|
+
outcomes: [completed]
|
|
788
|
+
- from: observe-main-index-partition-worksets
|
|
789
|
+
to: main-index-blocked
|
|
790
|
+
outcomes: [failed, blocked]
|
|
791
|
+
- from: start-main-index-partition-run
|
|
792
|
+
to: run-main-index-partition-workset
|
|
793
|
+
outcomes: [completed]
|
|
794
|
+
- from: run-main-index-partition-workset
|
|
795
|
+
to: converge-main-index-partition-run
|
|
796
|
+
outcomes: [completed]
|
|
797
|
+
- from: run-main-index-partition-workset
|
|
798
|
+
to: fail-main-index-partition-run
|
|
799
|
+
outcomes: [failed]
|
|
800
|
+
- from: converge-main-index-partition-run
|
|
801
|
+
to: observe-main-index-partition-worksets
|
|
802
|
+
kind: repeat
|
|
803
|
+
outcomes: [completed, partial]
|
|
804
|
+
- from: converge-main-index-partition-run
|
|
805
|
+
to: start-main-index-catalog-fallback
|
|
806
|
+
outcomes: [blocked]
|
|
807
|
+
- from: converge-main-index-partition-run
|
|
808
|
+
to: main-index-blocked
|
|
809
|
+
outcomes: [failed]
|
|
810
|
+
- from: start-main-index-catalog-fallback
|
|
811
|
+
to: build-main-index-catalog-fallback
|
|
812
|
+
outcomes: [completed]
|
|
813
|
+
- from: build-main-index-catalog-fallback
|
|
814
|
+
to: observe-main-index-partition-worksets
|
|
815
|
+
kind: repeat
|
|
816
|
+
outcomes: [completed]
|
|
817
|
+
- from: build-main-index-catalog-fallback
|
|
818
|
+
to: main-index-blocked
|
|
819
|
+
outcomes: [failed, blocked]
|
|
820
|
+
- from: fail-main-index-partition-run
|
|
821
|
+
to: observe-main-index-partition-worksets
|
|
822
|
+
kind: repeat
|
|
823
|
+
outcomes: [completed]
|
|
824
|
+
- from: fail-main-index-partition-run
|
|
825
|
+
to: main-index-blocked
|
|
826
|
+
outcomes: [failed, blocked]
|
|
827
|
+
- from: build-subject-catalog
|
|
828
|
+
to: build-target-resolution-views
|
|
829
|
+
outcomes: [completed]
|
|
830
|
+
- from: build-target-resolution-views
|
|
831
|
+
to: audit-projected-artifact-fan-out
|
|
832
|
+
outcomes: [completed]
|
|
833
|
+
- from: build-target-resolution-views
|
|
834
|
+
to: index-target-resolution-ambiguous
|
|
835
|
+
outcomes: [blocked]
|
|
836
|
+
- from: build-target-resolution-views
|
|
837
|
+
to: main-index-blocked
|
|
838
|
+
outcomes: [failed]
|
|
839
|
+
- from: audit-projected-artifact-fan-out
|
|
840
|
+
to: build-main-index-author-worksets
|
|
841
|
+
outcomes: [completed]
|
|
842
|
+
- from: audit-projected-artifact-fan-out
|
|
843
|
+
to: main-index-plan-revision-required
|
|
844
|
+
outcomes: [partial]
|
|
845
|
+
- from: audit-projected-artifact-fan-out
|
|
846
|
+
to: main-index-blocked
|
|
847
|
+
outcomes: [failed]
|
|
848
|
+
- from: build-main-index-author-worksets
|
|
849
|
+
to: prepare-main-index-author-runs
|
|
850
|
+
outcomes: [completed]
|
|
851
|
+
- from: build-main-index-author-worksets
|
|
852
|
+
to: index-target-resolution-ambiguous
|
|
853
|
+
outcomes: [blocked]
|
|
854
|
+
- from: build-main-index-author-worksets
|
|
855
|
+
to: main-index-blocked
|
|
856
|
+
outcomes: [failed]
|
|
857
|
+
- from: prepare-main-index-author-runs
|
|
858
|
+
to: observe-main-index-author-worksets
|
|
859
|
+
outcomes: [completed]
|
|
860
|
+
- from: observe-main-index-author-worksets
|
|
861
|
+
to: start-main-index-author-run
|
|
862
|
+
outcomes: [partial]
|
|
863
|
+
- from: observe-main-index-author-worksets
|
|
864
|
+
to: resolve-effective-composers
|
|
865
|
+
outcomes: [completed]
|
|
866
|
+
- from: observe-main-index-author-worksets
|
|
867
|
+
to: main-index-blocked
|
|
868
|
+
outcomes: [failed, blocked]
|
|
869
|
+
- from: start-main-index-author-run
|
|
870
|
+
to: run-main-index-author-workset
|
|
871
|
+
outcomes: [completed]
|
|
872
|
+
- from: run-main-index-author-workset
|
|
873
|
+
to: validate-main-index-author-result
|
|
874
|
+
outcomes: [completed]
|
|
875
|
+
- from: run-main-index-author-workset
|
|
876
|
+
to: fail-main-index-author-run
|
|
877
|
+
outcomes: [failed]
|
|
878
|
+
- from: validate-main-index-author-result
|
|
879
|
+
to: accept-main-index-author-run
|
|
880
|
+
outcomes: [completed]
|
|
881
|
+
- from: validate-main-index-author-result
|
|
882
|
+
to: index-target-resolution-ambiguous
|
|
883
|
+
outcomes: [blocked]
|
|
884
|
+
- from: validate-main-index-author-result
|
|
885
|
+
to: index-target-resolution-invalid
|
|
886
|
+
outcomes: [failed]
|
|
887
|
+
- from: accept-main-index-author-run
|
|
888
|
+
to: observe-main-index-author-worksets
|
|
889
|
+
kind: repeat
|
|
890
|
+
outcomes: [completed]
|
|
891
|
+
- from: accept-main-index-author-run
|
|
892
|
+
to: main-index-blocked
|
|
893
|
+
outcomes: [failed, blocked]
|
|
894
|
+
- from: fail-main-index-author-run
|
|
895
|
+
to: observe-main-index-author-worksets
|
|
896
|
+
kind: repeat
|
|
897
|
+
outcomes: [completed]
|
|
898
|
+
- from: fail-main-index-author-run
|
|
899
|
+
to: main-index-blocked
|
|
900
|
+
outcomes: [failed, blocked]
|
|
901
|
+
- from: resolve-effective-composers
|
|
902
|
+
to: build-post-author-composer-worksets
|
|
903
|
+
outcomes: [completed]
|
|
904
|
+
- from: build-post-author-composer-worksets
|
|
905
|
+
to: reconcile-indexer-results
|
|
906
|
+
outcomes: [completed]
|
|
907
|
+
- from: build-post-author-composer-worksets
|
|
908
|
+
to: observe-post-author-composer-worksets
|
|
909
|
+
outcomes: [partial]
|
|
910
|
+
- from: build-post-author-composer-worksets
|
|
911
|
+
to: post-author-blocked
|
|
912
|
+
outcomes: [failed, blocked]
|
|
913
|
+
- from: start-post-author-composer-run
|
|
914
|
+
to: run-indexer-post-author-composer
|
|
915
|
+
outcomes: [completed]
|
|
916
|
+
- from: run-indexer-post-author-composer
|
|
917
|
+
to: accept-post-author-composer-run
|
|
918
|
+
outcomes: [completed]
|
|
919
|
+
- from: run-indexer-post-author-composer
|
|
920
|
+
to: fail-post-author-composer-run
|
|
921
|
+
outcomes: [failed]
|
|
922
|
+
- from: accept-post-author-composer-run
|
|
923
|
+
to: observe-post-author-composer-worksets
|
|
924
|
+
kind: repeat
|
|
925
|
+
outcomes: [completed]
|
|
926
|
+
- from: fail-post-author-composer-run
|
|
927
|
+
to: observe-post-author-composer-worksets
|
|
928
|
+
kind: repeat
|
|
929
|
+
outcomes: [completed]
|
|
930
|
+
- from: observe-post-author-composer-worksets
|
|
931
|
+
to: start-post-author-composer-run
|
|
932
|
+
kind: repeat
|
|
933
|
+
outcomes: [partial]
|
|
934
|
+
- from: observe-post-author-composer-worksets
|
|
935
|
+
to: compose-indexer-post-author-fragments
|
|
936
|
+
outcomes: [unverified]
|
|
937
|
+
- from: observe-post-author-composer-worksets
|
|
938
|
+
to: reconcile-indexer-results
|
|
939
|
+
outcomes: [completed]
|
|
940
|
+
- from: observe-post-author-composer-worksets
|
|
941
|
+
to: post-author-blocked
|
|
942
|
+
outcomes: [failed, blocked]
|
|
943
|
+
- from: compose-indexer-post-author-fragments
|
|
944
|
+
to: reconcile-indexer-results
|
|
945
|
+
outcomes: [completed]
|
|
946
|
+
- from: compose-indexer-post-author-fragments
|
|
947
|
+
to: post-author-blocked
|
|
948
|
+
outcomes: [failed, blocked]
|
|
949
|
+
- from: reconcile-indexer-results
|
|
950
|
+
to: checkpoint-material-gaps
|
|
951
|
+
outcomes: [completed, partial, blocked]
|
|
952
|
+
- from: audit-material-gap-state
|
|
953
|
+
to: checkpoint-material-gaps
|
|
954
|
+
outcomes: [partial]
|
|
955
|
+
- from: audit-material-gap-state
|
|
956
|
+
to: close-indexer-approved-knowledge
|
|
957
|
+
outcomes: [unverified]
|
|
958
|
+
- from: audit-material-gap-state
|
|
959
|
+
to: material-answer-blocked
|
|
960
|
+
outcomes: [blocked]
|
|
961
|
+
- from: audit-material-gap-state
|
|
962
|
+
to: material-gap-audit-current
|
|
963
|
+
outcomes: [completed]
|
|
964
|
+
- from: checkpoint-material-gaps
|
|
965
|
+
to: indexer-reconciliation-ready
|
|
966
|
+
outcomes: [completed]
|
|
967
|
+
- from: checkpoint-material-gaps
|
|
968
|
+
to: build-material-question-workset
|
|
969
|
+
outcomes: [partial]
|
|
970
|
+
- from: checkpoint-material-gaps
|
|
971
|
+
to: indexer-capability-gap
|
|
972
|
+
outcomes: [blocked]
|
|
973
|
+
- from: build-material-question-workset
|
|
974
|
+
to: prepare-material-answer-runs
|
|
975
|
+
outcomes: [completed]
|
|
976
|
+
- from: prepare-material-answer-runs
|
|
977
|
+
to: observe-material-answer-runs
|
|
978
|
+
outcomes: [completed]
|
|
979
|
+
- from: observe-material-answer-runs
|
|
980
|
+
to: start-material-answer-run
|
|
981
|
+
outcomes: [partial]
|
|
982
|
+
- from: observe-material-answer-runs
|
|
983
|
+
to: review-material-answer-candidates
|
|
984
|
+
outcomes: [unverified]
|
|
985
|
+
- from: observe-material-answer-runs
|
|
986
|
+
to: evaluate-material-gaps
|
|
987
|
+
outcomes: [completed]
|
|
988
|
+
- from: observe-material-answer-runs
|
|
989
|
+
to: material-answer-blocked
|
|
990
|
+
outcomes: [blocked]
|
|
991
|
+
- from: observe-material-answer-runs
|
|
992
|
+
to: material-answer-failed
|
|
993
|
+
outcomes: [failed]
|
|
994
|
+
- from: start-material-answer-run
|
|
995
|
+
to: run-material-answer-indexers
|
|
996
|
+
outcomes: [completed]
|
|
997
|
+
- from: run-material-answer-indexers
|
|
998
|
+
to: accept-material-answer-run
|
|
999
|
+
outcomes: [completed]
|
|
1000
|
+
- from: run-material-answer-indexers
|
|
1001
|
+
to: fail-material-answer-run
|
|
1002
|
+
outcomes: [failed]
|
|
1003
|
+
- from: accept-material-answer-run
|
|
1004
|
+
to: observe-material-answer-runs
|
|
1005
|
+
kind: repeat
|
|
1006
|
+
outcomes: [completed]
|
|
1007
|
+
- from: fail-material-answer-run
|
|
1008
|
+
to: observe-material-answer-runs
|
|
1009
|
+
kind: repeat
|
|
1010
|
+
outcomes: [completed]
|
|
1011
|
+
- from: review-material-answer-candidates
|
|
1012
|
+
to: checkpoint-material-answer-review
|
|
1013
|
+
outcomes: [completed]
|
|
1014
|
+
- from: checkpoint-material-answer-review
|
|
1015
|
+
to: evaluate-material-gaps
|
|
1016
|
+
outcomes: [completed]
|
|
1017
|
+
- from: evaluate-material-gaps
|
|
1018
|
+
to: indexer-reconciliation-ready
|
|
1019
|
+
outcomes: [completed]
|
|
1020
|
+
- from: evaluate-material-gaps
|
|
1021
|
+
to: indexer-layout-ready
|
|
1022
|
+
outcomes: [partial]
|
|
1023
|
+
- from: evaluate-material-gaps
|
|
1024
|
+
to: material-answer-blocked
|
|
1025
|
+
outcomes: [blocked]
|
|
1026
|
+
- from: actualize-material-answer-bindings
|
|
1027
|
+
to: indexer-reconciliation-ready
|
|
1028
|
+
outcomes: [completed]
|
|
1029
|
+
- from: actualize-material-answer-bindings
|
|
1030
|
+
to: material-answer-blocked
|
|
1031
|
+
outcomes: [blocked]
|
|
1032
|
+
- from: close-indexer-approved-knowledge
|
|
1033
|
+
to: indexer-approved-knowledge-closed
|
|
1034
|
+
outcomes: [completed]
|
|
1035
|
+
- from: inspect-index-candidate-review-readiness
|
|
1036
|
+
to: review-index-candidates
|
|
1037
|
+
outcomes: [completed]
|
|
1038
|
+
- from: compile-indexer-candidates
|
|
1039
|
+
to: indexer-candidates-compiled
|
|
1040
|
+
outcomes: [completed]
|
|
1041
|
+
- from: report-indexer-incremental-impact
|
|
1042
|
+
to: indexer-incremental-impact-reported
|
|
1043
|
+
outcomes: [completed]
|
|
1044
|
+
- from: inspect-index-candidate-review-readiness
|
|
1045
|
+
to: index-baseline-audit-failed
|
|
1046
|
+
outcomes: [failed]
|
|
1047
|
+
- from: inspect-index-candidate-review-readiness
|
|
1048
|
+
to: revise-index-output
|
|
1049
|
+
outcomes: [blocked]
|
|
1050
|
+
- from: revise-index-output
|
|
1051
|
+
to: record-index-profile-revision
|
|
1052
|
+
outcomes: [completed]
|
|
1053
|
+
- from: record-index-profile-revision
|
|
1054
|
+
to: index-profile-revision-pending
|
|
1055
|
+
outcomes: [partial]
|
|
1056
|
+
- from: record-index-profile-revision
|
|
1057
|
+
to: report-index-profile-failure
|
|
1058
|
+
outcomes: [completed]
|
|
1059
|
+
- from: report-index-profile-failure
|
|
1060
|
+
to: override-index-profile-audit
|
|
1061
|
+
outcomes: [completed]
|
|
1062
|
+
- from: override-index-profile-audit
|
|
1063
|
+
to: inspect-index-candidate-review-readiness
|
|
1064
|
+
kind: repeat
|
|
1065
|
+
outcomes: [completed]
|
|
1066
|
+
- from: review-index-candidates
|
|
1067
|
+
to: index-candidate-review-complete
|
|
1068
|
+
outcomes: [completed]
|