@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
|
@@ -2,22 +2,47 @@
|
|
|
2
2
|
"schema": "agent-graph.bundle.v1",
|
|
3
3
|
"provider": {
|
|
4
4
|
"id": "c4a/context",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.7.0"
|
|
6
6
|
},
|
|
7
7
|
"providerManifest": "provider.yaml",
|
|
8
8
|
"graphs": [
|
|
9
|
+
{
|
|
10
|
+
"id": "indexer",
|
|
11
|
+
"path": "graphs/indexer.yaml",
|
|
12
|
+
"digest": "sha256:a775e375e37d8d349eb8eca3f1184637886bce75e9e7e47f39949a2df6264f99"
|
|
13
|
+
},
|
|
9
14
|
{
|
|
10
15
|
"id": "workspace",
|
|
11
16
|
"path": "graphs/workspace.yaml",
|
|
12
|
-
"digest": "sha256:
|
|
17
|
+
"digest": "sha256:ef5a226bfe3c0b6ddc0b85351f2c7d0028d162fdf4a0b258899489ef3737c1f0"
|
|
13
18
|
}
|
|
14
19
|
],
|
|
15
20
|
"actions": [
|
|
21
|
+
{
|
|
22
|
+
"id": "accept-main-index-run",
|
|
23
|
+
"path": "actions/accept-main-index-run.yaml",
|
|
24
|
+
"digest": "sha256:d4e9843c0763665318092b6097bf7a2eb53ab71bb3f75093ea3a16b8ceb35e22"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"id": "accept-material-answer-run",
|
|
28
|
+
"path": "actions/accept-material-answer-run.yaml",
|
|
29
|
+
"digest": "sha256:aceb10a93b98798390a4a6ca146a7e396d587d1b5b8810917882883120c27996"
|
|
30
|
+
},
|
|
16
31
|
{
|
|
17
32
|
"id": "accept-package-templates",
|
|
18
33
|
"path": "actions/accept-package-templates.yaml",
|
|
19
34
|
"digest": "sha256:e3de218f2dc37c9d3ab9546e408598c7b320f7151e8c520a00770919088a6a66"
|
|
20
35
|
},
|
|
36
|
+
{
|
|
37
|
+
"id": "accept-post-author-composer-run",
|
|
38
|
+
"path": "actions/accept-post-author-composer-run.yaml",
|
|
39
|
+
"digest": "sha256:7fe28e5e2a11f0f7b994b6432d2a26df06d5e79d0ea5791eb1ea9b57655eafd9"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"id": "actualize-material-answer-bindings",
|
|
43
|
+
"path": "actions/actualize-material-answer-bindings.yaml",
|
|
44
|
+
"digest": "sha256:5d641922c4c68147e90d70f46d33579519aab7ea0b6d26ff927894b15e3974f6"
|
|
45
|
+
},
|
|
21
46
|
{
|
|
22
47
|
"id": "align-next",
|
|
23
48
|
"path": "actions/align-next.yaml",
|
|
@@ -28,11 +53,21 @@
|
|
|
28
53
|
"path": "actions/apply-code-index-guidance.yaml",
|
|
29
54
|
"digest": "sha256:42dd7e82813d31421078cb977e125ffae1ec219f9512a0e3ac32f1d2aff8041a"
|
|
30
55
|
},
|
|
56
|
+
{
|
|
57
|
+
"id": "apply-document-optimization-guidance",
|
|
58
|
+
"path": "actions/apply-document-optimization-guidance.yaml",
|
|
59
|
+
"digest": "sha256:80d906a1056bab6d2259bd46fba70fd6d5b736f538f7e706c7205709f63c93dd"
|
|
60
|
+
},
|
|
31
61
|
{
|
|
32
62
|
"id": "apply-forced-review",
|
|
33
63
|
"path": "actions/apply-forced-review.yaml",
|
|
34
64
|
"digest": "sha256:ed530819831b68824bd373dec399c73a30d7eeebd2ef72ae0eab3e7a60cad80f"
|
|
35
65
|
},
|
|
66
|
+
{
|
|
67
|
+
"id": "apply-indexer-project",
|
|
68
|
+
"path": "actions/apply-indexer-project.yaml",
|
|
69
|
+
"digest": "sha256:451e904a8251a7d3c3b5daf5cf9d3e35fc7975e51394d45bd2211a526cd36c68"
|
|
70
|
+
},
|
|
36
71
|
{
|
|
37
72
|
"id": "apply-managed-review",
|
|
38
73
|
"path": "actions/apply-managed-review.yaml",
|
|
@@ -43,36 +78,136 @@
|
|
|
43
78
|
"path": "actions/apply-structure-confirmation.yaml",
|
|
44
79
|
"digest": "sha256:2d5acf97ca692d324c829b25e020708b0d5fcd7ee004b7fd2be625a197dc77c3"
|
|
45
80
|
},
|
|
81
|
+
{
|
|
82
|
+
"id": "audit-material-gap-state",
|
|
83
|
+
"path": "actions/audit-material-gap-state.yaml",
|
|
84
|
+
"digest": "sha256:d2346aed317c51eed5c0b24d166359d320b329fe7d348b7bf8b637c6c8edc00b"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"id": "audit-projected-artifact-fan-out",
|
|
88
|
+
"path": "actions/audit-projected-artifact-fan-out.yaml",
|
|
89
|
+
"digest": "sha256:472e61994a2acadac2da4782292b49567f094d6b2899a3d5f48737332c4523f1"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"id": "authorize-indexer-contract-overlay",
|
|
93
|
+
"path": "actions/authorize-indexer-contract-overlay.yaml",
|
|
94
|
+
"digest": "sha256:42b37e101ebc44d193c9c914fe761598ecb566c47ffb85d81f7f581ea2041b86"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"id": "authorize-indexer-dependencies",
|
|
98
|
+
"path": "actions/authorize-indexer-dependencies.yaml",
|
|
99
|
+
"digest": "sha256:101e3025bcdbbbba5022dd975d3840bb362a7d806afcc18e6fd9c51894905d10"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "authorize-indexer-program-execution",
|
|
103
|
+
"path": "actions/authorize-indexer-program-execution.yaml",
|
|
104
|
+
"digest": "sha256:95278fbf41dc311151d1d0bad8727fd07390eee740b69e3c08831306466dea94"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"id": "build-main-index-author-worksets",
|
|
108
|
+
"path": "actions/build-main-index-author-worksets.yaml",
|
|
109
|
+
"digest": "sha256:bb24a48cab5d4ac6f3109a70000bf81d30b1e9e83f595bb6ac892c3d2e1dec54"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"id": "build-main-index-catalog-fallback",
|
|
113
|
+
"path": "actions/build-main-index-catalog-fallback.yaml",
|
|
114
|
+
"digest": "sha256:4063dada12583595c9ff1183a50b0d84f9131bc0c280e1e6082efa046dedbf75"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"id": "build-main-index-partition-worksets",
|
|
118
|
+
"path": "actions/build-main-index-partition-worksets.yaml",
|
|
119
|
+
"digest": "sha256:b3a0a71925b84f3d20eb4cef9608de215cc2d600749b9bd30f9a42d6b2468d07"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"id": "build-material-question-workset",
|
|
123
|
+
"path": "actions/build-material-question-workset.yaml",
|
|
124
|
+
"digest": "sha256:859ece19215833777ca530b468e745d1910e6ef1bdfb12a6d40659390378069a"
|
|
125
|
+
},
|
|
46
126
|
{
|
|
47
127
|
"id": "build-next",
|
|
48
128
|
"path": "actions/build-next.yaml",
|
|
49
129
|
"digest": "sha256:a5b8bb7162f14e0cf3056dd1a3e9da05fe45f7b61fcf0aa07f52ca7274256e44"
|
|
50
130
|
},
|
|
131
|
+
{
|
|
132
|
+
"id": "build-post-author-composer-worksets",
|
|
133
|
+
"path": "actions/build-post-author-composer-worksets.yaml",
|
|
134
|
+
"digest": "sha256:94c448df97e05f0cc3210182e4d5b21035a400bc0679cdeb74329af0d77d0870"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"id": "build-question-target-inventory",
|
|
138
|
+
"path": "actions/build-question-target-inventory.yaml",
|
|
139
|
+
"digest": "sha256:a460629e8a675a28d5673a352fab5b5f77b67e4fc78a3d5dd4877d63b79b096a"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"id": "build-subject-catalog",
|
|
143
|
+
"path": "actions/build-subject-catalog.yaml",
|
|
144
|
+
"digest": "sha256:5b4d9e34dcae6dc6471f5a46e252ee284a2c210f55e0015e6134086eed80cecc"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"id": "build-target-resolution-views",
|
|
148
|
+
"path": "actions/build-target-resolution-views.yaml",
|
|
149
|
+
"digest": "sha256:e20d2c7d6b3114581b511f3471f0da56d0edf2c541e4632550b5a921b1c72e8f"
|
|
150
|
+
},
|
|
51
151
|
{
|
|
52
152
|
"id": "capture-next",
|
|
53
153
|
"path": "actions/capture-next.yaml",
|
|
54
154
|
"digest": "sha256:409a091eb771d5087408832539a50cb7b6f0c0d25dd47257798df49f5d8b6fc3"
|
|
55
155
|
},
|
|
156
|
+
{
|
|
157
|
+
"id": "checkpoint-material-answer-review",
|
|
158
|
+
"path": "actions/checkpoint-material-answer-review.yaml",
|
|
159
|
+
"digest": "sha256:ebea7d1dd957a0798b02dbd14dc8ee0a8c0a31407c864fe41dc4706954aa48a4"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"id": "checkpoint-material-gaps",
|
|
163
|
+
"path": "actions/checkpoint-material-gaps.yaml",
|
|
164
|
+
"digest": "sha256:33e825a38c86ee56eb9f15caa4af74d334868203ff1083b1f4687dbeb4c3d748"
|
|
165
|
+
},
|
|
56
166
|
{
|
|
57
167
|
"id": "close-approved-knowledge",
|
|
58
168
|
"path": "actions/close-approved-knowledge.yaml",
|
|
59
169
|
"digest": "sha256:8ef2c1ca0856042b5587e08a324721902fcb61578749f54e5c043440b71f09da"
|
|
60
170
|
},
|
|
171
|
+
{
|
|
172
|
+
"id": "close-indexer-approved-knowledge",
|
|
173
|
+
"path": "actions/close-indexer-approved-knowledge.yaml",
|
|
174
|
+
"digest": "sha256:5226e523c44a1f0a6b81bbc26ea53a59f399ccc1695b483649d3cc84d74d752e"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"id": "compile-indexer-candidates",
|
|
178
|
+
"path": "actions/compile-indexer-candidates.yaml",
|
|
179
|
+
"digest": "sha256:e3821f2b67376d844501bae335d33970e36b81a3acc249a9e4834b10b573575e"
|
|
180
|
+
},
|
|
61
181
|
{
|
|
62
182
|
"id": "compile-next",
|
|
63
183
|
"path": "actions/compile-next.yaml",
|
|
64
184
|
"digest": "sha256:e0fec702b2e77b4425c90ad47813fe2e9a6a007013d983b5e51243eb0c61433e"
|
|
65
185
|
},
|
|
186
|
+
{
|
|
187
|
+
"id": "compose-indexer-post-author-fragments",
|
|
188
|
+
"path": "actions/compose-indexer-post-author-fragments.yaml",
|
|
189
|
+
"digest": "sha256:e656e684436c43a10982e99885e3978d02991ac3efe13e1a45954a2f20d8aa08"
|
|
190
|
+
},
|
|
66
191
|
{
|
|
67
192
|
"id": "configure-code-extraction",
|
|
68
193
|
"path": "actions/configure-code-extraction.yaml",
|
|
69
194
|
"digest": "sha256:db83bf8d71f4bd1869d023b96bb095fbe206018125a528478693920ba9e2ffe3"
|
|
70
195
|
},
|
|
196
|
+
{
|
|
197
|
+
"id": "configure-community-indexer-fallback",
|
|
198
|
+
"path": "actions/configure-community-indexer-fallback.yaml",
|
|
199
|
+
"digest": "sha256:a684e957a604f57a3be3201e280b489a6c6275e0dbbd0a614f96ce18e7eaeea8"
|
|
200
|
+
},
|
|
71
201
|
{
|
|
72
202
|
"id": "configure-document-capture",
|
|
73
203
|
"path": "actions/configure-document-capture.yaml",
|
|
74
204
|
"digest": "sha256:c5955af91692dd8e46b519aba8eec56a6a0dab58c1639f2ff42f746daf558f1d"
|
|
75
205
|
},
|
|
206
|
+
{
|
|
207
|
+
"id": "configure-indexer-providers",
|
|
208
|
+
"path": "actions/configure-indexer-providers.yaml",
|
|
209
|
+
"digest": "sha256:00ccd8ee6e6d6aa0ea2429d6c833ca097e0d22aa21b0df95e6739e8416fc4888"
|
|
210
|
+
},
|
|
76
211
|
{
|
|
77
212
|
"id": "configure-package-output",
|
|
78
213
|
"path": "actions/configure-package-output.yaml",
|
|
@@ -83,11 +218,51 @@
|
|
|
83
218
|
"path": "actions/configure-prose-lifecycle.yaml",
|
|
84
219
|
"digest": "sha256:226d20be637455b3ffba4a115dd0437d3330354d8a73b8e5313b3af303d53bcc"
|
|
85
220
|
},
|
|
221
|
+
{
|
|
222
|
+
"id": "confirm-index-requirement-workset",
|
|
223
|
+
"path": "actions/confirm-index-requirement-workset.yaml",
|
|
224
|
+
"digest": "sha256:b46f5209bd60846d69efa2697facb03be92a37749e89fada4b7f0d9d87800b4e"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"id": "confirm-subject-reidentification",
|
|
228
|
+
"path": "actions/confirm-subject-reidentification.yaml",
|
|
229
|
+
"digest": "sha256:60afb798d37641202e10d0dd4ee7d4e7ecb0af7a085484b96264da20fa9853ef"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"id": "converge-main-index-partition-run",
|
|
233
|
+
"path": "actions/converge-main-index-partition-run.yaml",
|
|
234
|
+
"digest": "sha256:edf4dc5271dd0d9052cace776cc11532ca7f9d6526dd40c5eca76110cb976a8d"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"id": "discover-markdown-indexer-providers",
|
|
238
|
+
"path": "actions/discover-markdown-indexer-providers.yaml",
|
|
239
|
+
"digest": "sha256:ade21b433c3f0f5abd1940f9227f1184875e08be70298dcb041715f9be4c81b2"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"id": "evaluate-material-gaps",
|
|
243
|
+
"path": "actions/evaluate-material-gaps.yaml",
|
|
244
|
+
"digest": "sha256:91f31dc5f74725bb929e5844db4ab6813b1ad6c8a94d48518bed3a25b796299d"
|
|
245
|
+
},
|
|
86
246
|
{
|
|
87
247
|
"id": "extract-next",
|
|
88
248
|
"path": "actions/extract-next.yaml",
|
|
89
249
|
"digest": "sha256:3d5e26cbdd912c9be666ce423b19456b31ab67da53c4e01a1a1c7a3dc1e6420a"
|
|
90
250
|
},
|
|
251
|
+
{
|
|
252
|
+
"id": "fail-main-index-run",
|
|
253
|
+
"path": "actions/fail-main-index-run.yaml",
|
|
254
|
+
"digest": "sha256:b73dd9bd22188f9e846efa8ea781fdee2566c1a7b9cf7204662f5fde72fa77d1"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"id": "fail-material-answer-run",
|
|
258
|
+
"path": "actions/fail-material-answer-run.yaml",
|
|
259
|
+
"digest": "sha256:76cb54c8e1dae187e3e889d958e59e1cc368e7267e0c435875b9fe1df2d89f70"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"id": "fail-post-author-composer-run",
|
|
263
|
+
"path": "actions/fail-post-author-composer-run.yaml",
|
|
264
|
+
"digest": "sha256:26c35ebdfca9a4da92c1af0d7d22a1577594077fe254fef825b976639ca491d7"
|
|
265
|
+
},
|
|
91
266
|
{
|
|
92
267
|
"id": "flush-runtime-events",
|
|
93
268
|
"path": "actions/flush-runtime-events.yaml",
|
|
@@ -103,6 +278,41 @@
|
|
|
103
278
|
"path": "actions/inspect-document-classification.yaml",
|
|
104
279
|
"digest": "sha256:973889832e3adfba4fa019b3dfadda35fe22536c44ef97efba2299e6cdd65786"
|
|
105
280
|
},
|
|
281
|
+
{
|
|
282
|
+
"id": "inspect-index-candidate-review-readiness",
|
|
283
|
+
"path": "actions/inspect-index-candidate-review-readiness.yaml",
|
|
284
|
+
"digest": "sha256:e798248995a46b3662481143898cec63ae3030c7c8c8ebdeb66a02300c39f83a"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"id": "inspect-index-profile-failure",
|
|
288
|
+
"path": "actions/inspect-index-profile-failure.yaml",
|
|
289
|
+
"digest": "sha256:f5b7eba151f2df106e894b362ef171bb14adb8ac29ba34b68847865dd864d22c"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"id": "inspect-indexer-dependencies",
|
|
293
|
+
"path": "actions/inspect-indexer-dependencies.yaml",
|
|
294
|
+
"digest": "sha256:5561937c8ac2e701dd45186881d85b9bfae1ef514e47c777aaf59cbf4859eb7c"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"id": "inspect-indexer-program-execution",
|
|
298
|
+
"path": "actions/inspect-indexer-program-execution.yaml",
|
|
299
|
+
"digest": "sha256:97c748e203302a179f535767a4dd05c79d8bfd346175064d46297f8afabd0640"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"id": "inspect-indexer-project-proposal",
|
|
303
|
+
"path": "actions/inspect-indexer-project-proposal.yaml",
|
|
304
|
+
"digest": "sha256:c316afdc4fd13f273961fca69addf18bb971efd03601cddd532d58d12c43226e"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"id": "inspect-markdown-provider-capture",
|
|
308
|
+
"path": "actions/inspect-markdown-provider-capture.yaml",
|
|
309
|
+
"digest": "sha256:3dd8631da8cb01f24dfe9db2c539e0d523bf77032006856b21a321aa81891d46"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"id": "inspect-material-answer-review",
|
|
313
|
+
"path": "actions/inspect-material-answer-review.yaml",
|
|
314
|
+
"digest": "sha256:86b88755089150753761e0efd73f118f7ade34b8388199f55ee7197923fa9c77"
|
|
315
|
+
},
|
|
106
316
|
{
|
|
107
317
|
"id": "inspect-repository-recovery",
|
|
108
318
|
"path": "actions/inspect-repository-recovery.yaml",
|
|
@@ -128,26 +338,96 @@
|
|
|
128
338
|
"path": "actions/materialize-context-view.yaml",
|
|
129
339
|
"digest": "sha256:0ed6b73b6a31324575fd10fb8f2067c8381609ab272a031b326080506105d115"
|
|
130
340
|
},
|
|
341
|
+
{
|
|
342
|
+
"id": "materialize-indexer-instructions",
|
|
343
|
+
"path": "actions/materialize-indexer-instructions.yaml",
|
|
344
|
+
"digest": "sha256:6da47c03bd482b5b0170508b1ddc9e2d0998acff8ea08b0768dbbc3d2386926f"
|
|
345
|
+
},
|
|
131
346
|
{
|
|
132
347
|
"id": "migrate-codeindex",
|
|
133
348
|
"path": "actions/migrate-codeindex.yaml",
|
|
134
349
|
"digest": "sha256:984316fa010f8ce570b4c9c3db8945e0e80f7a1dfb48c3db5ba3a1bcf6383a9a"
|
|
135
350
|
},
|
|
351
|
+
{
|
|
352
|
+
"id": "observe-indexer-project",
|
|
353
|
+
"path": "actions/observe-indexer-project.yaml",
|
|
354
|
+
"digest": "sha256:0365519d1db7d6d6292a642f6357b409afae2025a3332024e4173d52d7ebaece"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"id": "observe-main-index-run-ledger",
|
|
358
|
+
"path": "actions/observe-main-index-run-ledger.yaml",
|
|
359
|
+
"digest": "sha256:c420be99b95acbe7c4b0587292c3423930d4702dd4d769336731e1db3c9c0dcc"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"id": "observe-material-answer-runs",
|
|
363
|
+
"path": "actions/observe-material-answer-runs.yaml",
|
|
364
|
+
"digest": "sha256:5e8da86a57b7a3859e32a894b89861c533f4e2961f46451374ac2252519ce40a"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"id": "observe-post-author-composer-worksets",
|
|
368
|
+
"path": "actions/observe-post-author-composer-worksets.yaml",
|
|
369
|
+
"digest": "sha256:ee3757049541d4add6bb8ca3a3e69b388189b49eb6aa7b417ba988b198a7d1fa"
|
|
370
|
+
},
|
|
136
371
|
{
|
|
137
372
|
"id": "optimize-documents",
|
|
138
373
|
"path": "actions/optimize-documents.yaml",
|
|
139
374
|
"digest": "sha256:5fdd18379742c20af19e8a92e2591dd85270fa4a6af5d0adea6430b43049bebb"
|
|
140
375
|
},
|
|
376
|
+
{
|
|
377
|
+
"id": "override-index-profile-audit",
|
|
378
|
+
"path": "actions/override-index-profile-audit.yaml",
|
|
379
|
+
"digest": "sha256:4ef12f402e86b88e63aeff4848d6e508e2d839b3ec5abe0e341a7ca5cf1cd5ea"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"id": "prepare-indexer-customization-project",
|
|
383
|
+
"path": "actions/prepare-indexer-customization-project.yaml",
|
|
384
|
+
"digest": "sha256:134b04cb53d2d6f06ffe651ea0b9fd4f523243e01de7a73385a692c7ea521635"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"id": "prepare-main-index-run-ledger",
|
|
388
|
+
"path": "actions/prepare-main-index-run-ledger.yaml",
|
|
389
|
+
"digest": "sha256:02571e4b34e3e25212a273ac8ac573baca760f99c356e4a2dfdd167ec7ff0681"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"id": "prepare-material-answer-runs",
|
|
393
|
+
"path": "actions/prepare-material-answer-runs.yaml",
|
|
394
|
+
"digest": "sha256:fc3a7bb385bf9a0a24d56e91387f2bdb61add0af597126f890edc733a9b59cd1"
|
|
395
|
+
},
|
|
141
396
|
{
|
|
142
397
|
"id": "preview-extraction-batch",
|
|
143
398
|
"path": "actions/preview-extraction-batch.yaml",
|
|
144
399
|
"digest": "sha256:45e6d8c60a56fde6f1049193b12b708da86a8a67a65b0b1f7cb6034faec44c57"
|
|
145
400
|
},
|
|
401
|
+
{
|
|
402
|
+
"id": "propose-indexer-customization",
|
|
403
|
+
"path": "actions/propose-indexer-customization.yaml",
|
|
404
|
+
"digest": "sha256:07d1842805d62f5a8a9cef36c602ceee0876c91338493caa61ba3080ccad9bfa"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"id": "propose-overlay-question-amendment",
|
|
408
|
+
"path": "actions/propose-overlay-question-amendment.yaml",
|
|
409
|
+
"digest": "sha256:cf3ad2a7d0c77ab30de97059a69b3008e6efd1a6fac0ecf01ab199a167bbf37d"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"id": "rebind-indexer-selection-to-requirement",
|
|
413
|
+
"path": "actions/rebind-indexer-selection-to-requirement.yaml",
|
|
414
|
+
"digest": "sha256:620e75b2c328df1cee0608fe7fc5d5abfaa0522d676339cee3382ca377347990"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"id": "reconcile-indexer-results",
|
|
418
|
+
"path": "actions/reconcile-indexer-results.yaml",
|
|
419
|
+
"digest": "sha256:6121f000167ce9b1672268da098fea43a461e0c0421176ddccc9c926640d087b"
|
|
420
|
+
},
|
|
146
421
|
{
|
|
147
422
|
"id": "reconcile-review-identities",
|
|
148
423
|
"path": "actions/reconcile-review-identities.yaml",
|
|
149
424
|
"digest": "sha256:aac95cc46ab8a872bdd1cc53cf64e3bbde8cf8dc2d6e9ac2da82bb378fcfe09a"
|
|
150
425
|
},
|
|
426
|
+
{
|
|
427
|
+
"id": "record-index-profile-revision",
|
|
428
|
+
"path": "actions/record-index-profile-revision.yaml",
|
|
429
|
+
"digest": "sha256:aed060f49baad6ccb5ef9d088d96cb3f3567f511c8465cb7d19512d9b8830698"
|
|
430
|
+
},
|
|
151
431
|
{
|
|
152
432
|
"id": "register-source-batch",
|
|
153
433
|
"path": "actions/register-source-batch.yaml",
|
|
@@ -168,11 +448,31 @@
|
|
|
168
448
|
"path": "actions/repair-workspace-state.yaml",
|
|
169
449
|
"digest": "sha256:67296adf5336a7f746e250dc23676972282f88410fb6a6edc41a929e15d1856b"
|
|
170
450
|
},
|
|
451
|
+
{
|
|
452
|
+
"id": "report-index-profile-failure",
|
|
453
|
+
"path": "actions/report-index-profile-failure.yaml",
|
|
454
|
+
"digest": "sha256:ff4c0b73c76f9b074efe8f211f92a823bc35829c91a177adbde92679f50a7b0f"
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"id": "report-indexer-incremental-impact",
|
|
458
|
+
"path": "actions/report-indexer-incremental-impact.yaml",
|
|
459
|
+
"digest": "sha256:74bbbfde59ee2561ca0d1ca966c79f9df374b1bfe79d7e8174012d4ff2a6d13c"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"id": "resolve-effective-composers",
|
|
463
|
+
"path": "actions/resolve-effective-composers.yaml",
|
|
464
|
+
"digest": "sha256:46877f18d49466675a5f758a7eea6608dca8d68c01bf4a8a75ca22acae6f7adb"
|
|
465
|
+
},
|
|
171
466
|
{
|
|
172
467
|
"id": "restore-repository-sources",
|
|
173
468
|
"path": "actions/restore-repository-sources.yaml",
|
|
174
469
|
"digest": "sha256:58e40ee93d6bd1a9fe11d208fe771b576f8c5ceb05105d3e92a9aecc6b4a7fd8"
|
|
175
470
|
},
|
|
471
|
+
{
|
|
472
|
+
"id": "review-material-answer-candidate",
|
|
473
|
+
"path": "actions/review-material-answer-candidate.yaml",
|
|
474
|
+
"digest": "sha256:b83a407a4ada68abffdf5b2ec04ab60cab274db477ac1fedd4b88f944795be8f"
|
|
475
|
+
},
|
|
176
476
|
{
|
|
177
477
|
"id": "revise-code-index-audit",
|
|
178
478
|
"path": "actions/revise-code-index-audit.yaml",
|
|
@@ -183,10 +483,85 @@
|
|
|
183
483
|
"path": "actions/revise-document.yaml",
|
|
184
484
|
"digest": "sha256:605d3808670582da69881c9a2eb8b0de21b42fbdd04c1d04a8fa93513989a08e"
|
|
185
485
|
},
|
|
486
|
+
{
|
|
487
|
+
"id": "revise-index-output",
|
|
488
|
+
"path": "actions/revise-index-output.yaml",
|
|
489
|
+
"digest": "sha256:af126714a12ae57ed9536c89b04bd991644fd341d9911d1b38295ae7b9eab9ab"
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"id": "route-index-requirement-confirmation",
|
|
493
|
+
"path": "actions/route-index-requirement-confirmation.yaml",
|
|
494
|
+
"digest": "sha256:fb69e4931e8f310eead241f7ba468b19c245ac6709967674c3cff2120ae65c98"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"id": "route-indexer-provider-selection",
|
|
498
|
+
"path": "actions/route-indexer-provider-selection.yaml",
|
|
499
|
+
"digest": "sha256:e3b88a1afb975c955f27c9e340dc4a5c78fc11a78190d603c9afb94eefcee29c"
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"id": "run-indexer-agent-step",
|
|
503
|
+
"path": "actions/run-indexer-agent-step.yaml",
|
|
504
|
+
"digest": "sha256:1223b17c9e3ce35b584df82118b7048d470c6226abaf522dd84d8c797935b7e9"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"id": "run-indexer-post-author-composer",
|
|
508
|
+
"path": "actions/run-indexer-post-author-composer.yaml",
|
|
509
|
+
"digest": "sha256:3ba76d84e3cbc7614fccebcb609a71b0dc1ba3849d0e77537286f16a6227991a"
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"id": "run-material-answer-indexers",
|
|
513
|
+
"path": "actions/run-material-answer-indexers.yaml",
|
|
514
|
+
"digest": "sha256:6f1a9ec0563aa6a5202a0f6d9db1f4874340e58ea9284adcad5fe6d4b3e2157c"
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"id": "start-main-index-run",
|
|
518
|
+
"path": "actions/start-main-index-run.yaml",
|
|
519
|
+
"digest": "sha256:cb840b3eac3b042641d3797a4a2aba447a9ecae5d3999454b3777c8ec4572e03"
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"id": "start-material-answer-run",
|
|
523
|
+
"path": "actions/start-material-answer-run.yaml",
|
|
524
|
+
"digest": "sha256:ef3b42d7e148c046442ae3dfa3028656abfcbbf66a294fe833ba85cd9d8468e6"
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"id": "start-post-author-composer-run",
|
|
528
|
+
"path": "actions/start-post-author-composer-run.yaml",
|
|
529
|
+
"digest": "sha256:8f97cd69b198c21ef27a2d151f7b2111e363b5d664f118dc663145acb19a34ea"
|
|
530
|
+
},
|
|
186
531
|
{
|
|
187
532
|
"id": "submit-code-index-audit",
|
|
188
533
|
"path": "actions/submit-code-index-audit.yaml",
|
|
189
534
|
"digest": "sha256:30ecc7cf9fcae232f9d3075d4410f5753c599bee148e06bf08afe4c219bb45c4"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"id": "validate-indexer-contract-overlays",
|
|
538
|
+
"path": "actions/validate-indexer-contract-overlays.yaml",
|
|
539
|
+
"digest": "sha256:e9ecc7edc82dd37e7f3a2d07ac8f057404d2fca8a3b2d59a83a7e42b598014ef"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"id": "validate-indexer-customization",
|
|
543
|
+
"path": "actions/validate-indexer-customization.yaml",
|
|
544
|
+
"digest": "sha256:d6ece3ece4c22724eb9b816f231da96d62c7ce71da0045f23531e5cc99236889"
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"id": "validate-indexer-selection-proposal",
|
|
548
|
+
"path": "actions/validate-indexer-selection-proposal.yaml",
|
|
549
|
+
"digest": "sha256:14aea733499a9adb736df5ef83a6b013c0bca1ca912e16994bbff30939360652"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"id": "validate-main-index-run",
|
|
553
|
+
"path": "actions/validate-main-index-run.yaml",
|
|
554
|
+
"digest": "sha256:de7cecd69c93d7d37dad0896134cdf8abe1f514e2101713828fe4ff865db351e"
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"id": "validate-markdown-provider-selection",
|
|
558
|
+
"path": "actions/validate-markdown-provider-selection.yaml",
|
|
559
|
+
"digest": "sha256:aecb03ef1d05f8c71dde80ff8e2423b40885bd68c089b9cb55b4a8490cc9977b"
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"id": "validate-subject-key-schemas",
|
|
563
|
+
"path": "actions/validate-subject-key-schemas.yaml",
|
|
564
|
+
"digest": "sha256:90052a8b0a025c5517f76e9000abe8cf02674f784d70e82883b2f2140d7e1a85"
|
|
190
565
|
}
|
|
191
566
|
],
|
|
192
567
|
"resources": [
|
|
@@ -233,7 +608,7 @@
|
|
|
233
608
|
{
|
|
234
609
|
"id": "context.sdk.project-api",
|
|
235
610
|
"path": "resources/manuals/reference/project-api.md",
|
|
236
|
-
"digest": "sha256:
|
|
611
|
+
"digest": "sha256:82f6acc33a236de101e137982fc2755d0f7360953d5c938db035b4c82679b898"
|
|
237
612
|
},
|
|
238
613
|
{
|
|
239
614
|
"id": "context.sdk.template-variables",
|
|
@@ -368,7 +743,7 @@
|
|
|
368
743
|
{
|
|
369
744
|
"id": "manual.reference.code-extractors",
|
|
370
745
|
"path": "resources/manuals/reference/code-extractors.md",
|
|
371
|
-
"digest": "sha256:
|
|
746
|
+
"digest": "sha256:21b2756fb91deead40eb290e14b930243d077ce7be59bc2b3f71ccad45d9f78d"
|
|
372
747
|
},
|
|
373
748
|
{
|
|
374
749
|
"id": "procedure.close-and-build",
|
|
@@ -378,12 +753,12 @@
|
|
|
378
753
|
{
|
|
379
754
|
"id": "procedure.code-extraction",
|
|
380
755
|
"path": "resources/procedures/code-extraction.md",
|
|
381
|
-
"digest": "sha256:
|
|
756
|
+
"digest": "sha256:b64fcaf0ed923c0b96c811be662e2b026608231ce036f9637396602f731f9187"
|
|
382
757
|
},
|
|
383
758
|
{
|
|
384
759
|
"id": "procedure.code-index-audit",
|
|
385
760
|
"path": "resources/procedures/code-index-audit.md",
|
|
386
|
-
"digest": "sha256:
|
|
761
|
+
"digest": "sha256:9c32f9be4aeaf0749a3f4b36265c65dccbf2093254a5351c940b7a39bd565bb5"
|
|
387
762
|
},
|
|
388
763
|
{
|
|
389
764
|
"id": "procedure.document-capture",
|
|
@@ -398,7 +773,7 @@
|
|
|
398
773
|
{
|
|
399
774
|
"id": "procedure.document-optimization",
|
|
400
775
|
"path": "resources/procedures/document-optimization.md",
|
|
401
|
-
"digest": "sha256:
|
|
776
|
+
"digest": "sha256:befefad61c8e9fb400ee0d946d7d728bcbd807faf9f88f8004739be2c27d93aa"
|
|
402
777
|
},
|
|
403
778
|
{
|
|
404
779
|
"id": "procedure.document-revision",
|
|
@@ -460,6 +835,11 @@
|
|
|
460
835
|
"path": "resources/procedures/verify-and-repair.md",
|
|
461
836
|
"digest": "sha256:177d6c1f1f263f5c502ad197067a7fdcd5165d7ce2ac778672201c9f90888589"
|
|
462
837
|
},
|
|
838
|
+
{
|
|
839
|
+
"id": "resolved-indexer-instructions",
|
|
840
|
+
"path": "resources/views/resolved-indexer-instructions.yaml",
|
|
841
|
+
"digest": "sha256:08d2d99159a347f03d4757e8e33186424851105d7e68c11918450e30fff36c0b"
|
|
842
|
+
},
|
|
463
843
|
{
|
|
464
844
|
"id": "semantic.code-index.classification",
|
|
465
845
|
"path": "resources/semantic/code-index/classification.md",
|
|
@@ -468,7 +848,7 @@
|
|
|
468
848
|
{
|
|
469
849
|
"id": "semantic.code-index.template.adapter",
|
|
470
850
|
"path": "resources/semantic/code-index/templates/adapter.md",
|
|
471
|
-
"digest": "sha256:
|
|
851
|
+
"digest": "sha256:526557b0a33199a6cf8a756f1ccbcab4fd55dddeea8bfe10a0ce08012c7307f3"
|
|
472
852
|
},
|
|
473
853
|
{
|
|
474
854
|
"id": "semantic.code-index.template.api-service",
|
|
@@ -490,6 +870,11 @@
|
|
|
490
870
|
"path": "resources/semantic/code-index/templates/contract-source.md",
|
|
491
871
|
"digest": "sha256:a78950484eb39e3acbbfa7b69e3b8902224c93c72510bfcb181e2e4c7158206a"
|
|
492
872
|
},
|
|
873
|
+
{
|
|
874
|
+
"id": "semantic.code-index.template.contracts-and-chains",
|
|
875
|
+
"path": "resources/semantic/code-index/templates/contracts-and-chains.md",
|
|
876
|
+
"digest": "sha256:1c37f0fa253cea69371060657d59d0735f1ec2ad6d816b29a4441ce2acc145a3"
|
|
877
|
+
},
|
|
493
878
|
{
|
|
494
879
|
"id": "semantic.code-index.template.cross-module-chain",
|
|
495
880
|
"path": "resources/semantic/code-index/templates/cross-module-chain.md",
|
|
@@ -550,7 +935,7 @@
|
|
|
550
935
|
{
|
|
551
936
|
"id": "schemas/document-optimization-decisions.schema.json",
|
|
552
937
|
"path": "schemas/document-optimization-decisions.schema.json",
|
|
553
|
-
"digest": "sha256:
|
|
938
|
+
"digest": "sha256:39f4ce1cff3fff1c05952964d1fd84c05ae550fb691f17d45a99d7bd9c0c7182"
|
|
554
939
|
},
|
|
555
940
|
{
|
|
556
941
|
"id": "schemas/evidence-maintenance-input.schema.json",
|
|
@@ -558,205 +943,835 @@
|
|
|
558
943
|
"digest": "sha256:7d1c0a9cc20200b90495bea82337d2c0e42d9eff3c1e3eeeb7258226fd96c542"
|
|
559
944
|
},
|
|
560
945
|
{
|
|
561
|
-
"id": "schemas/
|
|
562
|
-
"path": "schemas/
|
|
563
|
-
"digest": "sha256:
|
|
946
|
+
"id": "schemas/indexer-agent-step-input.schema.json",
|
|
947
|
+
"path": "schemas/indexer-agent-step-input.schema.json",
|
|
948
|
+
"digest": "sha256:7bdee1013286e8b3128bcaddd44ed4136214346c769b8440e39f38ab7bf1e0aa"
|
|
564
949
|
},
|
|
565
950
|
{
|
|
566
|
-
"id": "schemas/
|
|
567
|
-
"path": "schemas/
|
|
568
|
-
"digest": "sha256:
|
|
951
|
+
"id": "schemas/indexer-agent-step-result.schema.json",
|
|
952
|
+
"path": "schemas/indexer-agent-step-result.schema.json",
|
|
953
|
+
"digest": "sha256:2125f4a45434045534c28c2dede2343c8d7c5490a6f9db4a8766b30104238023"
|
|
569
954
|
},
|
|
570
955
|
{
|
|
571
|
-
"id": "schemas/
|
|
572
|
-
"path": "schemas/
|
|
573
|
-
"digest": "sha256:
|
|
574
|
-
}
|
|
575
|
-
],
|
|
576
|
-
"files": [
|
|
956
|
+
"id": "schemas/indexer-candidate-compile-input.schema.json",
|
|
957
|
+
"path": "schemas/indexer-candidate-compile-input.schema.json",
|
|
958
|
+
"digest": "sha256:619ea6f51844e9b2da382f2a505f2cbea8ba87e688d4048d90ddef8f8879ece2"
|
|
959
|
+
},
|
|
577
960
|
{
|
|
578
|
-
"
|
|
579
|
-
"
|
|
961
|
+
"id": "schemas/indexer-candidate-compile-output.schema.json",
|
|
962
|
+
"path": "schemas/indexer-candidate-compile-output.schema.json",
|
|
963
|
+
"digest": "sha256:5e08981154c52dfe3a267f11dde23d76c5c57d380f04be63911dd9ce60168fdb"
|
|
580
964
|
},
|
|
581
965
|
{
|
|
582
|
-
"
|
|
583
|
-
"
|
|
966
|
+
"id": "schemas/indexer-candidate-review-readiness-input.schema.json",
|
|
967
|
+
"path": "schemas/indexer-candidate-review-readiness-input.schema.json",
|
|
968
|
+
"digest": "sha256:f3a2f38c6d81ad9d04a224c6ad6c622214bb54e61867da0e05fb657da73dc58c"
|
|
584
969
|
},
|
|
585
970
|
{
|
|
586
|
-
"
|
|
587
|
-
"
|
|
971
|
+
"id": "schemas/indexer-candidate-review-readiness-output.schema.json",
|
|
972
|
+
"path": "schemas/indexer-candidate-review-readiness-output.schema.json",
|
|
973
|
+
"digest": "sha256:dbad68aea79400e0363316c59f72133e96f31b89560011abea6b96665cc7beb3"
|
|
588
974
|
},
|
|
589
975
|
{
|
|
590
|
-
"
|
|
591
|
-
"
|
|
976
|
+
"id": "schemas/indexer-contract-overlay-authorization-input.schema.json",
|
|
977
|
+
"path": "schemas/indexer-contract-overlay-authorization-input.schema.json",
|
|
978
|
+
"digest": "sha256:b5c68597f2723e2acf30358794d607b805101f1003bc139a605446ea40ae3335"
|
|
592
979
|
},
|
|
593
980
|
{
|
|
594
|
-
"
|
|
595
|
-
"
|
|
981
|
+
"id": "schemas/indexer-contract-overlay-authorization-result.schema.json",
|
|
982
|
+
"path": "schemas/indexer-contract-overlay-authorization-result.schema.json",
|
|
983
|
+
"digest": "sha256:3f7a727ccc608f6a8dc6350deca8c57391173f3e30895f8b774693e1794f0776"
|
|
596
984
|
},
|
|
597
985
|
{
|
|
598
|
-
"
|
|
599
|
-
"
|
|
986
|
+
"id": "schemas/indexer-contract-overlay-validation-input.schema.json",
|
|
987
|
+
"path": "schemas/indexer-contract-overlay-validation-input.schema.json",
|
|
988
|
+
"digest": "sha256:f1d4958776e66670341642537063069927dfabebd90b58f24e7c9163bb232104"
|
|
600
989
|
},
|
|
601
990
|
{
|
|
602
|
-
"
|
|
603
|
-
"
|
|
991
|
+
"id": "schemas/indexer-contract-overlay-validation-result.schema.json",
|
|
992
|
+
"path": "schemas/indexer-contract-overlay-validation-result.schema.json",
|
|
993
|
+
"digest": "sha256:7ce5ed96433c313323f4eb788972601dd35238a0da4dbdde14eb9647e1cd0445"
|
|
604
994
|
},
|
|
605
995
|
{
|
|
606
|
-
"
|
|
607
|
-
"
|
|
996
|
+
"id": "schemas/indexer-customization-project-preparation-result.schema.json",
|
|
997
|
+
"path": "schemas/indexer-customization-project-preparation-result.schema.json",
|
|
998
|
+
"digest": "sha256:e59cc6764c79ac84a612ea3355f95496efd5d7f0b734f23e9001b3e7bd634499"
|
|
608
999
|
},
|
|
609
1000
|
{
|
|
610
|
-
"
|
|
611
|
-
"
|
|
1001
|
+
"id": "schemas/indexer-customization-proposal-draft.schema.json",
|
|
1002
|
+
"path": "schemas/indexer-customization-proposal-draft.schema.json",
|
|
1003
|
+
"digest": "sha256:e4f9db8a828d036f285aec47e63eaf520c8790c6cdc849d89ce043c1aeb2700a"
|
|
612
1004
|
},
|
|
613
1005
|
{
|
|
614
|
-
"
|
|
615
|
-
"
|
|
1006
|
+
"id": "schemas/indexer-customization-validation-result.schema.json",
|
|
1007
|
+
"path": "schemas/indexer-customization-validation-result.schema.json",
|
|
1008
|
+
"digest": "sha256:b1940b38f44463a5909991694ebdf8763e9d2072198564d1d4fcda6bac5415ab"
|
|
616
1009
|
},
|
|
617
1010
|
{
|
|
618
|
-
"
|
|
619
|
-
"
|
|
1011
|
+
"id": "schemas/indexer-dependency-authorization-input.schema.json",
|
|
1012
|
+
"path": "schemas/indexer-dependency-authorization-input.schema.json",
|
|
1013
|
+
"digest": "sha256:a211e545715cb575f3f74ce8854c28c495800128a676ce647d074460a778137b"
|
|
620
1014
|
},
|
|
621
1015
|
{
|
|
622
|
-
"
|
|
623
|
-
"
|
|
1016
|
+
"id": "schemas/indexer-dependency-authorization-result.schema.json",
|
|
1017
|
+
"path": "schemas/indexer-dependency-authorization-result.schema.json",
|
|
1018
|
+
"digest": "sha256:e16e6236ad5e0f2187f8578ba2938cab1f7e5742c963d28dc0a3325ce86e308e"
|
|
624
1019
|
},
|
|
625
1020
|
{
|
|
626
|
-
"
|
|
627
|
-
"
|
|
1021
|
+
"id": "schemas/indexer-incremental-impact-input.schema.json",
|
|
1022
|
+
"path": "schemas/indexer-incremental-impact-input.schema.json",
|
|
1023
|
+
"digest": "sha256:71056f5c43ae03b3d4d5a32f71b82ad00dc628f6ad2d3288e8d7839b15f075c5"
|
|
628
1024
|
},
|
|
629
1025
|
{
|
|
630
|
-
"
|
|
631
|
-
"
|
|
1026
|
+
"id": "schemas/indexer-incremental-impact-output.schema.json",
|
|
1027
|
+
"path": "schemas/indexer-incremental-impact-output.schema.json",
|
|
1028
|
+
"digest": "sha256:613dfbc9f98b4c9d6138f0a9f8eaf8a1d9782139cabaec90ac70887de24afed8"
|
|
632
1029
|
},
|
|
633
1030
|
{
|
|
634
|
-
"
|
|
635
|
-
"
|
|
1031
|
+
"id": "schemas/indexer-main-lifecycle-input.schema.json",
|
|
1032
|
+
"path": "schemas/indexer-main-lifecycle-input.schema.json",
|
|
1033
|
+
"digest": "sha256:2faff58cfb8ec34520907970f2fb83c59015fd7b3f5ed42eaee57f6e69e2695c"
|
|
636
1034
|
},
|
|
637
1035
|
{
|
|
638
|
-
"
|
|
639
|
-
"
|
|
1036
|
+
"id": "schemas/indexer-main-lifecycle-output.schema.json",
|
|
1037
|
+
"path": "schemas/indexer-main-lifecycle-output.schema.json",
|
|
1038
|
+
"digest": "sha256:a7a24962b1203665d26ac14a75061dc2f4eca3f0868c14079cdf4afafac99944"
|
|
640
1039
|
},
|
|
641
1040
|
{
|
|
642
|
-
"
|
|
643
|
-
"
|
|
1041
|
+
"id": "schemas/indexer-markdown-provider-capture-input.schema.json",
|
|
1042
|
+
"path": "schemas/indexer-markdown-provider-capture-input.schema.json",
|
|
1043
|
+
"digest": "sha256:1d0c5ee3e99a04f9ff62ae39d2d1ded4aceeb44b60b0b1e35ea34584eba95037"
|
|
644
1044
|
},
|
|
645
1045
|
{
|
|
646
|
-
"
|
|
647
|
-
"
|
|
1046
|
+
"id": "schemas/indexer-markdown-provider-capture-output.schema.json",
|
|
1047
|
+
"path": "schemas/indexer-markdown-provider-capture-output.schema.json",
|
|
1048
|
+
"digest": "sha256:52af7d606a6945b380a401eb3052b982e480fe095a25d0e123ddace897820024"
|
|
648
1049
|
},
|
|
649
1050
|
{
|
|
650
|
-
"
|
|
651
|
-
"
|
|
1051
|
+
"id": "schemas/indexer-markdown-provider-validation-input.schema.json",
|
|
1052
|
+
"path": "schemas/indexer-markdown-provider-validation-input.schema.json",
|
|
1053
|
+
"digest": "sha256:151c081969c4235dff06a484072363a7331daf3b853cec24c0ae2bcc304be05d"
|
|
652
1054
|
},
|
|
653
1055
|
{
|
|
654
|
-
"
|
|
655
|
-
"
|
|
1056
|
+
"id": "schemas/indexer-markdown-provider-validation-output.schema.json",
|
|
1057
|
+
"path": "schemas/indexer-markdown-provider-validation-output.schema.json",
|
|
1058
|
+
"digest": "sha256:91f1f8772315337f0351aff66759fb6eaeffbbf493429d2d2c719f08e2572b39"
|
|
656
1059
|
},
|
|
657
1060
|
{
|
|
658
|
-
"
|
|
659
|
-
"
|
|
1061
|
+
"id": "schemas/indexer-material-answer-lifecycle-input.schema.json",
|
|
1062
|
+
"path": "schemas/indexer-material-answer-lifecycle-input.schema.json",
|
|
1063
|
+
"digest": "sha256:c4b0d8aefc5ed5320f4a4ae985c66e4fbf9cb98b38494b1ffe77c412c7b97086"
|
|
660
1064
|
},
|
|
661
1065
|
{
|
|
662
|
-
"
|
|
663
|
-
"
|
|
1066
|
+
"id": "schemas/indexer-material-answer-lifecycle-output.schema.json",
|
|
1067
|
+
"path": "schemas/indexer-material-answer-lifecycle-output.schema.json",
|
|
1068
|
+
"digest": "sha256:18f7e976650a14d65ba783a221a62ba265a3efe23e8e9682c30535eb2e9886af"
|
|
664
1069
|
},
|
|
665
1070
|
{
|
|
666
|
-
"
|
|
667
|
-
"
|
|
1071
|
+
"id": "schemas/indexer-material-answer-review-inspection-input.schema.json",
|
|
1072
|
+
"path": "schemas/indexer-material-answer-review-inspection-input.schema.json",
|
|
1073
|
+
"digest": "sha256:487b8ce606b6063374673ddf71d4da442a7a69d3c7cf8bba90825cbbec7dffa7"
|
|
668
1074
|
},
|
|
669
1075
|
{
|
|
670
|
-
"
|
|
671
|
-
"
|
|
1076
|
+
"id": "schemas/indexer-material-answer-review-inspection-output.schema.json",
|
|
1077
|
+
"path": "schemas/indexer-material-answer-review-inspection-output.schema.json",
|
|
1078
|
+
"digest": "sha256:044ebe461f1e9983d081f3a2deb386e20196b0b0cc00d2d56967105a62d1e352"
|
|
672
1079
|
},
|
|
673
1080
|
{
|
|
674
|
-
"
|
|
675
|
-
"
|
|
1081
|
+
"id": "schemas/indexer-material-answer-review-resolution-input.schema.json",
|
|
1082
|
+
"path": "schemas/indexer-material-answer-review-resolution-input.schema.json",
|
|
1083
|
+
"digest": "sha256:79e0254fcbfeba81f6b76f1979a1fe3745f253acefa061913ec13737d30a1cc7"
|
|
676
1084
|
},
|
|
677
1085
|
{
|
|
678
|
-
"
|
|
679
|
-
"
|
|
1086
|
+
"id": "schemas/indexer-material-answer-review-resolution-output.schema.json",
|
|
1087
|
+
"path": "schemas/indexer-material-answer-review-resolution-output.schema.json",
|
|
1088
|
+
"digest": "sha256:9aa8e922886b999696d43cc0c62b598e0ab0ea50bfc0098a7bfe8c0a0c7b3e1f"
|
|
680
1089
|
},
|
|
681
1090
|
{
|
|
682
|
-
"
|
|
683
|
-
"
|
|
1091
|
+
"id": "schemas/indexer-material-gap-lifecycle-input.schema.json",
|
|
1092
|
+
"path": "schemas/indexer-material-gap-lifecycle-input.schema.json",
|
|
1093
|
+
"digest": "sha256:e49de7c57b90532d52aaa546f0fa8e895860ed7e44fc5a9f0709cf4f0c9c2b02"
|
|
684
1094
|
},
|
|
685
1095
|
{
|
|
686
|
-
"
|
|
687
|
-
"
|
|
1096
|
+
"id": "schemas/indexer-material-gap-lifecycle-output.schema.json",
|
|
1097
|
+
"path": "schemas/indexer-material-gap-lifecycle-output.schema.json",
|
|
1098
|
+
"digest": "sha256:efcf96aeaf51d79d07a6bb71400095517c2583a53a1c71a8f563022a3a7f7846"
|
|
688
1099
|
},
|
|
689
1100
|
{
|
|
690
|
-
"
|
|
691
|
-
"
|
|
1101
|
+
"id": "schemas/indexer-materialize-request.schema.json",
|
|
1102
|
+
"path": "schemas/indexer-materialize-request.schema.json",
|
|
1103
|
+
"digest": "sha256:b13bfc9956eda311afd2f5559e67b3e6f824500f2137af7c8f5cece7aa82c7af"
|
|
692
1104
|
},
|
|
693
1105
|
{
|
|
694
|
-
"
|
|
695
|
-
"
|
|
1106
|
+
"id": "schemas/indexer-materialized-resource.schema.json",
|
|
1107
|
+
"path": "schemas/indexer-materialized-resource.schema.json",
|
|
1108
|
+
"digest": "sha256:a3588569633ac421e8b8a2dc057245481a320159ae91b6020756f0cbe042e34b"
|
|
696
1109
|
},
|
|
697
1110
|
{
|
|
698
|
-
"
|
|
699
|
-
"
|
|
1111
|
+
"id": "schemas/indexer-overlay-question-amendment.schema.json",
|
|
1112
|
+
"path": "schemas/indexer-overlay-question-amendment.schema.json",
|
|
1113
|
+
"digest": "sha256:b3a752514111f43ba695b0569fc7680f23442674e2cc1d87c07442cd25754281"
|
|
700
1114
|
},
|
|
701
1115
|
{
|
|
702
|
-
"
|
|
703
|
-
"
|
|
1116
|
+
"id": "schemas/indexer-overlay-question-proposal-input.schema.json",
|
|
1117
|
+
"path": "schemas/indexer-overlay-question-proposal-input.schema.json",
|
|
1118
|
+
"digest": "sha256:37b989761142536c5bac1cd62151c92156ef70294d3225fa9ba76bad6dba8037"
|
|
704
1119
|
},
|
|
705
1120
|
{
|
|
706
|
-
"
|
|
707
|
-
"
|
|
1121
|
+
"id": "schemas/indexer-overlay-question-rebind-input.schema.json",
|
|
1122
|
+
"path": "schemas/indexer-overlay-question-rebind-input.schema.json",
|
|
1123
|
+
"digest": "sha256:34be2a3397d43fcf4729112c8e63e00c7c76ded06ed64c0391b1406b332bb27b"
|
|
708
1124
|
},
|
|
709
1125
|
{
|
|
710
|
-
"
|
|
711
|
-
"
|
|
1126
|
+
"id": "schemas/indexer-overlay-question-rebind-result.schema.json",
|
|
1127
|
+
"path": "schemas/indexer-overlay-question-rebind-result.schema.json",
|
|
1128
|
+
"digest": "sha256:d2961b0f56dba1cc2695141f82d3f6b31362f48eb9f93e7361fc23da1e200466"
|
|
712
1129
|
},
|
|
713
1130
|
{
|
|
714
|
-
"
|
|
715
|
-
"
|
|
1131
|
+
"id": "schemas/indexer-post-author-fragment-request.schema.json",
|
|
1132
|
+
"path": "schemas/indexer-post-author-fragment-request.schema.json",
|
|
1133
|
+
"digest": "sha256:e8daad85219a68d630673ad2b61269264b15988ba94918aff1dd8bdb0dd1f287"
|
|
716
1134
|
},
|
|
717
1135
|
{
|
|
718
|
-
"
|
|
719
|
-
"
|
|
1136
|
+
"id": "schemas/indexer-post-author-fragment-result.schema.json",
|
|
1137
|
+
"path": "schemas/indexer-post-author-fragment-result.schema.json",
|
|
1138
|
+
"digest": "sha256:06a37616cdb5078374c4a35a992a38bc9583456be1818091283e28df7f164ed3"
|
|
720
1139
|
},
|
|
721
1140
|
{
|
|
722
|
-
"
|
|
723
|
-
"
|
|
1141
|
+
"id": "schemas/indexer-post-author-lifecycle-input.schema.json",
|
|
1142
|
+
"path": "schemas/indexer-post-author-lifecycle-input.schema.json",
|
|
1143
|
+
"digest": "sha256:afce4e1729d9430f3f9f527af11856cbc76a07f91cee06df5efe50d4ea944b0d"
|
|
724
1144
|
},
|
|
725
1145
|
{
|
|
726
|
-
"
|
|
727
|
-
"
|
|
1146
|
+
"id": "schemas/indexer-post-author-lifecycle-output.schema.json",
|
|
1147
|
+
"path": "schemas/indexer-post-author-lifecycle-output.schema.json",
|
|
1148
|
+
"digest": "sha256:e1ae7a6f9bfe0047cf36837ed779a24789ef0c092f259c3b39e0e6c5bf56e1b7"
|
|
728
1149
|
},
|
|
729
1150
|
{
|
|
730
|
-
"
|
|
731
|
-
"
|
|
1151
|
+
"id": "schemas/indexer-profile-failure-inspection-input.schema.json",
|
|
1152
|
+
"path": "schemas/indexer-profile-failure-inspection-input.schema.json",
|
|
1153
|
+
"digest": "sha256:44362552d8837ff6be3325a7dc79092442288ce0153c60de632112956dc0b7ed"
|
|
732
1154
|
},
|
|
733
1155
|
{
|
|
734
|
-
"
|
|
735
|
-
"
|
|
1156
|
+
"id": "schemas/indexer-profile-failure-inspection-result.schema.json",
|
|
1157
|
+
"path": "schemas/indexer-profile-failure-inspection-result.schema.json",
|
|
1158
|
+
"digest": "sha256:39b0ba4e22b3e1c22f3e0898285419c5d3f7b9af2747ba072443c1c96e542f7a"
|
|
736
1159
|
},
|
|
737
1160
|
{
|
|
738
|
-
"
|
|
739
|
-
"
|
|
1161
|
+
"id": "schemas/indexer-profile-failure-report-input.schema.json",
|
|
1162
|
+
"path": "schemas/indexer-profile-failure-report-input.schema.json",
|
|
1163
|
+
"digest": "sha256:c7ab97bd0302a1e1d620f2b8eeab989aff8a340bcb1ae06993c00c2da4406325"
|
|
740
1164
|
},
|
|
741
1165
|
{
|
|
742
|
-
"
|
|
743
|
-
"
|
|
1166
|
+
"id": "schemas/indexer-profile-failure-report-result.schema.json",
|
|
1167
|
+
"path": "schemas/indexer-profile-failure-report-result.schema.json",
|
|
1168
|
+
"digest": "sha256:3c322f5add743d6c56e5ed0ba041fabbe1f8629cb3213342f7949611579f9966"
|
|
744
1169
|
},
|
|
745
1170
|
{
|
|
746
|
-
"
|
|
747
|
-
"
|
|
1171
|
+
"id": "schemas/indexer-profile-override-decision.schema.json",
|
|
1172
|
+
"path": "schemas/indexer-profile-override-decision.schema.json",
|
|
1173
|
+
"digest": "sha256:3163bbf23104cd7dc8d63ae864d6e0dce5d956e16f995720ce292b11b3605958"
|
|
748
1174
|
},
|
|
749
1175
|
{
|
|
750
|
-
"
|
|
751
|
-
"
|
|
1176
|
+
"id": "schemas/indexer-profile-override-result.schema.json",
|
|
1177
|
+
"path": "schemas/indexer-profile-override-result.schema.json",
|
|
1178
|
+
"digest": "sha256:5ca7c399a73d0f0e0cb35ea1948e94d8a6f46e9533987543b5b23ef3cb0a2b1b"
|
|
752
1179
|
},
|
|
753
1180
|
{
|
|
754
|
-
"
|
|
755
|
-
"
|
|
1181
|
+
"id": "schemas/indexer-profile-revision-agent-input.schema.json",
|
|
1182
|
+
"path": "schemas/indexer-profile-revision-agent-input.schema.json",
|
|
1183
|
+
"digest": "sha256:30983189eeae396483d5e36511400a5206da1cdfbfb20a145668e2f542ef17e9"
|
|
756
1184
|
},
|
|
757
1185
|
{
|
|
758
|
-
"
|
|
759
|
-
"
|
|
1186
|
+
"id": "schemas/indexer-profile-revision-record-input.schema.json",
|
|
1187
|
+
"path": "schemas/indexer-profile-revision-record-input.schema.json",
|
|
1188
|
+
"digest": "sha256:e2e8cff4870a2563a3492367397a69486b7c4c4f6a74f26df6e2915ef4fc1313"
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"id": "schemas/indexer-profile-revision-record-result.schema.json",
|
|
1192
|
+
"path": "schemas/indexer-profile-revision-record-result.schema.json",
|
|
1193
|
+
"digest": "sha256:284c764593db89f9d7318f90d0e368e03d9282fae678b7f0f417404de8da4f45"
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"id": "schemas/indexer-program-execution-authorization-input.schema.json",
|
|
1197
|
+
"path": "schemas/indexer-program-execution-authorization-input.schema.json",
|
|
1198
|
+
"digest": "sha256:ea8be492a994f1dfb39e166977d8ccc7c4fa6df0f6e0504585bfdefe705c1e1d"
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
"id": "schemas/indexer-program-execution-authorization-result.schema.json",
|
|
1202
|
+
"path": "schemas/indexer-program-execution-authorization-result.schema.json",
|
|
1203
|
+
"digest": "sha256:427d292b80c1bdb670a2835357c832c59e94b919a755f0fcc879fa32f13ad089"
|
|
1204
|
+
},
|
|
1205
|
+
{
|
|
1206
|
+
"id": "schemas/indexer-project-action-result.schema.json",
|
|
1207
|
+
"path": "schemas/indexer-project-action-result.schema.json",
|
|
1208
|
+
"digest": "sha256:ee12714a76a1651ed1670d672526bdd475b54a3bbf70288153ca5dabb82f24c5"
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
"id": "schemas/indexer-project-gate-input.schema.json",
|
|
1212
|
+
"path": "schemas/indexer-project-gate-input.schema.json",
|
|
1213
|
+
"digest": "sha256:15861043b84e36a0b256d6dcf9916fe921dad050172c35c4eb99b5c116f6b992"
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
"id": "schemas/indexer-project-observation-input.schema.json",
|
|
1217
|
+
"path": "schemas/indexer-project-observation-input.schema.json",
|
|
1218
|
+
"digest": "sha256:2fd9eb7f64e27fbe2cf25606913ab0535265dcda4326c6bef23774c67b15b5bf"
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
"id": "schemas/indexer-project-observation-result.schema.json",
|
|
1222
|
+
"path": "schemas/indexer-project-observation-result.schema.json",
|
|
1223
|
+
"digest": "sha256:47d6597b1fa7b94c56670bdffa780f894c4a2a523c2d029e68f97c55cc70a3ef"
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
"id": "schemas/indexer-provider-route-input.schema.json",
|
|
1227
|
+
"path": "schemas/indexer-provider-route-input.schema.json",
|
|
1228
|
+
"digest": "sha256:fedba7614728a3ebaa3772674b3625af12512a7470f86cb2fae7d8cc0c663e83"
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
"id": "schemas/indexer-provider-route-report.schema.json",
|
|
1232
|
+
"path": "schemas/indexer-provider-route-report.schema.json",
|
|
1233
|
+
"digest": "sha256:00476bf6bbf4dbb3bfbdd1f7fc6f416a845d7c7ec079b089fd52584290c084db"
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"id": "schemas/indexer-requirement-confirmation-input.schema.json",
|
|
1237
|
+
"path": "schemas/indexer-requirement-confirmation-input.schema.json",
|
|
1238
|
+
"digest": "sha256:b211f78bff8ca25d3f6cb73ca735a06789701464c34913ec67fc161db3af577b"
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"id": "schemas/indexer-requirement-confirmation-output.schema.json",
|
|
1242
|
+
"path": "schemas/indexer-requirement-confirmation-output.schema.json",
|
|
1243
|
+
"digest": "sha256:cd202627606a89b94c6cbf557e17721a3b472f32e2620ea3d60c9f157d2028ef"
|
|
1244
|
+
},
|
|
1245
|
+
{
|
|
1246
|
+
"id": "schemas/indexer-result-reconciliation-input.schema.json",
|
|
1247
|
+
"path": "schemas/indexer-result-reconciliation-input.schema.json",
|
|
1248
|
+
"digest": "sha256:48671f7e107dc6e0be8baa27a9816eae9eaeb19b1e9ecdc63120e11e884cfa4c"
|
|
1249
|
+
},
|
|
1250
|
+
{
|
|
1251
|
+
"id": "schemas/indexer-result-reconciliation-output.schema.json",
|
|
1252
|
+
"path": "schemas/indexer-result-reconciliation-output.schema.json",
|
|
1253
|
+
"digest": "sha256:6c06c833a862d23dbcb7024e1fbb57c134d1d62c8ad961cc8560f176e36b73f8"
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"id": "schemas/indexer-selection-proposal-input.schema.json",
|
|
1257
|
+
"path": "schemas/indexer-selection-proposal-input.schema.json",
|
|
1258
|
+
"digest": "sha256:de25b302dff137151d11651201482fc1c70218e48c4e84f474fe8c8324145b80"
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
"id": "schemas/indexer-selection-proposal-validation.schema.json",
|
|
1262
|
+
"path": "schemas/indexer-selection-proposal-validation.schema.json",
|
|
1263
|
+
"digest": "sha256:eca4fae78a526aa7018411dd1853ecac0371ae8fa30ebef6423ce44fcbd55594"
|
|
1264
|
+
},
|
|
1265
|
+
{
|
|
1266
|
+
"id": "schemas/indexer-subject-reidentification-input.schema.json",
|
|
1267
|
+
"path": "schemas/indexer-subject-reidentification-input.schema.json",
|
|
1268
|
+
"digest": "sha256:cd3c0ded9115e6e355e9c6e34faed702c49553c089d545e7e2d24b08736cf140"
|
|
1269
|
+
},
|
|
1270
|
+
{
|
|
1271
|
+
"id": "schemas/indexer-subject-reidentification-output.schema.json",
|
|
1272
|
+
"path": "schemas/indexer-subject-reidentification-output.schema.json",
|
|
1273
|
+
"digest": "sha256:78c3f14147f959914f8122b4f749e7a081f48d4b9297e2f2435ef83b2c5307d3"
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
"id": "schemas/prose-structure-batch.schema.json",
|
|
1277
|
+
"path": "schemas/prose-structure-batch.schema.json",
|
|
1278
|
+
"digest": "sha256:fc4ebbb5ee81ae77238cd60350ebac16f55e8a5adf3f5f5db411040474e01842"
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"id": "schemas/repository-source-recovery.schema.json",
|
|
1282
|
+
"path": "schemas/repository-source-recovery.schema.json",
|
|
1283
|
+
"digest": "sha256:589aea722965d81c9291232346bfc1d90ea04a94913d8ab7e3461e5a92746c56"
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
"id": "schemas/source-batch-input.schema.json",
|
|
1287
|
+
"path": "schemas/source-batch-input.schema.json",
|
|
1288
|
+
"digest": "sha256:0788501d70073a93c9d6d652bc85d806ea2e71abb2e9cfb6ad70e566e2675abf"
|
|
1289
|
+
}
|
|
1290
|
+
],
|
|
1291
|
+
"files": [
|
|
1292
|
+
{
|
|
1293
|
+
"path": "actions/accept-main-index-run.yaml",
|
|
1294
|
+
"digest": "sha256:d4e9843c0763665318092b6097bf7a2eb53ab71bb3f75093ea3a16b8ceb35e22"
|
|
1295
|
+
},
|
|
1296
|
+
{
|
|
1297
|
+
"path": "actions/accept-material-answer-run.yaml",
|
|
1298
|
+
"digest": "sha256:aceb10a93b98798390a4a6ca146a7e396d587d1b5b8810917882883120c27996"
|
|
1299
|
+
},
|
|
1300
|
+
{
|
|
1301
|
+
"path": "actions/accept-package-templates.yaml",
|
|
1302
|
+
"digest": "sha256:e3de218f2dc37c9d3ab9546e408598c7b320f7151e8c520a00770919088a6a66"
|
|
1303
|
+
},
|
|
1304
|
+
{
|
|
1305
|
+
"path": "actions/accept-post-author-composer-run.yaml",
|
|
1306
|
+
"digest": "sha256:7fe28e5e2a11f0f7b994b6432d2a26df06d5e79d0ea5791eb1ea9b57655eafd9"
|
|
1307
|
+
},
|
|
1308
|
+
{
|
|
1309
|
+
"path": "actions/actualize-material-answer-bindings.yaml",
|
|
1310
|
+
"digest": "sha256:5d641922c4c68147e90d70f46d33579519aab7ea0b6d26ff927894b15e3974f6"
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"path": "actions/align-next.yaml",
|
|
1314
|
+
"digest": "sha256:8f2a7203d5b631c0b1e6cc14d4d70acbf8ac0197b3cfd19fa3111212ffb47498"
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
"path": "actions/apply-code-index-guidance.yaml",
|
|
1318
|
+
"digest": "sha256:42dd7e82813d31421078cb977e125ffae1ec219f9512a0e3ac32f1d2aff8041a"
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
"path": "actions/apply-document-optimization-guidance.yaml",
|
|
1322
|
+
"digest": "sha256:80d906a1056bab6d2259bd46fba70fd6d5b736f538f7e706c7205709f63c93dd"
|
|
1323
|
+
},
|
|
1324
|
+
{
|
|
1325
|
+
"path": "actions/apply-forced-review.yaml",
|
|
1326
|
+
"digest": "sha256:ed530819831b68824bd373dec399c73a30d7eeebd2ef72ae0eab3e7a60cad80f"
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
"path": "actions/apply-indexer-project.yaml",
|
|
1330
|
+
"digest": "sha256:451e904a8251a7d3c3b5daf5cf9d3e35fc7975e51394d45bd2211a526cd36c68"
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"path": "actions/apply-managed-review.yaml",
|
|
1334
|
+
"digest": "sha256:25e2c2c215889dd13a6dec8714bc2b6357f3e01b09cc684f1e82d986e30ef064"
|
|
1335
|
+
},
|
|
1336
|
+
{
|
|
1337
|
+
"path": "actions/apply-structure-confirmation.yaml",
|
|
1338
|
+
"digest": "sha256:2d5acf97ca692d324c829b25e020708b0d5fcd7ee004b7fd2be625a197dc77c3"
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
"path": "actions/audit-material-gap-state.yaml",
|
|
1342
|
+
"digest": "sha256:d2346aed317c51eed5c0b24d166359d320b329fe7d348b7bf8b637c6c8edc00b"
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
"path": "actions/audit-projected-artifact-fan-out.yaml",
|
|
1346
|
+
"digest": "sha256:472e61994a2acadac2da4782292b49567f094d6b2899a3d5f48737332c4523f1"
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
"path": "actions/authorize-indexer-contract-overlay.yaml",
|
|
1350
|
+
"digest": "sha256:42b37e101ebc44d193c9c914fe761598ecb566c47ffb85d81f7f581ea2041b86"
|
|
1351
|
+
},
|
|
1352
|
+
{
|
|
1353
|
+
"path": "actions/authorize-indexer-dependencies.yaml",
|
|
1354
|
+
"digest": "sha256:101e3025bcdbbbba5022dd975d3840bb362a7d806afcc18e6fd9c51894905d10"
|
|
1355
|
+
},
|
|
1356
|
+
{
|
|
1357
|
+
"path": "actions/authorize-indexer-program-execution.yaml",
|
|
1358
|
+
"digest": "sha256:95278fbf41dc311151d1d0bad8727fd07390eee740b69e3c08831306466dea94"
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
"path": "actions/build-main-index-author-worksets.yaml",
|
|
1362
|
+
"digest": "sha256:bb24a48cab5d4ac6f3109a70000bf81d30b1e9e83f595bb6ac892c3d2e1dec54"
|
|
1363
|
+
},
|
|
1364
|
+
{
|
|
1365
|
+
"path": "actions/build-main-index-catalog-fallback.yaml",
|
|
1366
|
+
"digest": "sha256:4063dada12583595c9ff1183a50b0d84f9131bc0c280e1e6082efa046dedbf75"
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
"path": "actions/build-main-index-partition-worksets.yaml",
|
|
1370
|
+
"digest": "sha256:b3a0a71925b84f3d20eb4cef9608de215cc2d600749b9bd30f9a42d6b2468d07"
|
|
1371
|
+
},
|
|
1372
|
+
{
|
|
1373
|
+
"path": "actions/build-material-question-workset.yaml",
|
|
1374
|
+
"digest": "sha256:859ece19215833777ca530b468e745d1910e6ef1bdfb12a6d40659390378069a"
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
"path": "actions/build-next.yaml",
|
|
1378
|
+
"digest": "sha256:a5b8bb7162f14e0cf3056dd1a3e9da05fe45f7b61fcf0aa07f52ca7274256e44"
|
|
1379
|
+
},
|
|
1380
|
+
{
|
|
1381
|
+
"path": "actions/build-post-author-composer-worksets.yaml",
|
|
1382
|
+
"digest": "sha256:94c448df97e05f0cc3210182e4d5b21035a400bc0679cdeb74329af0d77d0870"
|
|
1383
|
+
},
|
|
1384
|
+
{
|
|
1385
|
+
"path": "actions/build-question-target-inventory.yaml",
|
|
1386
|
+
"digest": "sha256:a460629e8a675a28d5673a352fab5b5f77b67e4fc78a3d5dd4877d63b79b096a"
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
"path": "actions/build-subject-catalog.yaml",
|
|
1390
|
+
"digest": "sha256:5b4d9e34dcae6dc6471f5a46e252ee284a2c210f55e0015e6134086eed80cecc"
|
|
1391
|
+
},
|
|
1392
|
+
{
|
|
1393
|
+
"path": "actions/build-target-resolution-views.yaml",
|
|
1394
|
+
"digest": "sha256:e20d2c7d6b3114581b511f3471f0da56d0edf2c541e4632550b5a921b1c72e8f"
|
|
1395
|
+
},
|
|
1396
|
+
{
|
|
1397
|
+
"path": "actions/capture-next.yaml",
|
|
1398
|
+
"digest": "sha256:409a091eb771d5087408832539a50cb7b6f0c0d25dd47257798df49f5d8b6fc3"
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
"path": "actions/checkpoint-material-answer-review.yaml",
|
|
1402
|
+
"digest": "sha256:ebea7d1dd957a0798b02dbd14dc8ee0a8c0a31407c864fe41dc4706954aa48a4"
|
|
1403
|
+
},
|
|
1404
|
+
{
|
|
1405
|
+
"path": "actions/checkpoint-material-gaps.yaml",
|
|
1406
|
+
"digest": "sha256:33e825a38c86ee56eb9f15caa4af74d334868203ff1083b1f4687dbeb4c3d748"
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
"path": "actions/close-approved-knowledge.yaml",
|
|
1410
|
+
"digest": "sha256:8ef2c1ca0856042b5587e08a324721902fcb61578749f54e5c043440b71f09da"
|
|
1411
|
+
},
|
|
1412
|
+
{
|
|
1413
|
+
"path": "actions/close-indexer-approved-knowledge.yaml",
|
|
1414
|
+
"digest": "sha256:5226e523c44a1f0a6b81bbc26ea53a59f399ccc1695b483649d3cc84d74d752e"
|
|
1415
|
+
},
|
|
1416
|
+
{
|
|
1417
|
+
"path": "actions/compile-indexer-candidates.yaml",
|
|
1418
|
+
"digest": "sha256:e3821f2b67376d844501bae335d33970e36b81a3acc249a9e4834b10b573575e"
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
"path": "actions/compile-next.yaml",
|
|
1422
|
+
"digest": "sha256:e0fec702b2e77b4425c90ad47813fe2e9a6a007013d983b5e51243eb0c61433e"
|
|
1423
|
+
},
|
|
1424
|
+
{
|
|
1425
|
+
"path": "actions/compose-indexer-post-author-fragments.yaml",
|
|
1426
|
+
"digest": "sha256:e656e684436c43a10982e99885e3978d02991ac3efe13e1a45954a2f20d8aa08"
|
|
1427
|
+
},
|
|
1428
|
+
{
|
|
1429
|
+
"path": "actions/configure-code-extraction.yaml",
|
|
1430
|
+
"digest": "sha256:db83bf8d71f4bd1869d023b96bb095fbe206018125a528478693920ba9e2ffe3"
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
"path": "actions/configure-community-indexer-fallback.yaml",
|
|
1434
|
+
"digest": "sha256:a684e957a604f57a3be3201e280b489a6c6275e0dbbd0a614f96ce18e7eaeea8"
|
|
1435
|
+
},
|
|
1436
|
+
{
|
|
1437
|
+
"path": "actions/configure-document-capture.yaml",
|
|
1438
|
+
"digest": "sha256:c5955af91692dd8e46b519aba8eec56a6a0dab58c1639f2ff42f746daf558f1d"
|
|
1439
|
+
},
|
|
1440
|
+
{
|
|
1441
|
+
"path": "actions/configure-indexer-providers.yaml",
|
|
1442
|
+
"digest": "sha256:00ccd8ee6e6d6aa0ea2429d6c833ca097e0d22aa21b0df95e6739e8416fc4888"
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
"path": "actions/configure-package-output.yaml",
|
|
1446
|
+
"digest": "sha256:2f5a682988ce3f32c53cf5131c36cf88e62332e8f27d5daaa0dedfb6e687b55a"
|
|
1447
|
+
},
|
|
1448
|
+
{
|
|
1449
|
+
"path": "actions/configure-prose-lifecycle.yaml",
|
|
1450
|
+
"digest": "sha256:226d20be637455b3ffba4a115dd0437d3330354d8a73b8e5313b3af303d53bcc"
|
|
1451
|
+
},
|
|
1452
|
+
{
|
|
1453
|
+
"path": "actions/confirm-index-requirement-workset.yaml",
|
|
1454
|
+
"digest": "sha256:b46f5209bd60846d69efa2697facb03be92a37749e89fada4b7f0d9d87800b4e"
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
"path": "actions/confirm-subject-reidentification.yaml",
|
|
1458
|
+
"digest": "sha256:60afb798d37641202e10d0dd4ee7d4e7ecb0af7a085484b96264da20fa9853ef"
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
"path": "actions/converge-main-index-partition-run.yaml",
|
|
1462
|
+
"digest": "sha256:edf4dc5271dd0d9052cace776cc11532ca7f9d6526dd40c5eca76110cb976a8d"
|
|
1463
|
+
},
|
|
1464
|
+
{
|
|
1465
|
+
"path": "actions/discover-markdown-indexer-providers.yaml",
|
|
1466
|
+
"digest": "sha256:ade21b433c3f0f5abd1940f9227f1184875e08be70298dcb041715f9be4c81b2"
|
|
1467
|
+
},
|
|
1468
|
+
{
|
|
1469
|
+
"path": "actions/evaluate-material-gaps.yaml",
|
|
1470
|
+
"digest": "sha256:91f31dc5f74725bb929e5844db4ab6813b1ad6c8a94d48518bed3a25b796299d"
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
"path": "actions/extract-next.yaml",
|
|
1474
|
+
"digest": "sha256:3d5e26cbdd912c9be666ce423b19456b31ab67da53c4e01a1a1c7a3dc1e6420a"
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
"path": "actions/fail-main-index-run.yaml",
|
|
1478
|
+
"digest": "sha256:b73dd9bd22188f9e846efa8ea781fdee2566c1a7b9cf7204662f5fde72fa77d1"
|
|
1479
|
+
},
|
|
1480
|
+
{
|
|
1481
|
+
"path": "actions/fail-material-answer-run.yaml",
|
|
1482
|
+
"digest": "sha256:76cb54c8e1dae187e3e889d958e59e1cc368e7267e0c435875b9fe1df2d89f70"
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
"path": "actions/fail-post-author-composer-run.yaml",
|
|
1486
|
+
"digest": "sha256:26c35ebdfca9a4da92c1af0d7d22a1577594077fe254fef825b976639ca491d7"
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
"path": "actions/flush-runtime-events.yaml",
|
|
1490
|
+
"digest": "sha256:a5f29f652fc9f5f3775fdf9aad0af837f8c72879a22c11074321923bda49b45a"
|
|
1491
|
+
},
|
|
1492
|
+
{
|
|
1493
|
+
"path": "actions/inspect-code-extraction.yaml",
|
|
1494
|
+
"digest": "sha256:214cf9b0f9645ec7164a779ab5779ccf5b3e3132b10f8f9f666213d048f582b1"
|
|
1495
|
+
},
|
|
1496
|
+
{
|
|
1497
|
+
"path": "actions/inspect-document-classification.yaml",
|
|
1498
|
+
"digest": "sha256:973889832e3adfba4fa019b3dfadda35fe22536c44ef97efba2299e6cdd65786"
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
"path": "actions/inspect-index-candidate-review-readiness.yaml",
|
|
1502
|
+
"digest": "sha256:e798248995a46b3662481143898cec63ae3030c7c8c8ebdeb66a02300c39f83a"
|
|
1503
|
+
},
|
|
1504
|
+
{
|
|
1505
|
+
"path": "actions/inspect-index-profile-failure.yaml",
|
|
1506
|
+
"digest": "sha256:f5b7eba151f2df106e894b362ef171bb14adb8ac29ba34b68847865dd864d22c"
|
|
1507
|
+
},
|
|
1508
|
+
{
|
|
1509
|
+
"path": "actions/inspect-indexer-dependencies.yaml",
|
|
1510
|
+
"digest": "sha256:5561937c8ac2e701dd45186881d85b9bfae1ef514e47c777aaf59cbf4859eb7c"
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
"path": "actions/inspect-indexer-program-execution.yaml",
|
|
1514
|
+
"digest": "sha256:97c748e203302a179f535767a4dd05c79d8bfd346175064d46297f8afabd0640"
|
|
1515
|
+
},
|
|
1516
|
+
{
|
|
1517
|
+
"path": "actions/inspect-indexer-project-proposal.yaml",
|
|
1518
|
+
"digest": "sha256:c316afdc4fd13f273961fca69addf18bb971efd03601cddd532d58d12c43226e"
|
|
1519
|
+
},
|
|
1520
|
+
{
|
|
1521
|
+
"path": "actions/inspect-markdown-provider-capture.yaml",
|
|
1522
|
+
"digest": "sha256:3dd8631da8cb01f24dfe9db2c539e0d523bf77032006856b21a321aa81891d46"
|
|
1523
|
+
},
|
|
1524
|
+
{
|
|
1525
|
+
"path": "actions/inspect-material-answer-review.yaml",
|
|
1526
|
+
"digest": "sha256:86b88755089150753761e0efd73f118f7ade34b8388199f55ee7197923fa9c77"
|
|
1527
|
+
},
|
|
1528
|
+
{
|
|
1529
|
+
"path": "actions/inspect-repository-recovery.yaml",
|
|
1530
|
+
"digest": "sha256:6890fc2fb95823753beb7684066ddaac0b02e377c5fe3f568ac75286e00c9e88"
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
"path": "actions/inspect-review.yaml",
|
|
1534
|
+
"digest": "sha256:79ab3605a3b17d227f4c3ae4d207634884e1422c4bb07fc275e98c2bb296f140"
|
|
1535
|
+
},
|
|
1536
|
+
{
|
|
1537
|
+
"path": "actions/inspect-structure.yaml",
|
|
1538
|
+
"digest": "sha256:ee55f4dbf4d2ee4a0e5937cdc118430580d6746ab6c1a8ac9249675cb889ca4c"
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
"path": "actions/maintain-evidence.yaml",
|
|
1542
|
+
"digest": "sha256:aad5a46717dada265d01caa9f6c872ffe9428b18e7b04450a506966574448aa5"
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
"path": "actions/materialize-context-view.yaml",
|
|
1546
|
+
"digest": "sha256:0ed6b73b6a31324575fd10fb8f2067c8381609ab272a031b326080506105d115"
|
|
1547
|
+
},
|
|
1548
|
+
{
|
|
1549
|
+
"path": "actions/materialize-indexer-instructions.yaml",
|
|
1550
|
+
"digest": "sha256:6da47c03bd482b5b0170508b1ddc9e2d0998acff8ea08b0768dbbc3d2386926f"
|
|
1551
|
+
},
|
|
1552
|
+
{
|
|
1553
|
+
"path": "actions/migrate-codeindex.yaml",
|
|
1554
|
+
"digest": "sha256:984316fa010f8ce570b4c9c3db8945e0e80f7a1dfb48c3db5ba3a1bcf6383a9a"
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
"path": "actions/observe-indexer-project.yaml",
|
|
1558
|
+
"digest": "sha256:0365519d1db7d6d6292a642f6357b409afae2025a3332024e4173d52d7ebaece"
|
|
1559
|
+
},
|
|
1560
|
+
{
|
|
1561
|
+
"path": "actions/observe-main-index-run-ledger.yaml",
|
|
1562
|
+
"digest": "sha256:c420be99b95acbe7c4b0587292c3423930d4702dd4d769336731e1db3c9c0dcc"
|
|
1563
|
+
},
|
|
1564
|
+
{
|
|
1565
|
+
"path": "actions/observe-material-answer-runs.yaml",
|
|
1566
|
+
"digest": "sha256:5e8da86a57b7a3859e32a894b89861c533f4e2961f46451374ac2252519ce40a"
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
"path": "actions/observe-post-author-composer-worksets.yaml",
|
|
1570
|
+
"digest": "sha256:ee3757049541d4add6bb8ca3a3e69b388189b49eb6aa7b417ba988b198a7d1fa"
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
"path": "actions/optimize-documents.yaml",
|
|
1574
|
+
"digest": "sha256:5fdd18379742c20af19e8a92e2591dd85270fa4a6af5d0adea6430b43049bebb"
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
"path": "actions/override-index-profile-audit.yaml",
|
|
1578
|
+
"digest": "sha256:4ef12f402e86b88e63aeff4848d6e508e2d839b3ec5abe0e341a7ca5cf1cd5ea"
|
|
1579
|
+
},
|
|
1580
|
+
{
|
|
1581
|
+
"path": "actions/prepare-indexer-customization-project.yaml",
|
|
1582
|
+
"digest": "sha256:134b04cb53d2d6f06ffe651ea0b9fd4f523243e01de7a73385a692c7ea521635"
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
"path": "actions/prepare-main-index-run-ledger.yaml",
|
|
1586
|
+
"digest": "sha256:02571e4b34e3e25212a273ac8ac573baca760f99c356e4a2dfdd167ec7ff0681"
|
|
1587
|
+
},
|
|
1588
|
+
{
|
|
1589
|
+
"path": "actions/prepare-material-answer-runs.yaml",
|
|
1590
|
+
"digest": "sha256:fc3a7bb385bf9a0a24d56e91387f2bdb61add0af597126f890edc733a9b59cd1"
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
"path": "actions/preview-extraction-batch.yaml",
|
|
1594
|
+
"digest": "sha256:45e6d8c60a56fde6f1049193b12b708da86a8a67a65b0b1f7cb6034faec44c57"
|
|
1595
|
+
},
|
|
1596
|
+
{
|
|
1597
|
+
"path": "actions/propose-indexer-customization.yaml",
|
|
1598
|
+
"digest": "sha256:07d1842805d62f5a8a9cef36c602ceee0876c91338493caa61ba3080ccad9bfa"
|
|
1599
|
+
},
|
|
1600
|
+
{
|
|
1601
|
+
"path": "actions/propose-overlay-question-amendment.yaml",
|
|
1602
|
+
"digest": "sha256:cf3ad2a7d0c77ab30de97059a69b3008e6efd1a6fac0ecf01ab199a167bbf37d"
|
|
1603
|
+
},
|
|
1604
|
+
{
|
|
1605
|
+
"path": "actions/rebind-indexer-selection-to-requirement.yaml",
|
|
1606
|
+
"digest": "sha256:620e75b2c328df1cee0608fe7fc5d5abfaa0522d676339cee3382ca377347990"
|
|
1607
|
+
},
|
|
1608
|
+
{
|
|
1609
|
+
"path": "actions/reconcile-indexer-results.yaml",
|
|
1610
|
+
"digest": "sha256:6121f000167ce9b1672268da098fea43a461e0c0421176ddccc9c926640d087b"
|
|
1611
|
+
},
|
|
1612
|
+
{
|
|
1613
|
+
"path": "actions/reconcile-review-identities.yaml",
|
|
1614
|
+
"digest": "sha256:aac95cc46ab8a872bdd1cc53cf64e3bbde8cf8dc2d6e9ac2da82bb378fcfe09a"
|
|
1615
|
+
},
|
|
1616
|
+
{
|
|
1617
|
+
"path": "actions/record-index-profile-revision.yaml",
|
|
1618
|
+
"digest": "sha256:aed060f49baad6ccb5ef9d088d96cb3f3567f511c8465cb7d19512d9b8830698"
|
|
1619
|
+
},
|
|
1620
|
+
{
|
|
1621
|
+
"path": "actions/register-source-batch.yaml",
|
|
1622
|
+
"digest": "sha256:506cd677d79363035040b83c30f3444e9d41a886e9532023db6b8a17444ad951"
|
|
1623
|
+
},
|
|
1624
|
+
{
|
|
1625
|
+
"path": "actions/repair-project-entry.yaml",
|
|
1626
|
+
"digest": "sha256:7850eea903cfb5d5f17078cc79f790325eed75f07cd7e40ef91add1ee87ed9cd"
|
|
1627
|
+
},
|
|
1628
|
+
{
|
|
1629
|
+
"path": "actions/repair-verification.yaml",
|
|
1630
|
+
"digest": "sha256:835789670d5a3ee0b140820c79a26b925b8df374a4a93f598055dfcb06498cc7"
|
|
1631
|
+
},
|
|
1632
|
+
{
|
|
1633
|
+
"path": "actions/repair-workspace-state.yaml",
|
|
1634
|
+
"digest": "sha256:67296adf5336a7f746e250dc23676972282f88410fb6a6edc41a929e15d1856b"
|
|
1635
|
+
},
|
|
1636
|
+
{
|
|
1637
|
+
"path": "actions/report-index-profile-failure.yaml",
|
|
1638
|
+
"digest": "sha256:ff4c0b73c76f9b074efe8f211f92a823bc35829c91a177adbde92679f50a7b0f"
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
"path": "actions/report-indexer-incremental-impact.yaml",
|
|
1642
|
+
"digest": "sha256:74bbbfde59ee2561ca0d1ca966c79f9df374b1bfe79d7e8174012d4ff2a6d13c"
|
|
1643
|
+
},
|
|
1644
|
+
{
|
|
1645
|
+
"path": "actions/resolve-effective-composers.yaml",
|
|
1646
|
+
"digest": "sha256:46877f18d49466675a5f758a7eea6608dca8d68c01bf4a8a75ca22acae6f7adb"
|
|
1647
|
+
},
|
|
1648
|
+
{
|
|
1649
|
+
"path": "actions/restore-repository-sources.yaml",
|
|
1650
|
+
"digest": "sha256:58e40ee93d6bd1a9fe11d208fe771b576f8c5ceb05105d3e92a9aecc6b4a7fd8"
|
|
1651
|
+
},
|
|
1652
|
+
{
|
|
1653
|
+
"path": "actions/review-material-answer-candidate.yaml",
|
|
1654
|
+
"digest": "sha256:b83a407a4ada68abffdf5b2ec04ab60cab274db477ac1fedd4b88f944795be8f"
|
|
1655
|
+
},
|
|
1656
|
+
{
|
|
1657
|
+
"path": "actions/revise-code-index-audit.yaml",
|
|
1658
|
+
"digest": "sha256:0ea9c41b2b698bf3a779381b42d6cd9b7eb9d54718498f3b2875eab4c23a76f6"
|
|
1659
|
+
},
|
|
1660
|
+
{
|
|
1661
|
+
"path": "actions/revise-document.yaml",
|
|
1662
|
+
"digest": "sha256:605d3808670582da69881c9a2eb8b0de21b42fbdd04c1d04a8fa93513989a08e"
|
|
1663
|
+
},
|
|
1664
|
+
{
|
|
1665
|
+
"path": "actions/revise-index-output.yaml",
|
|
1666
|
+
"digest": "sha256:af126714a12ae57ed9536c89b04bd991644fd341d9911d1b38295ae7b9eab9ab"
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
"path": "actions/route-index-requirement-confirmation.yaml",
|
|
1670
|
+
"digest": "sha256:fb69e4931e8f310eead241f7ba468b19c245ac6709967674c3cff2120ae65c98"
|
|
1671
|
+
},
|
|
1672
|
+
{
|
|
1673
|
+
"path": "actions/route-indexer-provider-selection.yaml",
|
|
1674
|
+
"digest": "sha256:e3b88a1afb975c955f27c9e340dc4a5c78fc11a78190d603c9afb94eefcee29c"
|
|
1675
|
+
},
|
|
1676
|
+
{
|
|
1677
|
+
"path": "actions/run-indexer-agent-step.yaml",
|
|
1678
|
+
"digest": "sha256:1223b17c9e3ce35b584df82118b7048d470c6226abaf522dd84d8c797935b7e9"
|
|
1679
|
+
},
|
|
1680
|
+
{
|
|
1681
|
+
"path": "actions/run-indexer-post-author-composer.yaml",
|
|
1682
|
+
"digest": "sha256:3ba76d84e3cbc7614fccebcb609a71b0dc1ba3849d0e77537286f16a6227991a"
|
|
1683
|
+
},
|
|
1684
|
+
{
|
|
1685
|
+
"path": "actions/run-material-answer-indexers.yaml",
|
|
1686
|
+
"digest": "sha256:6f1a9ec0563aa6a5202a0f6d9db1f4874340e58ea9284adcad5fe6d4b3e2157c"
|
|
1687
|
+
},
|
|
1688
|
+
{
|
|
1689
|
+
"path": "actions/start-main-index-run.yaml",
|
|
1690
|
+
"digest": "sha256:cb840b3eac3b042641d3797a4a2aba447a9ecae5d3999454b3777c8ec4572e03"
|
|
1691
|
+
},
|
|
1692
|
+
{
|
|
1693
|
+
"path": "actions/start-material-answer-run.yaml",
|
|
1694
|
+
"digest": "sha256:ef3b42d7e148c046442ae3dfa3028656abfcbbf66a294fe833ba85cd9d8468e6"
|
|
1695
|
+
},
|
|
1696
|
+
{
|
|
1697
|
+
"path": "actions/start-post-author-composer-run.yaml",
|
|
1698
|
+
"digest": "sha256:8f97cd69b198c21ef27a2d151f7b2111e363b5d664f118dc663145acb19a34ea"
|
|
1699
|
+
},
|
|
1700
|
+
{
|
|
1701
|
+
"path": "actions/submit-code-index-audit.yaml",
|
|
1702
|
+
"digest": "sha256:30ecc7cf9fcae232f9d3075d4410f5753c599bee148e06bf08afe4c219bb45c4"
|
|
1703
|
+
},
|
|
1704
|
+
{
|
|
1705
|
+
"path": "actions/validate-indexer-contract-overlays.yaml",
|
|
1706
|
+
"digest": "sha256:e9ecc7edc82dd37e7f3a2d07ac8f057404d2fca8a3b2d59a83a7e42b598014ef"
|
|
1707
|
+
},
|
|
1708
|
+
{
|
|
1709
|
+
"path": "actions/validate-indexer-customization.yaml",
|
|
1710
|
+
"digest": "sha256:d6ece3ece4c22724eb9b816f231da96d62c7ce71da0045f23531e5cc99236889"
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
"path": "actions/validate-indexer-selection-proposal.yaml",
|
|
1714
|
+
"digest": "sha256:14aea733499a9adb736df5ef83a6b013c0bca1ca912e16994bbff30939360652"
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
"path": "actions/validate-main-index-run.yaml",
|
|
1718
|
+
"digest": "sha256:de7cecd69c93d7d37dad0896134cdf8abe1f514e2101713828fe4ff865db351e"
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
"path": "actions/validate-markdown-provider-selection.yaml",
|
|
1722
|
+
"digest": "sha256:aecb03ef1d05f8c71dde80ff8e2423b40885bd68c089b9cb55b4a8490cc9977b"
|
|
1723
|
+
},
|
|
1724
|
+
{
|
|
1725
|
+
"path": "actions/validate-subject-key-schemas.yaml",
|
|
1726
|
+
"digest": "sha256:90052a8b0a025c5517f76e9000abe8cf02674f784d70e82883b2f2140d7e1a85"
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
"path": "codes.yaml",
|
|
1730
|
+
"digest": "sha256:e6c81dd0426d5069ef5e16bea3dc44974ab9ccc31c41f299c30a5a3ed8a1855a"
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
"path": "graphs/indexer.yaml",
|
|
1734
|
+
"digest": "sha256:a775e375e37d8d349eb8eca3f1184637886bce75e9e7e47f39949a2df6264f99"
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
"path": "graphs/workspace.yaml",
|
|
1738
|
+
"digest": "sha256:ef5a226bfe3c0b6ddc0b85351f2c7d0028d162fdf4a0b258899489ef3737c1f0"
|
|
1739
|
+
},
|
|
1740
|
+
{
|
|
1741
|
+
"path": "provider.yaml",
|
|
1742
|
+
"digest": "sha256:a18513dc0c7a6ee2f018f6cc53b3e465ee5016f51065861eb7e3f39656ae682d"
|
|
1743
|
+
},
|
|
1744
|
+
{
|
|
1745
|
+
"path": "resources/diagnostics/projection-stale.md",
|
|
1746
|
+
"digest": "sha256:7152211db8b97ab5b1982fec2a18954c4f04823ee383451a7fcc20713dbc567e"
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
"path": "resources/diagnostics/verification.md",
|
|
1750
|
+
"digest": "sha256:ce985a9ba83f3a78cd9e2ce09d4fa6c9424fb9d793724d6e02b8a1dffe506eab"
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
"path": "resources/diagnostics/workspace-state.md",
|
|
1754
|
+
"digest": "sha256:276c545e7c9bca6d4e5590f75fe93a4fda49a8ac7454ae6dfea8e8a7dd056718"
|
|
1755
|
+
},
|
|
1756
|
+
{
|
|
1757
|
+
"path": "resources/dialogue/code-extraction.md",
|
|
1758
|
+
"digest": "sha256:be355208daf818ec81c0521f0ca0e2a05b5229531b1b9259e06afaadab17a879"
|
|
1759
|
+
},
|
|
1760
|
+
{
|
|
1761
|
+
"path": "resources/dialogue/document-capture.md",
|
|
1762
|
+
"digest": "sha256:eab34072dc96d77c0749148463f722d2483d8e7d83899ce489e927176a1178e4"
|
|
1763
|
+
},
|
|
1764
|
+
{
|
|
1765
|
+
"path": "resources/dialogue/document-classification.md",
|
|
1766
|
+
"digest": "sha256:b26f23c9d99a1287f7fd8e59f5700cdeeafca015d731455fa518825c64477f86"
|
|
1767
|
+
},
|
|
1768
|
+
{
|
|
1769
|
+
"path": "resources/dialogue/evidence-maintenance.md",
|
|
1770
|
+
"digest": "sha256:831ab87f272f9982eb086426302899d3ddc5e9afd582a8628cff2753b6d4115b"
|
|
1771
|
+
},
|
|
1772
|
+
{
|
|
1773
|
+
"path": "resources/dialogue/human-gates.md",
|
|
1774
|
+
"digest": "sha256:6c605c7805f45b2b5f0ab82307ddfbd10f8bf0e7200ca27f351842a155d061c8"
|
|
760
1775
|
},
|
|
761
1776
|
{
|
|
762
1777
|
"path": "resources/dialogue/knowledge-review.md",
|
|
@@ -796,7 +1811,7 @@
|
|
|
796
1811
|
},
|
|
797
1812
|
{
|
|
798
1813
|
"path": "resources/manuals/reference/code-extractors.md",
|
|
799
|
-
"digest": "sha256:
|
|
1814
|
+
"digest": "sha256:21b2756fb91deead40eb290e14b930243d077ce7be59bc2b3f71ccad45d9f78d"
|
|
800
1815
|
},
|
|
801
1816
|
{
|
|
802
1817
|
"path": "resources/manuals/reference/package-templates.md",
|
|
@@ -804,7 +1819,7 @@
|
|
|
804
1819
|
},
|
|
805
1820
|
{
|
|
806
1821
|
"path": "resources/manuals/reference/project-api.md",
|
|
807
|
-
"digest": "sha256:
|
|
1822
|
+
"digest": "sha256:82f6acc33a236de101e137982fc2755d0f7360953d5c938db035b4c82679b898"
|
|
808
1823
|
},
|
|
809
1824
|
{
|
|
810
1825
|
"path": "resources/manuals/reference/template-variables.md",
|
|
@@ -816,11 +1831,11 @@
|
|
|
816
1831
|
},
|
|
817
1832
|
{
|
|
818
1833
|
"path": "resources/procedures/code-extraction.md",
|
|
819
|
-
"digest": "sha256:
|
|
1834
|
+
"digest": "sha256:b64fcaf0ed923c0b96c811be662e2b026608231ce036f9637396602f731f9187"
|
|
820
1835
|
},
|
|
821
1836
|
{
|
|
822
1837
|
"path": "resources/procedures/code-index-audit.md",
|
|
823
|
-
"digest": "sha256:
|
|
1838
|
+
"digest": "sha256:9c32f9be4aeaf0749a3f4b36265c65dccbf2093254a5351c940b7a39bd565bb5"
|
|
824
1839
|
},
|
|
825
1840
|
{
|
|
826
1841
|
"path": "resources/procedures/document-capture.md",
|
|
@@ -832,7 +1847,7 @@
|
|
|
832
1847
|
},
|
|
833
1848
|
{
|
|
834
1849
|
"path": "resources/procedures/document-optimization.md",
|
|
835
|
-
"digest": "sha256:
|
|
1850
|
+
"digest": "sha256:befefad61c8e9fb400ee0d946d7d728bcbd807faf9f88f8004739be2c27d93aa"
|
|
836
1851
|
},
|
|
837
1852
|
{
|
|
838
1853
|
"path": "resources/procedures/document-revision.md",
|
|
@@ -904,7 +1919,7 @@
|
|
|
904
1919
|
},
|
|
905
1920
|
{
|
|
906
1921
|
"path": "resources/semantic/code-index/templates/adapter.md",
|
|
907
|
-
"digest": "sha256:
|
|
1922
|
+
"digest": "sha256:526557b0a33199a6cf8a756f1ccbcab4fd55dddeea8bfe10a0ce08012c7307f3"
|
|
908
1923
|
},
|
|
909
1924
|
{
|
|
910
1925
|
"path": "resources/semantic/code-index/templates/api-service.md",
|
|
@@ -922,6 +1937,10 @@
|
|
|
922
1937
|
"path": "resources/semantic/code-index/templates/contract-source.md",
|
|
923
1938
|
"digest": "sha256:a78950484eb39e3acbbfa7b69e3b8902224c93c72510bfcb181e2e4c7158206a"
|
|
924
1939
|
},
|
|
1940
|
+
{
|
|
1941
|
+
"path": "resources/semantic/code-index/templates/contracts-and-chains.md",
|
|
1942
|
+
"digest": "sha256:1c37f0fa253cea69371060657d59d0735f1ec2ad6d816b29a4441ce2acc145a3"
|
|
1943
|
+
},
|
|
925
1944
|
{
|
|
926
1945
|
"path": "resources/semantic/code-index/templates/cross-module-chain.md",
|
|
927
1946
|
"digest": "sha256:03dc0d936757a55b7c3cf75054a2694023064bed8032dee4d78e6d68a0d6c1bb"
|
|
@@ -982,6 +2001,10 @@
|
|
|
982
2001
|
"path": "resources/views/package-current.yaml",
|
|
983
2002
|
"digest": "sha256:c7910ed553b962612159700cb05f81cd01e03f72facc1a60bc2603698702ecb6"
|
|
984
2003
|
},
|
|
2004
|
+
{
|
|
2005
|
+
"path": "resources/views/resolved-indexer-instructions.yaml",
|
|
2006
|
+
"digest": "sha256:08d2d99159a347f03d4757e8e33186424851105d7e68c11918450e30fff36c0b"
|
|
2007
|
+
},
|
|
985
2008
|
{
|
|
986
2009
|
"path": "resources/views/review-current.yaml",
|
|
987
2010
|
"digest": "sha256:264b6f7de5cce9034e5e0a344bf29341421467bfb1ef96c298d4936ee99d13f5"
|
|
@@ -1012,12 +2035,276 @@
|
|
|
1012
2035
|
},
|
|
1013
2036
|
{
|
|
1014
2037
|
"path": "schemas/document-optimization-decisions.schema.json",
|
|
1015
|
-
"digest": "sha256:
|
|
2038
|
+
"digest": "sha256:39f4ce1cff3fff1c05952964d1fd84c05ae550fb691f17d45a99d7bd9c0c7182"
|
|
1016
2039
|
},
|
|
1017
2040
|
{
|
|
1018
2041
|
"path": "schemas/evidence-maintenance-input.schema.json",
|
|
1019
2042
|
"digest": "sha256:7d1c0a9cc20200b90495bea82337d2c0e42d9eff3c1e3eeeb7258226fd96c542"
|
|
1020
2043
|
},
|
|
2044
|
+
{
|
|
2045
|
+
"path": "schemas/indexer-agent-step-input.schema.json",
|
|
2046
|
+
"digest": "sha256:7bdee1013286e8b3128bcaddd44ed4136214346c769b8440e39f38ab7bf1e0aa"
|
|
2047
|
+
},
|
|
2048
|
+
{
|
|
2049
|
+
"path": "schemas/indexer-agent-step-result.schema.json",
|
|
2050
|
+
"digest": "sha256:2125f4a45434045534c28c2dede2343c8d7c5490a6f9db4a8766b30104238023"
|
|
2051
|
+
},
|
|
2052
|
+
{
|
|
2053
|
+
"path": "schemas/indexer-candidate-compile-input.schema.json",
|
|
2054
|
+
"digest": "sha256:619ea6f51844e9b2da382f2a505f2cbea8ba87e688d4048d90ddef8f8879ece2"
|
|
2055
|
+
},
|
|
2056
|
+
{
|
|
2057
|
+
"path": "schemas/indexer-candidate-compile-output.schema.json",
|
|
2058
|
+
"digest": "sha256:5e08981154c52dfe3a267f11dde23d76c5c57d380f04be63911dd9ce60168fdb"
|
|
2059
|
+
},
|
|
2060
|
+
{
|
|
2061
|
+
"path": "schemas/indexer-candidate-review-readiness-input.schema.json",
|
|
2062
|
+
"digest": "sha256:f3a2f38c6d81ad9d04a224c6ad6c622214bb54e61867da0e05fb657da73dc58c"
|
|
2063
|
+
},
|
|
2064
|
+
{
|
|
2065
|
+
"path": "schemas/indexer-candidate-review-readiness-output.schema.json",
|
|
2066
|
+
"digest": "sha256:dbad68aea79400e0363316c59f72133e96f31b89560011abea6b96665cc7beb3"
|
|
2067
|
+
},
|
|
2068
|
+
{
|
|
2069
|
+
"path": "schemas/indexer-contract-overlay-authorization-input.schema.json",
|
|
2070
|
+
"digest": "sha256:b5c68597f2723e2acf30358794d607b805101f1003bc139a605446ea40ae3335"
|
|
2071
|
+
},
|
|
2072
|
+
{
|
|
2073
|
+
"path": "schemas/indexer-contract-overlay-authorization-result.schema.json",
|
|
2074
|
+
"digest": "sha256:3f7a727ccc608f6a8dc6350deca8c57391173f3e30895f8b774693e1794f0776"
|
|
2075
|
+
},
|
|
2076
|
+
{
|
|
2077
|
+
"path": "schemas/indexer-contract-overlay-validation-input.schema.json",
|
|
2078
|
+
"digest": "sha256:f1d4958776e66670341642537063069927dfabebd90b58f24e7c9163bb232104"
|
|
2079
|
+
},
|
|
2080
|
+
{
|
|
2081
|
+
"path": "schemas/indexer-contract-overlay-validation-result.schema.json",
|
|
2082
|
+
"digest": "sha256:7ce5ed96433c313323f4eb788972601dd35238a0da4dbdde14eb9647e1cd0445"
|
|
2083
|
+
},
|
|
2084
|
+
{
|
|
2085
|
+
"path": "schemas/indexer-customization-project-preparation-result.schema.json",
|
|
2086
|
+
"digest": "sha256:e59cc6764c79ac84a612ea3355f95496efd5d7f0b734f23e9001b3e7bd634499"
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
"path": "schemas/indexer-customization-proposal-draft.schema.json",
|
|
2090
|
+
"digest": "sha256:e4f9db8a828d036f285aec47e63eaf520c8790c6cdc849d89ce043c1aeb2700a"
|
|
2091
|
+
},
|
|
2092
|
+
{
|
|
2093
|
+
"path": "schemas/indexer-customization-validation-result.schema.json",
|
|
2094
|
+
"digest": "sha256:b1940b38f44463a5909991694ebdf8763e9d2072198564d1d4fcda6bac5415ab"
|
|
2095
|
+
},
|
|
2096
|
+
{
|
|
2097
|
+
"path": "schemas/indexer-dependency-authorization-input.schema.json",
|
|
2098
|
+
"digest": "sha256:a211e545715cb575f3f74ce8854c28c495800128a676ce647d074460a778137b"
|
|
2099
|
+
},
|
|
2100
|
+
{
|
|
2101
|
+
"path": "schemas/indexer-dependency-authorization-result.schema.json",
|
|
2102
|
+
"digest": "sha256:e16e6236ad5e0f2187f8578ba2938cab1f7e5742c963d28dc0a3325ce86e308e"
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
"path": "schemas/indexer-incremental-impact-input.schema.json",
|
|
2106
|
+
"digest": "sha256:71056f5c43ae03b3d4d5a32f71b82ad00dc628f6ad2d3288e8d7839b15f075c5"
|
|
2107
|
+
},
|
|
2108
|
+
{
|
|
2109
|
+
"path": "schemas/indexer-incremental-impact-output.schema.json",
|
|
2110
|
+
"digest": "sha256:613dfbc9f98b4c9d6138f0a9f8eaf8a1d9782139cabaec90ac70887de24afed8"
|
|
2111
|
+
},
|
|
2112
|
+
{
|
|
2113
|
+
"path": "schemas/indexer-main-lifecycle-input.schema.json",
|
|
2114
|
+
"digest": "sha256:2faff58cfb8ec34520907970f2fb83c59015fd7b3f5ed42eaee57f6e69e2695c"
|
|
2115
|
+
},
|
|
2116
|
+
{
|
|
2117
|
+
"path": "schemas/indexer-main-lifecycle-output.schema.json",
|
|
2118
|
+
"digest": "sha256:a7a24962b1203665d26ac14a75061dc2f4eca3f0868c14079cdf4afafac99944"
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
"path": "schemas/indexer-markdown-provider-capture-input.schema.json",
|
|
2122
|
+
"digest": "sha256:1d0c5ee3e99a04f9ff62ae39d2d1ded4aceeb44b60b0b1e35ea34584eba95037"
|
|
2123
|
+
},
|
|
2124
|
+
{
|
|
2125
|
+
"path": "schemas/indexer-markdown-provider-capture-output.schema.json",
|
|
2126
|
+
"digest": "sha256:52af7d606a6945b380a401eb3052b982e480fe095a25d0e123ddace897820024"
|
|
2127
|
+
},
|
|
2128
|
+
{
|
|
2129
|
+
"path": "schemas/indexer-markdown-provider-validation-input.schema.json",
|
|
2130
|
+
"digest": "sha256:151c081969c4235dff06a484072363a7331daf3b853cec24c0ae2bcc304be05d"
|
|
2131
|
+
},
|
|
2132
|
+
{
|
|
2133
|
+
"path": "schemas/indexer-markdown-provider-validation-output.schema.json",
|
|
2134
|
+
"digest": "sha256:91f1f8772315337f0351aff66759fb6eaeffbbf493429d2d2c719f08e2572b39"
|
|
2135
|
+
},
|
|
2136
|
+
{
|
|
2137
|
+
"path": "schemas/indexer-material-answer-lifecycle-input.schema.json",
|
|
2138
|
+
"digest": "sha256:c4b0d8aefc5ed5320f4a4ae985c66e4fbf9cb98b38494b1ffe77c412c7b97086"
|
|
2139
|
+
},
|
|
2140
|
+
{
|
|
2141
|
+
"path": "schemas/indexer-material-answer-lifecycle-output.schema.json",
|
|
2142
|
+
"digest": "sha256:18f7e976650a14d65ba783a221a62ba265a3efe23e8e9682c30535eb2e9886af"
|
|
2143
|
+
},
|
|
2144
|
+
{
|
|
2145
|
+
"path": "schemas/indexer-material-answer-review-inspection-input.schema.json",
|
|
2146
|
+
"digest": "sha256:487b8ce606b6063374673ddf71d4da442a7a69d3c7cf8bba90825cbbec7dffa7"
|
|
2147
|
+
},
|
|
2148
|
+
{
|
|
2149
|
+
"path": "schemas/indexer-material-answer-review-inspection-output.schema.json",
|
|
2150
|
+
"digest": "sha256:044ebe461f1e9983d081f3a2deb386e20196b0b0cc00d2d56967105a62d1e352"
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
"path": "schemas/indexer-material-answer-review-resolution-input.schema.json",
|
|
2154
|
+
"digest": "sha256:79e0254fcbfeba81f6b76f1979a1fe3745f253acefa061913ec13737d30a1cc7"
|
|
2155
|
+
},
|
|
2156
|
+
{
|
|
2157
|
+
"path": "schemas/indexer-material-answer-review-resolution-output.schema.json",
|
|
2158
|
+
"digest": "sha256:9aa8e922886b999696d43cc0c62b598e0ab0ea50bfc0098a7bfe8c0a0c7b3e1f"
|
|
2159
|
+
},
|
|
2160
|
+
{
|
|
2161
|
+
"path": "schemas/indexer-material-gap-lifecycle-input.schema.json",
|
|
2162
|
+
"digest": "sha256:e49de7c57b90532d52aaa546f0fa8e895860ed7e44fc5a9f0709cf4f0c9c2b02"
|
|
2163
|
+
},
|
|
2164
|
+
{
|
|
2165
|
+
"path": "schemas/indexer-material-gap-lifecycle-output.schema.json",
|
|
2166
|
+
"digest": "sha256:efcf96aeaf51d79d07a6bb71400095517c2583a53a1c71a8f563022a3a7f7846"
|
|
2167
|
+
},
|
|
2168
|
+
{
|
|
2169
|
+
"path": "schemas/indexer-materialize-request.schema.json",
|
|
2170
|
+
"digest": "sha256:b13bfc9956eda311afd2f5559e67b3e6f824500f2137af7c8f5cece7aa82c7af"
|
|
2171
|
+
},
|
|
2172
|
+
{
|
|
2173
|
+
"path": "schemas/indexer-materialized-resource.schema.json",
|
|
2174
|
+
"digest": "sha256:a3588569633ac421e8b8a2dc057245481a320159ae91b6020756f0cbe042e34b"
|
|
2175
|
+
},
|
|
2176
|
+
{
|
|
2177
|
+
"path": "schemas/indexer-overlay-question-amendment.schema.json",
|
|
2178
|
+
"digest": "sha256:b3a752514111f43ba695b0569fc7680f23442674e2cc1d87c07442cd25754281"
|
|
2179
|
+
},
|
|
2180
|
+
{
|
|
2181
|
+
"path": "schemas/indexer-overlay-question-proposal-input.schema.json",
|
|
2182
|
+
"digest": "sha256:37b989761142536c5bac1cd62151c92156ef70294d3225fa9ba76bad6dba8037"
|
|
2183
|
+
},
|
|
2184
|
+
{
|
|
2185
|
+
"path": "schemas/indexer-overlay-question-rebind-input.schema.json",
|
|
2186
|
+
"digest": "sha256:34be2a3397d43fcf4729112c8e63e00c7c76ded06ed64c0391b1406b332bb27b"
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
"path": "schemas/indexer-overlay-question-rebind-result.schema.json",
|
|
2190
|
+
"digest": "sha256:d2961b0f56dba1cc2695141f82d3f6b31362f48eb9f93e7361fc23da1e200466"
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
"path": "schemas/indexer-post-author-fragment-request.schema.json",
|
|
2194
|
+
"digest": "sha256:e8daad85219a68d630673ad2b61269264b15988ba94918aff1dd8bdb0dd1f287"
|
|
2195
|
+
},
|
|
2196
|
+
{
|
|
2197
|
+
"path": "schemas/indexer-post-author-fragment-result.schema.json",
|
|
2198
|
+
"digest": "sha256:06a37616cdb5078374c4a35a992a38bc9583456be1818091283e28df7f164ed3"
|
|
2199
|
+
},
|
|
2200
|
+
{
|
|
2201
|
+
"path": "schemas/indexer-post-author-lifecycle-input.schema.json",
|
|
2202
|
+
"digest": "sha256:afce4e1729d9430f3f9f527af11856cbc76a07f91cee06df5efe50d4ea944b0d"
|
|
2203
|
+
},
|
|
2204
|
+
{
|
|
2205
|
+
"path": "schemas/indexer-post-author-lifecycle-output.schema.json",
|
|
2206
|
+
"digest": "sha256:e1ae7a6f9bfe0047cf36837ed779a24789ef0c092f259c3b39e0e6c5bf56e1b7"
|
|
2207
|
+
},
|
|
2208
|
+
{
|
|
2209
|
+
"path": "schemas/indexer-profile-failure-inspection-input.schema.json",
|
|
2210
|
+
"digest": "sha256:44362552d8837ff6be3325a7dc79092442288ce0153c60de632112956dc0b7ed"
|
|
2211
|
+
},
|
|
2212
|
+
{
|
|
2213
|
+
"path": "schemas/indexer-profile-failure-inspection-result.schema.json",
|
|
2214
|
+
"digest": "sha256:39b0ba4e22b3e1c22f3e0898285419c5d3f7b9af2747ba072443c1c96e542f7a"
|
|
2215
|
+
},
|
|
2216
|
+
{
|
|
2217
|
+
"path": "schemas/indexer-profile-failure-report-input.schema.json",
|
|
2218
|
+
"digest": "sha256:c7ab97bd0302a1e1d620f2b8eeab989aff8a340bcb1ae06993c00c2da4406325"
|
|
2219
|
+
},
|
|
2220
|
+
{
|
|
2221
|
+
"path": "schemas/indexer-profile-failure-report-result.schema.json",
|
|
2222
|
+
"digest": "sha256:3c322f5add743d6c56e5ed0ba041fabbe1f8629cb3213342f7949611579f9966"
|
|
2223
|
+
},
|
|
2224
|
+
{
|
|
2225
|
+
"path": "schemas/indexer-profile-override-decision.schema.json",
|
|
2226
|
+
"digest": "sha256:3163bbf23104cd7dc8d63ae864d6e0dce5d956e16f995720ce292b11b3605958"
|
|
2227
|
+
},
|
|
2228
|
+
{
|
|
2229
|
+
"path": "schemas/indexer-profile-override-result.schema.json",
|
|
2230
|
+
"digest": "sha256:5ca7c399a73d0f0e0cb35ea1948e94d8a6f46e9533987543b5b23ef3cb0a2b1b"
|
|
2231
|
+
},
|
|
2232
|
+
{
|
|
2233
|
+
"path": "schemas/indexer-profile-revision-agent-input.schema.json",
|
|
2234
|
+
"digest": "sha256:30983189eeae396483d5e36511400a5206da1cdfbfb20a145668e2f542ef17e9"
|
|
2235
|
+
},
|
|
2236
|
+
{
|
|
2237
|
+
"path": "schemas/indexer-profile-revision-record-input.schema.json",
|
|
2238
|
+
"digest": "sha256:e2e8cff4870a2563a3492367397a69486b7c4c4f6a74f26df6e2915ef4fc1313"
|
|
2239
|
+
},
|
|
2240
|
+
{
|
|
2241
|
+
"path": "schemas/indexer-profile-revision-record-result.schema.json",
|
|
2242
|
+
"digest": "sha256:284c764593db89f9d7318f90d0e368e03d9282fae678b7f0f417404de8da4f45"
|
|
2243
|
+
},
|
|
2244
|
+
{
|
|
2245
|
+
"path": "schemas/indexer-program-execution-authorization-input.schema.json",
|
|
2246
|
+
"digest": "sha256:ea8be492a994f1dfb39e166977d8ccc7c4fa6df0f6e0504585bfdefe705c1e1d"
|
|
2247
|
+
},
|
|
2248
|
+
{
|
|
2249
|
+
"path": "schemas/indexer-program-execution-authorization-result.schema.json",
|
|
2250
|
+
"digest": "sha256:427d292b80c1bdb670a2835357c832c59e94b919a755f0fcc879fa32f13ad089"
|
|
2251
|
+
},
|
|
2252
|
+
{
|
|
2253
|
+
"path": "schemas/indexer-project-action-result.schema.json",
|
|
2254
|
+
"digest": "sha256:ee12714a76a1651ed1670d672526bdd475b54a3bbf70288153ca5dabb82f24c5"
|
|
2255
|
+
},
|
|
2256
|
+
{
|
|
2257
|
+
"path": "schemas/indexer-project-gate-input.schema.json",
|
|
2258
|
+
"digest": "sha256:15861043b84e36a0b256d6dcf9916fe921dad050172c35c4eb99b5c116f6b992"
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
"path": "schemas/indexer-project-observation-input.schema.json",
|
|
2262
|
+
"digest": "sha256:2fd9eb7f64e27fbe2cf25606913ab0535265dcda4326c6bef23774c67b15b5bf"
|
|
2263
|
+
},
|
|
2264
|
+
{
|
|
2265
|
+
"path": "schemas/indexer-project-observation-result.schema.json",
|
|
2266
|
+
"digest": "sha256:47d6597b1fa7b94c56670bdffa780f894c4a2a523c2d029e68f97c55cc70a3ef"
|
|
2267
|
+
},
|
|
2268
|
+
{
|
|
2269
|
+
"path": "schemas/indexer-provider-route-input.schema.json",
|
|
2270
|
+
"digest": "sha256:fedba7614728a3ebaa3772674b3625af12512a7470f86cb2fae7d8cc0c663e83"
|
|
2271
|
+
},
|
|
2272
|
+
{
|
|
2273
|
+
"path": "schemas/indexer-provider-route-report.schema.json",
|
|
2274
|
+
"digest": "sha256:00476bf6bbf4dbb3bfbdd1f7fc6f416a845d7c7ec079b089fd52584290c084db"
|
|
2275
|
+
},
|
|
2276
|
+
{
|
|
2277
|
+
"path": "schemas/indexer-requirement-confirmation-input.schema.json",
|
|
2278
|
+
"digest": "sha256:b211f78bff8ca25d3f6cb73ca735a06789701464c34913ec67fc161db3af577b"
|
|
2279
|
+
},
|
|
2280
|
+
{
|
|
2281
|
+
"path": "schemas/indexer-requirement-confirmation-output.schema.json",
|
|
2282
|
+
"digest": "sha256:cd202627606a89b94c6cbf557e17721a3b472f32e2620ea3d60c9f157d2028ef"
|
|
2283
|
+
},
|
|
2284
|
+
{
|
|
2285
|
+
"path": "schemas/indexer-result-reconciliation-input.schema.json",
|
|
2286
|
+
"digest": "sha256:48671f7e107dc6e0be8baa27a9816eae9eaeb19b1e9ecdc63120e11e884cfa4c"
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
"path": "schemas/indexer-result-reconciliation-output.schema.json",
|
|
2290
|
+
"digest": "sha256:6c06c833a862d23dbcb7024e1fbb57c134d1d62c8ad961cc8560f176e36b73f8"
|
|
2291
|
+
},
|
|
2292
|
+
{
|
|
2293
|
+
"path": "schemas/indexer-selection-proposal-input.schema.json",
|
|
2294
|
+
"digest": "sha256:de25b302dff137151d11651201482fc1c70218e48c4e84f474fe8c8324145b80"
|
|
2295
|
+
},
|
|
2296
|
+
{
|
|
2297
|
+
"path": "schemas/indexer-selection-proposal-validation.schema.json",
|
|
2298
|
+
"digest": "sha256:eca4fae78a526aa7018411dd1853ecac0371ae8fa30ebef6423ce44fcbd55594"
|
|
2299
|
+
},
|
|
2300
|
+
{
|
|
2301
|
+
"path": "schemas/indexer-subject-reidentification-input.schema.json",
|
|
2302
|
+
"digest": "sha256:cd3c0ded9115e6e355e9c6e34faed702c49553c089d545e7e2d24b08736cf140"
|
|
2303
|
+
},
|
|
2304
|
+
{
|
|
2305
|
+
"path": "schemas/indexer-subject-reidentification-output.schema.json",
|
|
2306
|
+
"digest": "sha256:78c3f14147f959914f8122b4f749e7a081f48d4b9297e2f2435ef83b2c5307d3"
|
|
2307
|
+
},
|
|
1021
2308
|
{
|
|
1022
2309
|
"path": "schemas/prose-structure-batch.schema.json",
|
|
1023
2310
|
"digest": "sha256:fc4ebbb5ee81ae77238cd60350ebac16f55e8a5adf3f5f5db411040474e01842"
|
|
@@ -1033,10 +2320,35 @@
|
|
|
1033
2320
|
{
|
|
1034
2321
|
"path": "scripts/render-context-view.mjs",
|
|
1035
2322
|
"digest": "sha256:7686916efd5792e8f003ec2df97271efba8c766e5afab3b9e2e8b82e4e86ecc1"
|
|
2323
|
+
},
|
|
2324
|
+
{
|
|
2325
|
+
"path": "skills/configure-indexer-providers/SKILL.md",
|
|
2326
|
+
"digest": "sha256:777a9b3ffca1c5fc947ccecf48bc8bdac38f68a33c6934ffa130923ef3ca0c36"
|
|
2327
|
+
},
|
|
2328
|
+
{
|
|
2329
|
+
"path": "skills/prepare-indexer-customization-project/SKILL.md",
|
|
2330
|
+
"digest": "sha256:14e4aa96856e7bd1daa8bfdd1137ef813e800597da0d79c072e3e4f84f1d369a"
|
|
2331
|
+
},
|
|
2332
|
+
{
|
|
2333
|
+
"path": "skills/propose-indexer-customization/SKILL.md",
|
|
2334
|
+
"digest": "sha256:d87245e3f58ea966e8a27d8016655aa833dc30df18464c58889f3a62a700f717"
|
|
2335
|
+
},
|
|
2336
|
+
{
|
|
2337
|
+
"path": "skills/revise-index-output/SKILL.md",
|
|
2338
|
+
"digest": "sha256:37b0c94c087b3cbc4150164d56ba91d281737b105682e6c472df7846e8a48ded"
|
|
2339
|
+
},
|
|
2340
|
+
{
|
|
2341
|
+
"path": "skills/run-indexer-agent-step/SKILL.md",
|
|
2342
|
+
"digest": "sha256:0fdcd8a6ca84c8a0d7e1927b06a6e2d044050688fa3d143ed95b68dc0ad28780"
|
|
2343
|
+
},
|
|
2344
|
+
{
|
|
2345
|
+
"path": "skills/run-indexer-post-author-composer/SKILL.md",
|
|
2346
|
+
"digest": "sha256:f91786f5ac797b544e94b07b8125650ff8cc5d8c0b85bd17eea1206b9a5ba13a"
|
|
1036
2347
|
}
|
|
1037
2348
|
],
|
|
1038
2349
|
"graphDependencies": {
|
|
2350
|
+
"indexer": [],
|
|
1039
2351
|
"workspace": []
|
|
1040
2352
|
},
|
|
1041
|
-
"digest": "sha256:
|
|
2353
|
+
"digest": "sha256:4f91f61e76b7a62b39cc4977490ff30a8a769651ece76c6f8d4c9f6bc8723e4e"
|
|
1042
2354
|
}
|