@c4a/context-cli 0.7.0 → 0.7.4
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 +18 -39
- package/README.zh-CN.md +13 -27
- package/cli.js +59230 -80555
- package/indexers/bundles/context-code-indexer/SKILL.md +30 -3
- package/indexers/bundles/context-code-indexer/context-indexer.yaml +3 -8
- package/indexers/bundles/context-code-indexer/references/indexer.md +110 -7
- package/indexers/bundles/context-code-indexer/references/metrics.md +143 -37
- package/indexers/bundles/context-code-indexer/templates/adapter-integration.md +2 -2
- package/indexers/bundles/context-code-indexer/templates/component-library.md +8 -0
- package/indexers/bundles/context-code-indexer/templates/gateway-facade.md +16 -0
- package/indexers/bundles/context-markdown-indexer/SKILL.md +13 -3
- package/indexers/bundles/context-markdown-indexer/context-indexer.yaml +20 -7
- package/indexers/bundles/context-markdown-indexer/references/indexer.md +33 -4
- package/indexers/bundles/context-markdown-indexer/references/semantic-planning.md +30 -14
- package/indexers/bundles/context-markdown-indexer/references/structure-and-artifacts.md +6 -0
- package/indexers/bundles/context-markdown-indexer/tests/fixtures/anonymous.json +1 -1
- package/indexers/bundles/context-markdown-indexer/tests/fixtures/profiles.json +13 -13
- package/indexers/bundles/context-markdown-indexer/tests/fixtures/routing.json +122 -0
- package/indexers/contracts/operator-contract.json +2 -2
- package/indexers/contracts/profile-contract.json +3819 -454
- package/indexers/release-manifest.json +22 -22
- package/package.json +13 -3
- package/plugins/VERSION +1 -1
- package/plugins/claude/.claude-plugin/plugin.json +1 -1
- package/plugins/claude/commands/context.md +44 -85
- package/plugins/codex/.codex-plugin/plugin.json +2 -2
- package/plugins/codex/skills/context/SKILL.md +44 -85
- package/plugins/cursor/.cursor-plugin/plugin.json +1 -1
- package/plugins/cursor/commands/c4a-context.md +44 -85
- package/plugins/skills/context/SKILL.md +44 -85
- package/plugins/skills/context-code-indexer/SKILL.md +30 -3
- package/plugins/skills/context-code-indexer/context-indexer.yaml +3 -8
- package/plugins/skills/context-code-indexer/references/indexer.md +110 -7
- package/plugins/skills/context-code-indexer/references/metrics.md +143 -37
- package/plugins/skills/context-code-indexer/templates/adapter-integration.md +2 -2
- package/plugins/skills/context-code-indexer/templates/component-library.md +8 -0
- package/plugins/skills/context-code-indexer/templates/gateway-facade.md +16 -0
- package/plugins/skills/context-markdown-indexer/SKILL.md +13 -3
- package/plugins/skills/context-markdown-indexer/context-indexer.yaml +20 -7
- package/plugins/skills/context-markdown-indexer/references/indexer.md +33 -4
- package/plugins/skills/context-markdown-indexer/references/semantic-planning.md +30 -14
- package/plugins/skills/context-markdown-indexer/references/structure-and-artifacts.md +6 -0
- package/plugins/skills/context-markdown-indexer/tests/fixtures/anonymous.json +1 -1
- package/plugins/skills/context-markdown-indexer/tests/fixtures/profiles.json +13 -13
- package/plugins/skills/context-markdown-indexer/tests/fixtures/routing.json +122 -0
- package/providers/context/actions/advance-current-indexer-lifecycle.yaml +6 -0
- package/providers/context/actions/configure-indexer-providers.yaml +1 -1
- package/providers/context/actions/materialize-indexer-workset-view.yaml +7 -0
- package/providers/context/actions/run-indexer-lifecycle.yaml +7 -0
- package/providers/context/actions/run-indexer-post-author-composer.yaml +1 -1
- package/providers/context/codes.yaml +9 -49
- package/providers/context/graphs/indexer.yaml +75 -592
- package/providers/context/graphs/workspace.yaml +25 -500
- package/providers/context/manifest.json +110 -1199
- package/providers/context/provider.yaml +2 -2
- package/providers/context/resources/diagnostics/projection-stale.md +0 -1
- package/providers/context/resources/dialogue/human-gates.md +3 -3
- package/providers/context/resources/manuals/reference/package-templates.md +2 -3
- package/providers/context/resources/manuals/reference/project-api.md +52 -985
- package/providers/context/resources/procedures/close-and-build.md +8 -23
- package/providers/context/resources/procedures/knowledge-review.md +13 -4
- package/providers/context/resources/procedures/source-capture-detailed.md +6 -8
- package/providers/context/resources/views/authorized-indexer-workset-view.yaml +15 -0
- package/providers/context/resources/views/package-current.yaml +1 -1
- package/providers/context/resources/views/resolved-indexer-instructions.yaml +1 -1
- package/providers/context/resources/views/review-current.yaml +1 -1
- package/providers/context/resources/views/source-boundary.yaml +1 -1
- package/providers/context/resources/views/source-current.yaml +1 -1
- package/providers/context/resources/views/verification-current.yaml +1 -1
- package/providers/context/resources/views/workspace-current.yaml +1 -1
- package/providers/context/schemas/indexer-agent-step-input.schema.json +2 -2
- package/providers/context/schemas/indexer-agent-step-result.schema.json +298 -32
- package/providers/context/schemas/indexer-authorized-workset-view.schema.json +65 -0
- package/providers/context/schemas/indexer-contract-overlay-validation-input.schema.json +0 -42
- package/providers/context/schemas/indexer-contract-overlay-validation-result.schema.json +27 -122
- package/providers/context/schemas/indexer-lifecycle-continuation.schema.json +15 -0
- package/providers/context/schemas/indexer-main-lifecycle-input.schema.json +13 -20
- package/providers/context/schemas/indexer-main-lifecycle-output.schema.json +17 -2
- package/providers/context/schemas/indexer-materialized-resource.schema.json +8 -1
- package/providers/context/schemas/indexer-overlay-question-proposal-input.schema.json +55 -6
- package/providers/context/schemas/indexer-overlay-question-rebind-input.schema.json +4 -4
- package/providers/context/schemas/indexer-workset-view-materialization-request.schema.json +32 -0
- package/providers/context/skills/configure-indexer-providers/SKILL.md +40 -27
- package/providers/context/skills/run-indexer-agent-step/SKILL.md +34 -8
- package/providers/context/skills/run-indexer-lifecycle/SKILL.md +37 -0
- package/providers/context/skills/run-indexer-post-author-composer/SKILL.md +38 -9
- package/docs/document-optimization.md +0 -82
- package/docs/document-optimization.zh-CN.md +0 -70
- package/indexers/capability-manifest.json +0 -40
- package/indexers/contracts/hard-rule-conformance.json +0 -2644
- package/providers/context/actions/accept-main-index-run.yaml +0 -7
- package/providers/context/actions/accept-material-answer-run.yaml +0 -7
- package/providers/context/actions/accept-post-author-composer-run.yaml +0 -7
- package/providers/context/actions/actualize-material-answer-bindings.yaml +0 -8
- package/providers/context/actions/align-next.yaml +0 -6
- package/providers/context/actions/apply-code-index-guidance.yaml +0 -5
- package/providers/context/actions/apply-document-optimization-guidance.yaml +0 -5
- package/providers/context/actions/apply-structure-confirmation.yaml +0 -5
- package/providers/context/actions/audit-material-gap-state.yaml +0 -8
- package/providers/context/actions/audit-projected-artifact-fan-out.yaml +0 -8
- package/providers/context/actions/authorize-indexer-contract-overlay.yaml +0 -7
- package/providers/context/actions/build-main-index-author-worksets.yaml +0 -7
- package/providers/context/actions/build-main-index-catalog-fallback.yaml +0 -7
- package/providers/context/actions/build-main-index-partition-worksets.yaml +0 -7
- package/providers/context/actions/build-material-question-workset.yaml +0 -7
- package/providers/context/actions/build-post-author-composer-worksets.yaml +0 -7
- package/providers/context/actions/build-question-target-inventory.yaml +0 -7
- package/providers/context/actions/build-subject-catalog.yaml +0 -7
- package/providers/context/actions/build-target-resolution-views.yaml +0 -7
- package/providers/context/actions/checkpoint-material-answer-review.yaml +0 -8
- package/providers/context/actions/checkpoint-material-gaps.yaml +0 -8
- package/providers/context/actions/close-indexer-approved-knowledge.yaml +0 -8
- package/providers/context/actions/compile-next.yaml +0 -5
- package/providers/context/actions/compose-indexer-post-author-fragments.yaml +0 -7
- package/providers/context/actions/configure-code-extraction.yaml +0 -5
- package/providers/context/actions/configure-prose-lifecycle.yaml +0 -5
- package/providers/context/actions/converge-main-index-partition-run.yaml +0 -7
- package/providers/context/actions/evaluate-material-gaps.yaml +0 -8
- package/providers/context/actions/extract-next.yaml +0 -5
- package/providers/context/actions/fail-main-index-run.yaml +0 -7
- package/providers/context/actions/fail-material-answer-run.yaml +0 -7
- package/providers/context/actions/fail-post-author-composer-run.yaml +0 -7
- package/providers/context/actions/inspect-code-extraction.yaml +0 -5
- package/providers/context/actions/inspect-document-classification.yaml +0 -5
- package/providers/context/actions/inspect-index-candidate-review-readiness.yaml +0 -8
- package/providers/context/actions/inspect-index-profile-failure.yaml +0 -7
- package/providers/context/actions/inspect-material-answer-review.yaml +0 -8
- package/providers/context/actions/inspect-structure.yaml +0 -5
- package/providers/context/actions/migrate-codeindex.yaml +0 -5
- package/providers/context/actions/observe-main-index-run-ledger.yaml +0 -7
- package/providers/context/actions/observe-material-answer-runs.yaml +0 -7
- package/providers/context/actions/observe-post-author-composer-worksets.yaml +0 -7
- package/providers/context/actions/optimize-documents.yaml +0 -6
- package/providers/context/actions/override-index-profile-audit.yaml +0 -7
- package/providers/context/actions/prepare-main-index-run-ledger.yaml +0 -7
- package/providers/context/actions/prepare-material-answer-runs.yaml +0 -7
- package/providers/context/actions/preview-extraction-batch.yaml +0 -5
- package/providers/context/actions/reconcile-indexer-results.yaml +0 -7
- package/providers/context/actions/reconcile-review-identities.yaml +0 -5
- package/providers/context/actions/record-index-profile-revision.yaml +0 -7
- package/providers/context/actions/report-index-profile-failure.yaml +0 -7
- package/providers/context/actions/resolve-effective-composers.yaml +0 -7
- package/providers/context/actions/review-material-answer-candidate.yaml +0 -8
- package/providers/context/actions/revise-code-index-audit.yaml +0 -5
- package/providers/context/actions/revise-document.yaml +0 -5
- package/providers/context/actions/revise-index-output.yaml +0 -7
- package/providers/context/actions/run-material-answer-indexers.yaml +0 -7
- package/providers/context/actions/start-main-index-run.yaml +0 -7
- package/providers/context/actions/start-material-answer-run.yaml +0 -7
- package/providers/context/actions/start-post-author-composer-run.yaml +0 -7
- package/providers/context/actions/submit-code-index-audit.yaml +0 -6
- package/providers/context/resources/dialogue/code-extraction.md +0 -87
- package/providers/context/resources/dialogue/document-classification.md +0 -33
- package/providers/context/resources/dialogue/structure-confirmation.md +0 -44
- package/providers/context/resources/dialogue/workflow-mode-after-capture.md +0 -25
- package/providers/context/resources/manuals/reference/code-extractors.md +0 -152
- package/providers/context/resources/procedures/code-extraction.md +0 -188
- package/providers/context/resources/procedures/code-index-audit.md +0 -113
- package/providers/context/resources/procedures/document-classification.md +0 -22
- package/providers/context/resources/procedures/document-optimization.md +0 -110
- package/providers/context/resources/procedures/document-revision.md +0 -36
- package/providers/context/resources/procedures/prose-align.md +0 -68
- package/providers/context/resources/procedures/prose-compile.md +0 -23
- package/providers/context/resources/semantic/align/candidate-resolution.md +0 -106
- package/providers/context/resources/semantic/align/density-profile.md +0 -41
- package/providers/context/resources/semantic/align/gates.md +0 -276
- package/providers/context/resources/semantic/align/structure-planning.md +0 -337
- package/providers/context/resources/semantic/code-index/classification.md +0 -270
- package/providers/context/resources/semantic/code-index/templates/adapter.md +0 -118
- package/providers/context/resources/semantic/code-index/templates/api-service.md +0 -116
- package/providers/context/resources/semantic/code-index/templates/background-runtime.md +0 -109
- package/providers/context/resources/semantic/code-index/templates/cli-tool.md +0 -129
- package/providers/context/resources/semantic/code-index/templates/contract-source.md +0 -73
- package/providers/context/resources/semantic/code-index/templates/contracts-and-chains.md +0 -81
- package/providers/context/resources/semantic/code-index/templates/cross-module-chain.md +0 -78
- package/providers/context/resources/semantic/code-index/templates/derived-source.md +0 -116
- package/providers/context/resources/semantic/code-index/templates/domain-service.md +0 -109
- package/providers/context/resources/semantic/code-index/templates/event-flow.md +0 -62
- package/providers/context/resources/semantic/code-index/templates/monorepo-container.md +0 -124
- package/providers/context/resources/semantic/code-index/templates/persistence-boundary.md +0 -56
- package/providers/context/resources/semantic/code-index/templates/plugin-extension.md +0 -52
- package/providers/context/resources/semantic/code-index/templates/protocol-boundary.md +0 -88
- package/providers/context/resources/semantic/code-index/templates/sdk-library.md +0 -132
- package/providers/context/resources/semantic/code-index/templates/web-application.md +0 -145
- package/providers/context/resources/semantic/compile/index.md +0 -31
- package/providers/context/resources/views/code-index-audit.yaml +0 -6
- package/providers/context/resources/views/document-optimization-current.yaml +0 -6
- package/providers/context/resources/views/extraction-preview.yaml +0 -6
- package/providers/context/resources/views/structure-current.yaml +0 -6
- package/providers/context/schemas/code-index-audit-decision.schema.json +0 -94
- package/providers/context/schemas/document-optimization-decisions.schema.json +0 -57
- package/providers/context/schemas/indexer-candidate-review-readiness-input.schema.json +0 -46
- package/providers/context/schemas/indexer-candidate-review-readiness-output.schema.json +0 -104
- package/providers/context/schemas/indexer-contract-overlay-authorization-input.schema.json +0 -32
- package/providers/context/schemas/indexer-contract-overlay-authorization-result.schema.json +0 -121
- package/providers/context/schemas/indexer-material-answer-lifecycle-input.schema.json +0 -90
- package/providers/context/schemas/indexer-material-answer-lifecycle-output.schema.json +0 -80
- package/providers/context/schemas/indexer-material-answer-review-inspection-input.schema.json +0 -32
- package/providers/context/schemas/indexer-material-answer-review-inspection-output.schema.json +0 -32
- package/providers/context/schemas/indexer-material-answer-review-resolution-input.schema.json +0 -19
- package/providers/context/schemas/indexer-material-answer-review-resolution-output.schema.json +0 -87
- package/providers/context/schemas/indexer-material-gap-lifecycle-input.schema.json +0 -86
- package/providers/context/schemas/indexer-material-gap-lifecycle-output.schema.json +0 -19
- package/providers/context/schemas/indexer-post-author-fragment-result.schema.json +0 -18
- package/providers/context/schemas/indexer-post-author-lifecycle-input.schema.json +0 -94
- package/providers/context/schemas/indexer-post-author-lifecycle-output.schema.json +0 -72
- package/providers/context/schemas/indexer-profile-failure-inspection-input.schema.json +0 -13
- package/providers/context/schemas/indexer-profile-failure-inspection-result.schema.json +0 -19
- package/providers/context/schemas/indexer-profile-failure-report-input.schema.json +0 -22
- package/providers/context/schemas/indexer-profile-failure-report-result.schema.json +0 -49
- package/providers/context/schemas/indexer-profile-override-decision.schema.json +0 -20
- package/providers/context/schemas/indexer-profile-override-result.schema.json +0 -49
- package/providers/context/schemas/indexer-profile-revision-agent-input.schema.json +0 -18
- package/providers/context/schemas/indexer-profile-revision-record-input.schema.json +0 -31
- package/providers/context/schemas/indexer-profile-revision-record-result.schema.json +0 -45
- package/providers/context/schemas/indexer-result-reconciliation-input.schema.json +0 -59
- package/providers/context/schemas/indexer-result-reconciliation-output.schema.json +0 -43
- package/providers/context/schemas/prose-structure-batch.schema.json +0 -35
- package/providers/context/skills/revise-index-output/SKILL.md +0 -12
|
@@ -2,61 +2,31 @@
|
|
|
2
2
|
"schema": "agent-graph.bundle.v1",
|
|
3
3
|
"provider": {
|
|
4
4
|
"id": "c4a/context",
|
|
5
|
-
"version": "0.7.
|
|
5
|
+
"version": "0.7.4"
|
|
6
6
|
},
|
|
7
7
|
"providerManifest": "provider.yaml",
|
|
8
8
|
"graphs": [
|
|
9
9
|
{
|
|
10
10
|
"id": "indexer",
|
|
11
11
|
"path": "graphs/indexer.yaml",
|
|
12
|
-
"digest": "sha256:
|
|
12
|
+
"digest": "sha256:96f06bdf25e70d3a344f4d5e670f86b2adb62642d572e80868913fc0d2c90101"
|
|
13
13
|
},
|
|
14
14
|
{
|
|
15
15
|
"id": "workspace",
|
|
16
16
|
"path": "graphs/workspace.yaml",
|
|
17
|
-
"digest": "sha256:
|
|
17
|
+
"digest": "sha256:1442fae4f9821747cd133bfb53ded039c59fc5c21faa02616ce15ae7aa41f8cc"
|
|
18
18
|
}
|
|
19
19
|
],
|
|
20
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
|
-
},
|
|
31
21
|
{
|
|
32
22
|
"id": "accept-package-templates",
|
|
33
23
|
"path": "actions/accept-package-templates.yaml",
|
|
34
24
|
"digest": "sha256:e3de218f2dc37c9d3ab9546e408598c7b320f7151e8c520a00770919088a6a66"
|
|
35
25
|
},
|
|
36
26
|
{
|
|
37
|
-
"id": "
|
|
38
|
-
"path": "actions/
|
|
39
|
-
"digest": "sha256:
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"id": "actualize-material-answer-bindings",
|
|
43
|
-
"path": "actions/actualize-material-answer-bindings.yaml",
|
|
44
|
-
"digest": "sha256:5d641922c4c68147e90d70f46d33579519aab7ea0b6d26ff927894b15e3974f6"
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"id": "align-next",
|
|
48
|
-
"path": "actions/align-next.yaml",
|
|
49
|
-
"digest": "sha256:8f2a7203d5b631c0b1e6cc14d4d70acbf8ac0197b3cfd19fa3111212ffb47498"
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"id": "apply-code-index-guidance",
|
|
53
|
-
"path": "actions/apply-code-index-guidance.yaml",
|
|
54
|
-
"digest": "sha256:42dd7e82813d31421078cb977e125ffae1ec219f9512a0e3ac32f1d2aff8041a"
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
"id": "apply-document-optimization-guidance",
|
|
58
|
-
"path": "actions/apply-document-optimization-guidance.yaml",
|
|
59
|
-
"digest": "sha256:80d906a1056bab6d2259bd46fba70fd6d5b736f538f7e706c7205709f63c93dd"
|
|
27
|
+
"id": "advance-current-indexer-lifecycle",
|
|
28
|
+
"path": "actions/advance-current-indexer-lifecycle.yaml",
|
|
29
|
+
"digest": "sha256:9a508060c1de5201f1490317caa388b4554a7d869597001e2b0fdf29b8d904a0"
|
|
60
30
|
},
|
|
61
31
|
{
|
|
62
32
|
"id": "apply-forced-review",
|
|
@@ -73,26 +43,6 @@
|
|
|
73
43
|
"path": "actions/apply-managed-review.yaml",
|
|
74
44
|
"digest": "sha256:25e2c2c215889dd13a6dec8714bc2b6357f3e01b09cc684f1e82d986e30ef064"
|
|
75
45
|
},
|
|
76
|
-
{
|
|
77
|
-
"id": "apply-structure-confirmation",
|
|
78
|
-
"path": "actions/apply-structure-confirmation.yaml",
|
|
79
|
-
"digest": "sha256:2d5acf97ca692d324c829b25e020708b0d5fcd7ee004b7fd2be625a197dc77c3"
|
|
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
46
|
{
|
|
97
47
|
"id": "authorize-indexer-dependencies",
|
|
98
48
|
"path": "actions/authorize-indexer-dependencies.yaml",
|
|
@@ -103,96 +53,26 @@
|
|
|
103
53
|
"path": "actions/authorize-indexer-program-execution.yaml",
|
|
104
54
|
"digest": "sha256:95278fbf41dc311151d1d0bad8727fd07390eee740b69e3c08831306466dea94"
|
|
105
55
|
},
|
|
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
|
-
},
|
|
126
56
|
{
|
|
127
57
|
"id": "build-next",
|
|
128
58
|
"path": "actions/build-next.yaml",
|
|
129
59
|
"digest": "sha256:a5b8bb7162f14e0cf3056dd1a3e9da05fe45f7b61fcf0aa07f52ca7274256e44"
|
|
130
60
|
},
|
|
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
|
-
},
|
|
151
61
|
{
|
|
152
62
|
"id": "capture-next",
|
|
153
63
|
"path": "actions/capture-next.yaml",
|
|
154
64
|
"digest": "sha256:409a091eb771d5087408832539a50cb7b6f0c0d25dd47257798df49f5d8b6fc3"
|
|
155
65
|
},
|
|
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
|
-
},
|
|
166
66
|
{
|
|
167
67
|
"id": "close-approved-knowledge",
|
|
168
68
|
"path": "actions/close-approved-knowledge.yaml",
|
|
169
69
|
"digest": "sha256:8ef2c1ca0856042b5587e08a324721902fcb61578749f54e5c043440b71f09da"
|
|
170
70
|
},
|
|
171
|
-
{
|
|
172
|
-
"id": "close-indexer-approved-knowledge",
|
|
173
|
-
"path": "actions/close-indexer-approved-knowledge.yaml",
|
|
174
|
-
"digest": "sha256:5226e523c44a1f0a6b81bbc26ea53a59f399ccc1695b483649d3cc84d74d752e"
|
|
175
|
-
},
|
|
176
71
|
{
|
|
177
72
|
"id": "compile-indexer-candidates",
|
|
178
73
|
"path": "actions/compile-indexer-candidates.yaml",
|
|
179
74
|
"digest": "sha256:e3821f2b67376d844501bae335d33970e36b81a3acc249a9e4834b10b573575e"
|
|
180
75
|
},
|
|
181
|
-
{
|
|
182
|
-
"id": "compile-next",
|
|
183
|
-
"path": "actions/compile-next.yaml",
|
|
184
|
-
"digest": "sha256:e0fec702b2e77b4425c90ad47813fe2e9a6a007013d983b5e51243eb0c61433e"
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
"id": "compose-indexer-post-author-fragments",
|
|
188
|
-
"path": "actions/compose-indexer-post-author-fragments.yaml",
|
|
189
|
-
"digest": "sha256:e656e684436c43a10982e99885e3978d02991ac3efe13e1a45954a2f20d8aa08"
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
"id": "configure-code-extraction",
|
|
193
|
-
"path": "actions/configure-code-extraction.yaml",
|
|
194
|
-
"digest": "sha256:db83bf8d71f4bd1869d023b96bb095fbe206018125a528478693920ba9e2ffe3"
|
|
195
|
-
},
|
|
196
76
|
{
|
|
197
77
|
"id": "configure-community-indexer-fallback",
|
|
198
78
|
"path": "actions/configure-community-indexer-fallback.yaml",
|
|
@@ -206,18 +86,13 @@
|
|
|
206
86
|
{
|
|
207
87
|
"id": "configure-indexer-providers",
|
|
208
88
|
"path": "actions/configure-indexer-providers.yaml",
|
|
209
|
-
"digest": "sha256:
|
|
89
|
+
"digest": "sha256:6613ce2baaca4fd75d2cd0cec7274b3aaa5b5bda06c12c22be0c44146ebdf507"
|
|
210
90
|
},
|
|
211
91
|
{
|
|
212
92
|
"id": "configure-package-output",
|
|
213
93
|
"path": "actions/configure-package-output.yaml",
|
|
214
94
|
"digest": "sha256:2f5a682988ce3f32c53cf5131c36cf88e62332e8f27d5daaa0dedfb6e687b55a"
|
|
215
95
|
},
|
|
216
|
-
{
|
|
217
|
-
"id": "configure-prose-lifecycle",
|
|
218
|
-
"path": "actions/configure-prose-lifecycle.yaml",
|
|
219
|
-
"digest": "sha256:226d20be637455b3ffba4a115dd0437d3330354d8a73b8e5313b3af303d53bcc"
|
|
220
|
-
},
|
|
221
96
|
{
|
|
222
97
|
"id": "confirm-index-requirement-workset",
|
|
223
98
|
"path": "actions/confirm-index-requirement-workset.yaml",
|
|
@@ -228,66 +103,16 @@
|
|
|
228
103
|
"path": "actions/confirm-subject-reidentification.yaml",
|
|
229
104
|
"digest": "sha256:60afb798d37641202e10d0dd4ee7d4e7ecb0af7a085484b96264da20fa9853ef"
|
|
230
105
|
},
|
|
231
|
-
{
|
|
232
|
-
"id": "converge-main-index-partition-run",
|
|
233
|
-
"path": "actions/converge-main-index-partition-run.yaml",
|
|
234
|
-
"digest": "sha256:edf4dc5271dd0d9052cace776cc11532ca7f9d6526dd40c5eca76110cb976a8d"
|
|
235
|
-
},
|
|
236
106
|
{
|
|
237
107
|
"id": "discover-markdown-indexer-providers",
|
|
238
108
|
"path": "actions/discover-markdown-indexer-providers.yaml",
|
|
239
109
|
"digest": "sha256:ade21b433c3f0f5abd1940f9227f1184875e08be70298dcb041715f9be4c81b2"
|
|
240
110
|
},
|
|
241
|
-
{
|
|
242
|
-
"id": "evaluate-material-gaps",
|
|
243
|
-
"path": "actions/evaluate-material-gaps.yaml",
|
|
244
|
-
"digest": "sha256:91f31dc5f74725bb929e5844db4ab6813b1ad6c8a94d48518bed3a25b796299d"
|
|
245
|
-
},
|
|
246
|
-
{
|
|
247
|
-
"id": "extract-next",
|
|
248
|
-
"path": "actions/extract-next.yaml",
|
|
249
|
-
"digest": "sha256:3d5e26cbdd912c9be666ce423b19456b31ab67da53c4e01a1a1c7a3dc1e6420a"
|
|
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
|
-
},
|
|
266
111
|
{
|
|
267
112
|
"id": "flush-runtime-events",
|
|
268
113
|
"path": "actions/flush-runtime-events.yaml",
|
|
269
114
|
"digest": "sha256:a5f29f652fc9f5f3775fdf9aad0af837f8c72879a22c11074321923bda49b45a"
|
|
270
115
|
},
|
|
271
|
-
{
|
|
272
|
-
"id": "inspect-code-extraction",
|
|
273
|
-
"path": "actions/inspect-code-extraction.yaml",
|
|
274
|
-
"digest": "sha256:214cf9b0f9645ec7164a779ab5779ccf5b3e3132b10f8f9f666213d048f582b1"
|
|
275
|
-
},
|
|
276
|
-
{
|
|
277
|
-
"id": "inspect-document-classification",
|
|
278
|
-
"path": "actions/inspect-document-classification.yaml",
|
|
279
|
-
"digest": "sha256:973889832e3adfba4fa019b3dfadda35fe22536c44ef97efba2299e6cdd65786"
|
|
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
116
|
{
|
|
292
117
|
"id": "inspect-indexer-dependencies",
|
|
293
118
|
"path": "actions/inspect-indexer-dependencies.yaml",
|
|
@@ -308,11 +133,6 @@
|
|
|
308
133
|
"path": "actions/inspect-markdown-provider-capture.yaml",
|
|
309
134
|
"digest": "sha256:3dd8631da8cb01f24dfe9db2c539e0d523bf77032006856b21a321aa81891d46"
|
|
310
135
|
},
|
|
311
|
-
{
|
|
312
|
-
"id": "inspect-material-answer-review",
|
|
313
|
-
"path": "actions/inspect-material-answer-review.yaml",
|
|
314
|
-
"digest": "sha256:86b88755089150753761e0efd73f118f7ade34b8388199f55ee7197923fa9c77"
|
|
315
|
-
},
|
|
316
136
|
{
|
|
317
137
|
"id": "inspect-repository-recovery",
|
|
318
138
|
"path": "actions/inspect-repository-recovery.yaml",
|
|
@@ -323,11 +143,6 @@
|
|
|
323
143
|
"path": "actions/inspect-review.yaml",
|
|
324
144
|
"digest": "sha256:79ab3605a3b17d227f4c3ae4d207634884e1422c4bb07fc275e98c2bb296f140"
|
|
325
145
|
},
|
|
326
|
-
{
|
|
327
|
-
"id": "inspect-structure",
|
|
328
|
-
"path": "actions/inspect-structure.yaml",
|
|
329
|
-
"digest": "sha256:ee55f4dbf4d2ee4a0e5937cdc118430580d6746ab6c1a8ac9249675cb889ca4c"
|
|
330
|
-
},
|
|
331
146
|
{
|
|
332
147
|
"id": "maintain-evidence",
|
|
333
148
|
"path": "actions/maintain-evidence.yaml",
|
|
@@ -344,60 +159,20 @@
|
|
|
344
159
|
"digest": "sha256:6da47c03bd482b5b0170508b1ddc9e2d0998acff8ea08b0768dbbc3d2386926f"
|
|
345
160
|
},
|
|
346
161
|
{
|
|
347
|
-
"id": "
|
|
348
|
-
"path": "actions/
|
|
349
|
-
"digest": "sha256:
|
|
162
|
+
"id": "materialize-indexer-workset-view",
|
|
163
|
+
"path": "actions/materialize-indexer-workset-view.yaml",
|
|
164
|
+
"digest": "sha256:6ec37969903d7a8c12b792fdc7c4752936af3f8a6cab60ce3d33db2fb5235045"
|
|
350
165
|
},
|
|
351
166
|
{
|
|
352
167
|
"id": "observe-indexer-project",
|
|
353
168
|
"path": "actions/observe-indexer-project.yaml",
|
|
354
169
|
"digest": "sha256:0365519d1db7d6d6292a642f6357b409afae2025a3332024e4173d52d7ebaece"
|
|
355
170
|
},
|
|
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
|
-
},
|
|
371
|
-
{
|
|
372
|
-
"id": "optimize-documents",
|
|
373
|
-
"path": "actions/optimize-documents.yaml",
|
|
374
|
-
"digest": "sha256:5fdd18379742c20af19e8a92e2591dd85270fa4a6af5d0adea6430b43049bebb"
|
|
375
|
-
},
|
|
376
|
-
{
|
|
377
|
-
"id": "override-index-profile-audit",
|
|
378
|
-
"path": "actions/override-index-profile-audit.yaml",
|
|
379
|
-
"digest": "sha256:4ef12f402e86b88e63aeff4848d6e508e2d839b3ec5abe0e341a7ca5cf1cd5ea"
|
|
380
|
-
},
|
|
381
171
|
{
|
|
382
172
|
"id": "prepare-indexer-customization-project",
|
|
383
173
|
"path": "actions/prepare-indexer-customization-project.yaml",
|
|
384
174
|
"digest": "sha256:134b04cb53d2d6f06ffe651ea0b9fd4f523243e01de7a73385a692c7ea521635"
|
|
385
175
|
},
|
|
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
|
-
},
|
|
396
|
-
{
|
|
397
|
-
"id": "preview-extraction-batch",
|
|
398
|
-
"path": "actions/preview-extraction-batch.yaml",
|
|
399
|
-
"digest": "sha256:45e6d8c60a56fde6f1049193b12b708da86a8a67a65b0b1f7cb6034faec44c57"
|
|
400
|
-
},
|
|
401
176
|
{
|
|
402
177
|
"id": "propose-indexer-customization",
|
|
403
178
|
"path": "actions/propose-indexer-customization.yaml",
|
|
@@ -413,21 +188,6 @@
|
|
|
413
188
|
"path": "actions/rebind-indexer-selection-to-requirement.yaml",
|
|
414
189
|
"digest": "sha256:620e75b2c328df1cee0608fe7fc5d5abfaa0522d676339cee3382ca377347990"
|
|
415
190
|
},
|
|
416
|
-
{
|
|
417
|
-
"id": "reconcile-indexer-results",
|
|
418
|
-
"path": "actions/reconcile-indexer-results.yaml",
|
|
419
|
-
"digest": "sha256:6121f000167ce9b1672268da098fea43a461e0c0421176ddccc9c926640d087b"
|
|
420
|
-
},
|
|
421
|
-
{
|
|
422
|
-
"id": "reconcile-review-identities",
|
|
423
|
-
"path": "actions/reconcile-review-identities.yaml",
|
|
424
|
-
"digest": "sha256:aac95cc46ab8a872bdd1cc53cf64e3bbde8cf8dc2d6e9ac2da82bb378fcfe09a"
|
|
425
|
-
},
|
|
426
|
-
{
|
|
427
|
-
"id": "record-index-profile-revision",
|
|
428
|
-
"path": "actions/record-index-profile-revision.yaml",
|
|
429
|
-
"digest": "sha256:aed060f49baad6ccb5ef9d088d96cb3f3567f511c8465cb7d19512d9b8830698"
|
|
430
|
-
},
|
|
431
191
|
{
|
|
432
192
|
"id": "register-source-batch",
|
|
433
193
|
"path": "actions/register-source-batch.yaml",
|
|
@@ -448,46 +208,16 @@
|
|
|
448
208
|
"path": "actions/repair-workspace-state.yaml",
|
|
449
209
|
"digest": "sha256:67296adf5336a7f746e250dc23676972282f88410fb6a6edc41a929e15d1856b"
|
|
450
210
|
},
|
|
451
|
-
{
|
|
452
|
-
"id": "report-index-profile-failure",
|
|
453
|
-
"path": "actions/report-index-profile-failure.yaml",
|
|
454
|
-
"digest": "sha256:ff4c0b73c76f9b074efe8f211f92a823bc35829c91a177adbde92679f50a7b0f"
|
|
455
|
-
},
|
|
456
211
|
{
|
|
457
212
|
"id": "report-indexer-incremental-impact",
|
|
458
213
|
"path": "actions/report-indexer-incremental-impact.yaml",
|
|
459
214
|
"digest": "sha256:74bbbfde59ee2561ca0d1ca966c79f9df374b1bfe79d7e8174012d4ff2a6d13c"
|
|
460
215
|
},
|
|
461
|
-
{
|
|
462
|
-
"id": "resolve-effective-composers",
|
|
463
|
-
"path": "actions/resolve-effective-composers.yaml",
|
|
464
|
-
"digest": "sha256:46877f18d49466675a5f758a7eea6608dca8d68c01bf4a8a75ca22acae6f7adb"
|
|
465
|
-
},
|
|
466
216
|
{
|
|
467
217
|
"id": "restore-repository-sources",
|
|
468
218
|
"path": "actions/restore-repository-sources.yaml",
|
|
469
219
|
"digest": "sha256:58e40ee93d6bd1a9fe11d208fe771b576f8c5ceb05105d3e92a9aecc6b4a7fd8"
|
|
470
220
|
},
|
|
471
|
-
{
|
|
472
|
-
"id": "review-material-answer-candidate",
|
|
473
|
-
"path": "actions/review-material-answer-candidate.yaml",
|
|
474
|
-
"digest": "sha256:b83a407a4ada68abffdf5b2ec04ab60cab274db477ac1fedd4b88f944795be8f"
|
|
475
|
-
},
|
|
476
|
-
{
|
|
477
|
-
"id": "revise-code-index-audit",
|
|
478
|
-
"path": "actions/revise-code-index-audit.yaml",
|
|
479
|
-
"digest": "sha256:0ea9c41b2b698bf3a779381b42d6cd9b7eb9d54718498f3b2875eab4c23a76f6"
|
|
480
|
-
},
|
|
481
|
-
{
|
|
482
|
-
"id": "revise-document",
|
|
483
|
-
"path": "actions/revise-document.yaml",
|
|
484
|
-
"digest": "sha256:605d3808670582da69881c9a2eb8b0de21b42fbdd04c1d04a8fa93513989a08e"
|
|
485
|
-
},
|
|
486
|
-
{
|
|
487
|
-
"id": "revise-index-output",
|
|
488
|
-
"path": "actions/revise-index-output.yaml",
|
|
489
|
-
"digest": "sha256:af126714a12ae57ed9536c89b04bd991644fd341d9911d1b38295ae7b9eab9ab"
|
|
490
|
-
},
|
|
491
221
|
{
|
|
492
222
|
"id": "route-index-requirement-confirmation",
|
|
493
223
|
"path": "actions/route-index-requirement-confirmation.yaml",
|
|
@@ -504,34 +234,14 @@
|
|
|
504
234
|
"digest": "sha256:1223b17c9e3ce35b584df82118b7048d470c6226abaf522dd84d8c797935b7e9"
|
|
505
235
|
},
|
|
506
236
|
{
|
|
507
|
-
"id": "run-indexer-
|
|
508
|
-
"path": "actions/run-indexer-
|
|
509
|
-
"digest": "sha256:
|
|
510
|
-
},
|
|
511
|
-
{
|
|
512
|
-
"id": "run-material-answer-indexers",
|
|
513
|
-
"path": "actions/run-material-answer-indexers.yaml",
|
|
514
|
-
"digest": "sha256:6f1a9ec0563aa6a5202a0f6d9db1f4874340e58ea9284adcad5fe6d4b3e2157c"
|
|
237
|
+
"id": "run-indexer-lifecycle",
|
|
238
|
+
"path": "actions/run-indexer-lifecycle.yaml",
|
|
239
|
+
"digest": "sha256:0a7878fb9454919e63b221ade0f6072cd20114a379fc21e990cfaa0492885aa0"
|
|
515
240
|
},
|
|
516
241
|
{
|
|
517
|
-
"id": "
|
|
518
|
-
"path": "actions/
|
|
519
|
-
"digest": "sha256:
|
|
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
|
-
},
|
|
531
|
-
{
|
|
532
|
-
"id": "submit-code-index-audit",
|
|
533
|
-
"path": "actions/submit-code-index-audit.yaml",
|
|
534
|
-
"digest": "sha256:30ecc7cf9fcae232f9d3075d4410f5753c599bee148e06bf08afe4c219bb45c4"
|
|
242
|
+
"id": "run-indexer-post-author-composer",
|
|
243
|
+
"path": "actions/run-indexer-post-author-composer.yaml",
|
|
244
|
+
"digest": "sha256:ee7cbb72457ec9cdf06c6349c04964f4334958107451ff4ced859143fdf2d3ba"
|
|
535
245
|
},
|
|
536
246
|
{
|
|
537
247
|
"id": "validate-indexer-contract-overlays",
|
|
@@ -566,29 +276,19 @@
|
|
|
566
276
|
],
|
|
567
277
|
"resources": [
|
|
568
278
|
{
|
|
569
|
-
"id": "
|
|
570
|
-
"path": "resources/views/
|
|
571
|
-
"digest": "sha256:
|
|
572
|
-
},
|
|
573
|
-
{
|
|
574
|
-
"id": "context.document-optimization-current",
|
|
575
|
-
"path": "resources/views/document-optimization-current.yaml",
|
|
576
|
-
"digest": "sha256:5c98530b9a33e09445ae5e0f18151f66975106b6a0d327ac27875497c2f7f76d"
|
|
577
|
-
},
|
|
578
|
-
{
|
|
579
|
-
"id": "context.extraction-preview",
|
|
580
|
-
"path": "resources/views/extraction-preview.yaml",
|
|
581
|
-
"digest": "sha256:a23c819c1bddd48485088897179c2487b7509ef25894480b64995a34c9f235be"
|
|
279
|
+
"id": "authorized-indexer-workset-view",
|
|
280
|
+
"path": "resources/views/authorized-indexer-workset-view.yaml",
|
|
281
|
+
"digest": "sha256:149c934835d653c66ac26636922ff8144cfc59893f98953d5bc7d6404cf2ead5"
|
|
582
282
|
},
|
|
583
283
|
{
|
|
584
284
|
"id": "context.package-current",
|
|
585
285
|
"path": "resources/views/package-current.yaml",
|
|
586
|
-
"digest": "sha256:
|
|
286
|
+
"digest": "sha256:0c9cb3469748faca71279cabfc6f895c6adf90fa878369d5fc027169b390ea22"
|
|
587
287
|
},
|
|
588
288
|
{
|
|
589
289
|
"id": "context.review-current",
|
|
590
290
|
"path": "resources/views/review-current.yaml",
|
|
591
|
-
"digest": "sha256:
|
|
291
|
+
"digest": "sha256:0e45a5b090cb9427a46f9596f00aed9e89798a21cf24898cc07abcd10962c502"
|
|
592
292
|
},
|
|
593
293
|
{
|
|
594
294
|
"id": "context.sdk.lark-resources",
|
|
@@ -603,72 +303,42 @@
|
|
|
603
303
|
{
|
|
604
304
|
"id": "context.sdk.package-templates",
|
|
605
305
|
"path": "resources/manuals/reference/package-templates.md",
|
|
606
|
-
"digest": "sha256:
|
|
306
|
+
"digest": "sha256:7dcbf2f0ded7fcdaeac546aa48d9dc0b424db3791cbda764c1c9e5de51eade8d"
|
|
607
307
|
},
|
|
608
308
|
{
|
|
609
309
|
"id": "context.sdk.project-api",
|
|
610
310
|
"path": "resources/manuals/reference/project-api.md",
|
|
611
|
-
"digest": "sha256:
|
|
311
|
+
"digest": "sha256:baecc059e3f1d2f60cab1b7ae55984736f3fbb2a01fd3be3b91572c20c297a5b"
|
|
612
312
|
},
|
|
613
313
|
{
|
|
614
314
|
"id": "context.sdk.template-variables",
|
|
615
315
|
"path": "resources/manuals/reference/template-variables.md",
|
|
616
316
|
"digest": "sha256:5087857c14f9c632aa2b942055cf47043de1e26a455cdec5796b690d41795074"
|
|
617
317
|
},
|
|
618
|
-
{
|
|
619
|
-
"id": "context.semantic.align.align-gates",
|
|
620
|
-
"path": "resources/semantic/align/gates.md",
|
|
621
|
-
"digest": "sha256:517be59f675022a5d9e3fa04f9b35f801a80fc32aa42084dac8bce8a45481fea"
|
|
622
|
-
},
|
|
623
|
-
{
|
|
624
|
-
"id": "context.semantic.align.candidate-resolution",
|
|
625
|
-
"path": "resources/semantic/align/candidate-resolution.md",
|
|
626
|
-
"digest": "sha256:5c34122ec74ebd33b99b73c6c23b11dc7d80bd370133ed5fc77dee7ddadb1598"
|
|
627
|
-
},
|
|
628
|
-
{
|
|
629
|
-
"id": "context.semantic.align.density-profile",
|
|
630
|
-
"path": "resources/semantic/align/density-profile.md",
|
|
631
|
-
"digest": "sha256:824327d88444a37f9d2c2386a8ce63cb07b7496a042ca01ba805dd6d34f7a46d"
|
|
632
|
-
},
|
|
633
|
-
{
|
|
634
|
-
"id": "context.semantic.align.structure-planning",
|
|
635
|
-
"path": "resources/semantic/align/structure-planning.md",
|
|
636
|
-
"digest": "sha256:2930594fe849d3e70d2746c7619cff3ebbe70851c1f00ef3396f3cdf3860949a"
|
|
637
|
-
},
|
|
638
|
-
{
|
|
639
|
-
"id": "context.semantic.compile.index",
|
|
640
|
-
"path": "resources/semantic/compile/index.md",
|
|
641
|
-
"digest": "sha256:4145f6bdc2855e354d00d311448584c3ed4b73849fc1277a2ed72d7be84e9e7c"
|
|
642
|
-
},
|
|
643
318
|
{
|
|
644
319
|
"id": "context.source-boundary",
|
|
645
320
|
"path": "resources/views/source-boundary.yaml",
|
|
646
|
-
"digest": "sha256:
|
|
321
|
+
"digest": "sha256:b4417fd395b542021485d77f7f53c2dc3f8c37ec71714dac59c548f77b93c5fd"
|
|
647
322
|
},
|
|
648
323
|
{
|
|
649
324
|
"id": "context.source-current",
|
|
650
325
|
"path": "resources/views/source-current.yaml",
|
|
651
|
-
"digest": "sha256:
|
|
652
|
-
},
|
|
653
|
-
{
|
|
654
|
-
"id": "context.structure-current",
|
|
655
|
-
"path": "resources/views/structure-current.yaml",
|
|
656
|
-
"digest": "sha256:e1487bbc23388dfe8c72f82f5a64ed5615e7a501be5f62d8d6973b4b49f315a8"
|
|
326
|
+
"digest": "sha256:ab48a0b8a9ce71ad4e4494895ffc3428c97e72715346e7189c13070030cf1ed5"
|
|
657
327
|
},
|
|
658
328
|
{
|
|
659
329
|
"id": "context.verification-current",
|
|
660
330
|
"path": "resources/views/verification-current.yaml",
|
|
661
|
-
"digest": "sha256:
|
|
331
|
+
"digest": "sha256:fefb4e3d2e94a9468d0ae59eb6563ed740cf0c36f6ca22e2681206c5bbee010b"
|
|
662
332
|
},
|
|
663
333
|
{
|
|
664
334
|
"id": "context.workspace-current",
|
|
665
335
|
"path": "resources/views/workspace-current.yaml",
|
|
666
|
-
"digest": "sha256:
|
|
336
|
+
"digest": "sha256:e8a10119eb52a92ebf845cf9e2114bda70160419a0aa3e5e0947b905fccc51df"
|
|
667
337
|
},
|
|
668
338
|
{
|
|
669
339
|
"id": "diagnostic.projection-stale",
|
|
670
340
|
"path": "resources/diagnostics/projection-stale.md",
|
|
671
|
-
"digest": "sha256:
|
|
341
|
+
"digest": "sha256:d1d22317b42e2660c04c931dc50217063b883733a6e6a1abbbc9eb8725c7d9e1"
|
|
672
342
|
},
|
|
673
343
|
{
|
|
674
344
|
"id": "diagnostic.verification",
|
|
@@ -680,21 +350,11 @@
|
|
|
680
350
|
"path": "resources/diagnostics/workspace-state.md",
|
|
681
351
|
"digest": "sha256:276c545e7c9bca6d4e5590f75fe93a4fda49a8ac7454ae6dfea8e8a7dd056718"
|
|
682
352
|
},
|
|
683
|
-
{
|
|
684
|
-
"id": "dialogue.code-extraction",
|
|
685
|
-
"path": "resources/dialogue/code-extraction.md",
|
|
686
|
-
"digest": "sha256:be355208daf818ec81c0521f0ca0e2a05b5229531b1b9259e06afaadab17a879"
|
|
687
|
-
},
|
|
688
353
|
{
|
|
689
354
|
"id": "dialogue.document-capture",
|
|
690
355
|
"path": "resources/dialogue/document-capture.md",
|
|
691
356
|
"digest": "sha256:eab34072dc96d77c0749148463f722d2483d8e7d83899ce489e927176a1178e4"
|
|
692
357
|
},
|
|
693
|
-
{
|
|
694
|
-
"id": "dialogue.document-classification",
|
|
695
|
-
"path": "resources/dialogue/document-classification.md",
|
|
696
|
-
"digest": "sha256:b26f23c9d99a1287f7fd8e59f5700cdeeafca015d731455fa518825c64477f86"
|
|
697
|
-
},
|
|
698
358
|
{
|
|
699
359
|
"id": "dialogue.evidence-maintenance",
|
|
700
360
|
"path": "resources/dialogue/evidence-maintenance.md",
|
|
@@ -703,7 +363,7 @@
|
|
|
703
363
|
{
|
|
704
364
|
"id": "dialogue.human-gates",
|
|
705
365
|
"path": "resources/dialogue/human-gates.md",
|
|
706
|
-
"digest": "sha256:
|
|
366
|
+
"digest": "sha256:475bf5232a544a857ec9fee94ad3c61e2e21c8645cb0992645b06c13caaaafbd"
|
|
707
367
|
},
|
|
708
368
|
{
|
|
709
369
|
"id": "dialogue.knowledge-review",
|
|
@@ -725,61 +385,21 @@
|
|
|
725
385
|
"path": "resources/dialogue/source-boundary.md",
|
|
726
386
|
"digest": "sha256:15d37249d1cb2a8921247c689d81c135911b9933550120fadd8c17237c2c2c29"
|
|
727
387
|
},
|
|
728
|
-
{
|
|
729
|
-
"id": "dialogue.structure-confirmation",
|
|
730
|
-
"path": "resources/dialogue/structure-confirmation.md",
|
|
731
|
-
"digest": "sha256:4f9667860bb555c2cf236237c5a21644b7a2b249a452337d83087fa4c389dc2d"
|
|
732
|
-
},
|
|
733
|
-
{
|
|
734
|
-
"id": "dialogue.workflow-mode-after-capture",
|
|
735
|
-
"path": "resources/dialogue/workflow-mode-after-capture.md",
|
|
736
|
-
"digest": "sha256:4a7ba14b78519ee2486361641342c20ad54a2587571eb1ae1755a5a924ff9903"
|
|
737
|
-
},
|
|
738
388
|
{
|
|
739
389
|
"id": "dialogue.workflow-mode-after-creation",
|
|
740
390
|
"path": "resources/dialogue/workflow-mode-after-creation.md",
|
|
741
391
|
"digest": "sha256:37a4c4766c530baa5b7f52e543b702bed6de6506c6360a041de60571af2292ac"
|
|
742
392
|
},
|
|
743
|
-
{
|
|
744
|
-
"id": "manual.reference.code-extractors",
|
|
745
|
-
"path": "resources/manuals/reference/code-extractors.md",
|
|
746
|
-
"digest": "sha256:21b2756fb91deead40eb290e14b930243d077ce7be59bc2b3f71ccad45d9f78d"
|
|
747
|
-
},
|
|
748
393
|
{
|
|
749
394
|
"id": "procedure.close-and-build",
|
|
750
395
|
"path": "resources/procedures/close-and-build.md",
|
|
751
|
-
"digest": "sha256:
|
|
752
|
-
},
|
|
753
|
-
{
|
|
754
|
-
"id": "procedure.code-extraction",
|
|
755
|
-
"path": "resources/procedures/code-extraction.md",
|
|
756
|
-
"digest": "sha256:b64fcaf0ed923c0b96c811be662e2b026608231ce036f9637396602f731f9187"
|
|
757
|
-
},
|
|
758
|
-
{
|
|
759
|
-
"id": "procedure.code-index-audit",
|
|
760
|
-
"path": "resources/procedures/code-index-audit.md",
|
|
761
|
-
"digest": "sha256:9c32f9be4aeaf0749a3f4b36265c65dccbf2093254a5351c940b7a39bd565bb5"
|
|
396
|
+
"digest": "sha256:dff6754cbd14e5d4701294480b0b7470bed9a0e3cbeae76fced29b57dff6f544"
|
|
762
397
|
},
|
|
763
398
|
{
|
|
764
399
|
"id": "procedure.document-capture",
|
|
765
400
|
"path": "resources/procedures/document-capture.md",
|
|
766
401
|
"digest": "sha256:46a8231e92fcb19db7918938970ace8b4e4c22153fa8cbf0bb8100275bfbbfcf"
|
|
767
402
|
},
|
|
768
|
-
{
|
|
769
|
-
"id": "procedure.document-classification",
|
|
770
|
-
"path": "resources/procedures/document-classification.md",
|
|
771
|
-
"digest": "sha256:d248973ad671531334cd0c9f485183f40a9a78d0125186de5980d6b1099b940b"
|
|
772
|
-
},
|
|
773
|
-
{
|
|
774
|
-
"id": "procedure.document-optimization",
|
|
775
|
-
"path": "resources/procedures/document-optimization.md",
|
|
776
|
-
"digest": "sha256:befefad61c8e9fb400ee0d946d7d728bcbd807faf9f88f8004739be2c27d93aa"
|
|
777
|
-
},
|
|
778
|
-
{
|
|
779
|
-
"id": "procedure.document-revision",
|
|
780
|
-
"path": "resources/procedures/document-revision.md",
|
|
781
|
-
"digest": "sha256:a46498f66070485c019ed70c84640ed12f6374371ca9e6df0f42b93da69c051b"
|
|
782
|
-
},
|
|
783
403
|
{
|
|
784
404
|
"id": "procedure.evidence-maintenance",
|
|
785
405
|
"path": "resources/procedures/evidence-maintenance.md",
|
|
@@ -788,7 +408,7 @@
|
|
|
788
408
|
{
|
|
789
409
|
"id": "procedure.knowledge-review",
|
|
790
410
|
"path": "resources/procedures/knowledge-review.md",
|
|
791
|
-
"digest": "sha256:
|
|
411
|
+
"digest": "sha256:b6037417491598e7d974434a67df0c581b934bcca8ffbedb4e7137cabdfbc82e"
|
|
792
412
|
},
|
|
793
413
|
{
|
|
794
414
|
"id": "procedure.package-output",
|
|
@@ -800,16 +420,6 @@
|
|
|
800
420
|
"path": "resources/procedures/project-configuration.md",
|
|
801
421
|
"digest": "sha256:4e62fe0e5056cedfa9976d38275e5b4c5805d7e3913cb13d26edc78fa04e49ef"
|
|
802
422
|
},
|
|
803
|
-
{
|
|
804
|
-
"id": "procedure.prose-align",
|
|
805
|
-
"path": "resources/procedures/prose-align.md",
|
|
806
|
-
"digest": "sha256:e8357e1e0100d4de39a7c96bb910cdd14e806d0847153ffed6c9a5e784ab72b4"
|
|
807
|
-
},
|
|
808
|
-
{
|
|
809
|
-
"id": "procedure.prose-compile",
|
|
810
|
-
"path": "resources/procedures/prose-compile.md",
|
|
811
|
-
"digest": "sha256:c36ba3dcf9aa11a8759afaab2c9a99859c31acaf5f06456c4e0e6793130b7d6e"
|
|
812
|
-
},
|
|
813
423
|
{
|
|
814
424
|
"id": "procedure.repository-source-recovery",
|
|
815
425
|
"path": "resources/procedures/repository-source-recovery.md",
|
|
@@ -828,7 +438,7 @@
|
|
|
828
438
|
{
|
|
829
439
|
"id": "procedure.source-capture-detailed",
|
|
830
440
|
"path": "resources/procedures/source-capture-detailed.md",
|
|
831
|
-
"digest": "sha256:
|
|
441
|
+
"digest": "sha256:9401006838d303e6263ffb0863be145ca170d93fa7bb3b55e557a6357fa2e136"
|
|
832
442
|
},
|
|
833
443
|
{
|
|
834
444
|
"id": "procedure.verify-and-repair",
|
|
@@ -838,105 +448,10 @@
|
|
|
838
448
|
{
|
|
839
449
|
"id": "resolved-indexer-instructions",
|
|
840
450
|
"path": "resources/views/resolved-indexer-instructions.yaml",
|
|
841
|
-
"digest": "sha256:
|
|
842
|
-
},
|
|
843
|
-
{
|
|
844
|
-
"id": "semantic.code-index.classification",
|
|
845
|
-
"path": "resources/semantic/code-index/classification.md",
|
|
846
|
-
"digest": "sha256:6b76d21d95da84938a0cd044734befefe7a72cc05f2222ef95ff1f8ade982da1"
|
|
847
|
-
},
|
|
848
|
-
{
|
|
849
|
-
"id": "semantic.code-index.template.adapter",
|
|
850
|
-
"path": "resources/semantic/code-index/templates/adapter.md",
|
|
851
|
-
"digest": "sha256:526557b0a33199a6cf8a756f1ccbcab4fd55dddeea8bfe10a0ce08012c7307f3"
|
|
852
|
-
},
|
|
853
|
-
{
|
|
854
|
-
"id": "semantic.code-index.template.api-service",
|
|
855
|
-
"path": "resources/semantic/code-index/templates/api-service.md",
|
|
856
|
-
"digest": "sha256:e9843ae065afe0f3f323c6c8c71c9c40cfbc400093f0d1495019446916d4b5b9"
|
|
857
|
-
},
|
|
858
|
-
{
|
|
859
|
-
"id": "semantic.code-index.template.background-runtime",
|
|
860
|
-
"path": "resources/semantic/code-index/templates/background-runtime.md",
|
|
861
|
-
"digest": "sha256:c55d2fcdc32c5d54e7dcafb62bfeac81df5c2b06a17c60173d7ef9664336a65c"
|
|
862
|
-
},
|
|
863
|
-
{
|
|
864
|
-
"id": "semantic.code-index.template.cli-tool",
|
|
865
|
-
"path": "resources/semantic/code-index/templates/cli-tool.md",
|
|
866
|
-
"digest": "sha256:3583ba14e27f64d72d9ddc8b9eb5dba26ab119600b4cb28b3cbb28d6edb55f63"
|
|
867
|
-
},
|
|
868
|
-
{
|
|
869
|
-
"id": "semantic.code-index.template.contract-source",
|
|
870
|
-
"path": "resources/semantic/code-index/templates/contract-source.md",
|
|
871
|
-
"digest": "sha256:a78950484eb39e3acbbfa7b69e3b8902224c93c72510bfcb181e2e4c7158206a"
|
|
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
|
-
},
|
|
878
|
-
{
|
|
879
|
-
"id": "semantic.code-index.template.cross-module-chain",
|
|
880
|
-
"path": "resources/semantic/code-index/templates/cross-module-chain.md",
|
|
881
|
-
"digest": "sha256:03dc0d936757a55b7c3cf75054a2694023064bed8032dee4d78e6d68a0d6c1bb"
|
|
882
|
-
},
|
|
883
|
-
{
|
|
884
|
-
"id": "semantic.code-index.template.derived-source",
|
|
885
|
-
"path": "resources/semantic/code-index/templates/derived-source.md",
|
|
886
|
-
"digest": "sha256:7d7e5b3f1fa1f958cd4fd30ae8c74e869c0d948dc6a2a36b92b8ebe2f7192be8"
|
|
887
|
-
},
|
|
888
|
-
{
|
|
889
|
-
"id": "semantic.code-index.template.domain-service",
|
|
890
|
-
"path": "resources/semantic/code-index/templates/domain-service.md",
|
|
891
|
-
"digest": "sha256:ce5dfc9e1db5f10efdd9b42cc80de6a5a18d44af9d7093f1defcd7547380f2a3"
|
|
892
|
-
},
|
|
893
|
-
{
|
|
894
|
-
"id": "semantic.code-index.template.event-flow",
|
|
895
|
-
"path": "resources/semantic/code-index/templates/event-flow.md",
|
|
896
|
-
"digest": "sha256:6688bf567042409e183b7dd7fc677c8b2c1c02066ac8a5b53cfaeadfc5cad6c0"
|
|
897
|
-
},
|
|
898
|
-
{
|
|
899
|
-
"id": "semantic.code-index.template.monorepo-container",
|
|
900
|
-
"path": "resources/semantic/code-index/templates/monorepo-container.md",
|
|
901
|
-
"digest": "sha256:f53271c2725322a003d44a40109d1a36e345ea4646f3bfb0cbd80c260dc1de78"
|
|
902
|
-
},
|
|
903
|
-
{
|
|
904
|
-
"id": "semantic.code-index.template.persistence-boundary",
|
|
905
|
-
"path": "resources/semantic/code-index/templates/persistence-boundary.md",
|
|
906
|
-
"digest": "sha256:f25ddc9529c3ccc3c62969c1c3263db674dc307402a73884832c750287eefe67"
|
|
907
|
-
},
|
|
908
|
-
{
|
|
909
|
-
"id": "semantic.code-index.template.plugin-extension",
|
|
910
|
-
"path": "resources/semantic/code-index/templates/plugin-extension.md",
|
|
911
|
-
"digest": "sha256:c804e6dab4ef46761d1cf66fdf8713944d0af48156b8ddefd1f0288f2d0c56af"
|
|
912
|
-
},
|
|
913
|
-
{
|
|
914
|
-
"id": "semantic.code-index.template.protocol-boundary",
|
|
915
|
-
"path": "resources/semantic/code-index/templates/protocol-boundary.md",
|
|
916
|
-
"digest": "sha256:2057242d57d92cf17a98f2148fe6cd7bde3d3f6a9d49288bab21b26e1f0d40cf"
|
|
917
|
-
},
|
|
918
|
-
{
|
|
919
|
-
"id": "semantic.code-index.template.sdk-library",
|
|
920
|
-
"path": "resources/semantic/code-index/templates/sdk-library.md",
|
|
921
|
-
"digest": "sha256:a14f7b006512c00b20194460914aeb2a3e3e345a7ad70859797f4da62bcd265e"
|
|
922
|
-
},
|
|
923
|
-
{
|
|
924
|
-
"id": "semantic.code-index.template.web-application",
|
|
925
|
-
"path": "resources/semantic/code-index/templates/web-application.md",
|
|
926
|
-
"digest": "sha256:44af201561876b8f97ee18284ca76dd1aa8ce8db7800639adacaca49c4bf7dc3"
|
|
451
|
+
"digest": "sha256:f95c0196107b29102d0e66b1277b963ad0e6390a55ed37ebe5ecc12bf6ac9563"
|
|
927
452
|
}
|
|
928
453
|
],
|
|
929
454
|
"schemas": [
|
|
930
|
-
{
|
|
931
|
-
"id": "schemas/code-index-audit-decision.schema.json",
|
|
932
|
-
"path": "schemas/code-index-audit-decision.schema.json",
|
|
933
|
-
"digest": "sha256:96a1bc4b962577c8a5b000a7c619271aed8845109362a6c3e54187c74bf69919"
|
|
934
|
-
},
|
|
935
|
-
{
|
|
936
|
-
"id": "schemas/document-optimization-decisions.schema.json",
|
|
937
|
-
"path": "schemas/document-optimization-decisions.schema.json",
|
|
938
|
-
"digest": "sha256:39f4ce1cff3fff1c05952964d1fd84c05ae550fb691f17d45a99d7bd9c0c7182"
|
|
939
|
-
},
|
|
940
455
|
{
|
|
941
456
|
"id": "schemas/evidence-maintenance-input.schema.json",
|
|
942
457
|
"path": "schemas/evidence-maintenance-input.schema.json",
|
|
@@ -945,12 +460,17 @@
|
|
|
945
460
|
{
|
|
946
461
|
"id": "schemas/indexer-agent-step-input.schema.json",
|
|
947
462
|
"path": "schemas/indexer-agent-step-input.schema.json",
|
|
948
|
-
"digest": "sha256:
|
|
463
|
+
"digest": "sha256:c68dbb23ab7bd5bb3cf655dd3627022889039b8d7a76df0262e9d0b91b276012"
|
|
949
464
|
},
|
|
950
465
|
{
|
|
951
466
|
"id": "schemas/indexer-agent-step-result.schema.json",
|
|
952
467
|
"path": "schemas/indexer-agent-step-result.schema.json",
|
|
953
|
-
"digest": "sha256:
|
|
468
|
+
"digest": "sha256:a26d4fa6c1c12b7c78464bb72b0124baf0cfbf3cc47e9076e9df361e5c160e83"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"id": "schemas/indexer-authorized-workset-view.schema.json",
|
|
472
|
+
"path": "schemas/indexer-authorized-workset-view.schema.json",
|
|
473
|
+
"digest": "sha256:014c28c12a7c387056c004de09459b8412f95eb7a5630ab5f03e956e961b7b33"
|
|
954
474
|
},
|
|
955
475
|
{
|
|
956
476
|
"id": "schemas/indexer-candidate-compile-input.schema.json",
|
|
@@ -962,35 +482,15 @@
|
|
|
962
482
|
"path": "schemas/indexer-candidate-compile-output.schema.json",
|
|
963
483
|
"digest": "sha256:5e08981154c52dfe3a267f11dde23d76c5c57d380f04be63911dd9ce60168fdb"
|
|
964
484
|
},
|
|
965
|
-
{
|
|
966
|
-
"id": "schemas/indexer-candidate-review-readiness-input.schema.json",
|
|
967
|
-
"path": "schemas/indexer-candidate-review-readiness-input.schema.json",
|
|
968
|
-
"digest": "sha256:f3a2f38c6d81ad9d04a224c6ad6c622214bb54e61867da0e05fb657da73dc58c"
|
|
969
|
-
},
|
|
970
|
-
{
|
|
971
|
-
"id": "schemas/indexer-candidate-review-readiness-output.schema.json",
|
|
972
|
-
"path": "schemas/indexer-candidate-review-readiness-output.schema.json",
|
|
973
|
-
"digest": "sha256:dbad68aea79400e0363316c59f72133e96f31b89560011abea6b96665cc7beb3"
|
|
974
|
-
},
|
|
975
|
-
{
|
|
976
|
-
"id": "schemas/indexer-contract-overlay-authorization-input.schema.json",
|
|
977
|
-
"path": "schemas/indexer-contract-overlay-authorization-input.schema.json",
|
|
978
|
-
"digest": "sha256:b5c68597f2723e2acf30358794d607b805101f1003bc139a605446ea40ae3335"
|
|
979
|
-
},
|
|
980
|
-
{
|
|
981
|
-
"id": "schemas/indexer-contract-overlay-authorization-result.schema.json",
|
|
982
|
-
"path": "schemas/indexer-contract-overlay-authorization-result.schema.json",
|
|
983
|
-
"digest": "sha256:3f7a727ccc608f6a8dc6350deca8c57391173f3e30895f8b774693e1794f0776"
|
|
984
|
-
},
|
|
985
485
|
{
|
|
986
486
|
"id": "schemas/indexer-contract-overlay-validation-input.schema.json",
|
|
987
487
|
"path": "schemas/indexer-contract-overlay-validation-input.schema.json",
|
|
988
|
-
"digest": "sha256:
|
|
488
|
+
"digest": "sha256:907f4c63206cd987cfba7d3beacf2f6fdc92e027a2d014ff9fae3df948c1c4e7"
|
|
989
489
|
},
|
|
990
490
|
{
|
|
991
491
|
"id": "schemas/indexer-contract-overlay-validation-result.schema.json",
|
|
992
492
|
"path": "schemas/indexer-contract-overlay-validation-result.schema.json",
|
|
993
|
-
"digest": "sha256:
|
|
493
|
+
"digest": "sha256:4779bc8c5b360a96421a0a534a381a98b222b8372e4fd2254d5975ad7cf6b88d"
|
|
994
494
|
},
|
|
995
495
|
{
|
|
996
496
|
"id": "schemas/indexer-customization-project-preparation-result.schema.json",
|
|
@@ -1027,15 +527,20 @@
|
|
|
1027
527
|
"path": "schemas/indexer-incremental-impact-output.schema.json",
|
|
1028
528
|
"digest": "sha256:613dfbc9f98b4c9d6138f0a9f8eaf8a1d9782139cabaec90ac70887de24afed8"
|
|
1029
529
|
},
|
|
530
|
+
{
|
|
531
|
+
"id": "schemas/indexer-lifecycle-continuation.schema.json",
|
|
532
|
+
"path": "schemas/indexer-lifecycle-continuation.schema.json",
|
|
533
|
+
"digest": "sha256:59afa1e96f9b80f5e6b0884a393e0105272ab48f81178f03eaa57b6ef61e6227"
|
|
534
|
+
},
|
|
1030
535
|
{
|
|
1031
536
|
"id": "schemas/indexer-main-lifecycle-input.schema.json",
|
|
1032
537
|
"path": "schemas/indexer-main-lifecycle-input.schema.json",
|
|
1033
|
-
"digest": "sha256:
|
|
538
|
+
"digest": "sha256:97edf350dce318dee86d5160212be1267c5b266afca36ae619dc147fc2444d7d"
|
|
1034
539
|
},
|
|
1035
540
|
{
|
|
1036
541
|
"id": "schemas/indexer-main-lifecycle-output.schema.json",
|
|
1037
542
|
"path": "schemas/indexer-main-lifecycle-output.schema.json",
|
|
1038
|
-
"digest": "sha256:
|
|
543
|
+
"digest": "sha256:85a92daeecda53cc10c3e7d81d1cf89f20840180a34471518b9dd1d0d0798b5a"
|
|
1039
544
|
},
|
|
1040
545
|
{
|
|
1041
546
|
"id": "schemas/indexer-markdown-provider-capture-input.schema.json",
|
|
@@ -1057,46 +562,6 @@
|
|
|
1057
562
|
"path": "schemas/indexer-markdown-provider-validation-output.schema.json",
|
|
1058
563
|
"digest": "sha256:91f1f8772315337f0351aff66759fb6eaeffbbf493429d2d2c719f08e2572b39"
|
|
1059
564
|
},
|
|
1060
|
-
{
|
|
1061
|
-
"id": "schemas/indexer-material-answer-lifecycle-input.schema.json",
|
|
1062
|
-
"path": "schemas/indexer-material-answer-lifecycle-input.schema.json",
|
|
1063
|
-
"digest": "sha256:c4b0d8aefc5ed5320f4a4ae985c66e4fbf9cb98b38494b1ffe77c412c7b97086"
|
|
1064
|
-
},
|
|
1065
|
-
{
|
|
1066
|
-
"id": "schemas/indexer-material-answer-lifecycle-output.schema.json",
|
|
1067
|
-
"path": "schemas/indexer-material-answer-lifecycle-output.schema.json",
|
|
1068
|
-
"digest": "sha256:18f7e976650a14d65ba783a221a62ba265a3efe23e8e9682c30535eb2e9886af"
|
|
1069
|
-
},
|
|
1070
|
-
{
|
|
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"
|
|
1074
|
-
},
|
|
1075
|
-
{
|
|
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"
|
|
1079
|
-
},
|
|
1080
|
-
{
|
|
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"
|
|
1084
|
-
},
|
|
1085
|
-
{
|
|
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"
|
|
1089
|
-
},
|
|
1090
|
-
{
|
|
1091
|
-
"id": "schemas/indexer-material-gap-lifecycle-input.schema.json",
|
|
1092
|
-
"path": "schemas/indexer-material-gap-lifecycle-input.schema.json",
|
|
1093
|
-
"digest": "sha256:e49de7c57b90532d52aaa546f0fa8e895860ed7e44fc5a9f0709cf4f0c9c2b02"
|
|
1094
|
-
},
|
|
1095
|
-
{
|
|
1096
|
-
"id": "schemas/indexer-material-gap-lifecycle-output.schema.json",
|
|
1097
|
-
"path": "schemas/indexer-material-gap-lifecycle-output.schema.json",
|
|
1098
|
-
"digest": "sha256:efcf96aeaf51d79d07a6bb71400095517c2583a53a1c71a8f563022a3a7f7846"
|
|
1099
|
-
},
|
|
1100
565
|
{
|
|
1101
566
|
"id": "schemas/indexer-materialize-request.schema.json",
|
|
1102
567
|
"path": "schemas/indexer-materialize-request.schema.json",
|
|
@@ -1105,7 +570,7 @@
|
|
|
1105
570
|
{
|
|
1106
571
|
"id": "schemas/indexer-materialized-resource.schema.json",
|
|
1107
572
|
"path": "schemas/indexer-materialized-resource.schema.json",
|
|
1108
|
-
"digest": "sha256:
|
|
573
|
+
"digest": "sha256:8ae851f6e5109d88747e04ca4170a7dcd8529efaa764f857f6eaa7c839cafe23"
|
|
1109
574
|
},
|
|
1110
575
|
{
|
|
1111
576
|
"id": "schemas/indexer-overlay-question-amendment.schema.json",
|
|
@@ -1115,12 +580,12 @@
|
|
|
1115
580
|
{
|
|
1116
581
|
"id": "schemas/indexer-overlay-question-proposal-input.schema.json",
|
|
1117
582
|
"path": "schemas/indexer-overlay-question-proposal-input.schema.json",
|
|
1118
|
-
"digest": "sha256:
|
|
583
|
+
"digest": "sha256:dea723ec8933539692d2ee9721336ee61f807e3c137c73101425a785656cce69"
|
|
1119
584
|
},
|
|
1120
585
|
{
|
|
1121
586
|
"id": "schemas/indexer-overlay-question-rebind-input.schema.json",
|
|
1122
587
|
"path": "schemas/indexer-overlay-question-rebind-input.schema.json",
|
|
1123
|
-
"digest": "sha256:
|
|
588
|
+
"digest": "sha256:57077bfe22409373512ce3726d84b43cd098e1b8ad83962632c938a2b6580937"
|
|
1124
589
|
},
|
|
1125
590
|
{
|
|
1126
591
|
"id": "schemas/indexer-overlay-question-rebind-result.schema.json",
|
|
@@ -1132,66 +597,6 @@
|
|
|
1132
597
|
"path": "schemas/indexer-post-author-fragment-request.schema.json",
|
|
1133
598
|
"digest": "sha256:e8daad85219a68d630673ad2b61269264b15988ba94918aff1dd8bdb0dd1f287"
|
|
1134
599
|
},
|
|
1135
|
-
{
|
|
1136
|
-
"id": "schemas/indexer-post-author-fragment-result.schema.json",
|
|
1137
|
-
"path": "schemas/indexer-post-author-fragment-result.schema.json",
|
|
1138
|
-
"digest": "sha256:06a37616cdb5078374c4a35a992a38bc9583456be1818091283e28df7f164ed3"
|
|
1139
|
-
},
|
|
1140
|
-
{
|
|
1141
|
-
"id": "schemas/indexer-post-author-lifecycle-input.schema.json",
|
|
1142
|
-
"path": "schemas/indexer-post-author-lifecycle-input.schema.json",
|
|
1143
|
-
"digest": "sha256:afce4e1729d9430f3f9f527af11856cbc76a07f91cee06df5efe50d4ea944b0d"
|
|
1144
|
-
},
|
|
1145
|
-
{
|
|
1146
|
-
"id": "schemas/indexer-post-author-lifecycle-output.schema.json",
|
|
1147
|
-
"path": "schemas/indexer-post-author-lifecycle-output.schema.json",
|
|
1148
|
-
"digest": "sha256:e1ae7a6f9bfe0047cf36837ed779a24789ef0c092f259c3b39e0e6c5bf56e1b7"
|
|
1149
|
-
},
|
|
1150
|
-
{
|
|
1151
|
-
"id": "schemas/indexer-profile-failure-inspection-input.schema.json",
|
|
1152
|
-
"path": "schemas/indexer-profile-failure-inspection-input.schema.json",
|
|
1153
|
-
"digest": "sha256:44362552d8837ff6be3325a7dc79092442288ce0153c60de632112956dc0b7ed"
|
|
1154
|
-
},
|
|
1155
|
-
{
|
|
1156
|
-
"id": "schemas/indexer-profile-failure-inspection-result.schema.json",
|
|
1157
|
-
"path": "schemas/indexer-profile-failure-inspection-result.schema.json",
|
|
1158
|
-
"digest": "sha256:39b0ba4e22b3e1c22f3e0898285419c5d3f7b9af2747ba072443c1c96e542f7a"
|
|
1159
|
-
},
|
|
1160
|
-
{
|
|
1161
|
-
"id": "schemas/indexer-profile-failure-report-input.schema.json",
|
|
1162
|
-
"path": "schemas/indexer-profile-failure-report-input.schema.json",
|
|
1163
|
-
"digest": "sha256:c7ab97bd0302a1e1d620f2b8eeab989aff8a340bcb1ae06993c00c2da4406325"
|
|
1164
|
-
},
|
|
1165
|
-
{
|
|
1166
|
-
"id": "schemas/indexer-profile-failure-report-result.schema.json",
|
|
1167
|
-
"path": "schemas/indexer-profile-failure-report-result.schema.json",
|
|
1168
|
-
"digest": "sha256:3c322f5add743d6c56e5ed0ba041fabbe1f8629cb3213342f7949611579f9966"
|
|
1169
|
-
},
|
|
1170
|
-
{
|
|
1171
|
-
"id": "schemas/indexer-profile-override-decision.schema.json",
|
|
1172
|
-
"path": "schemas/indexer-profile-override-decision.schema.json",
|
|
1173
|
-
"digest": "sha256:3163bbf23104cd7dc8d63ae864d6e0dce5d956e16f995720ce292b11b3605958"
|
|
1174
|
-
},
|
|
1175
|
-
{
|
|
1176
|
-
"id": "schemas/indexer-profile-override-result.schema.json",
|
|
1177
|
-
"path": "schemas/indexer-profile-override-result.schema.json",
|
|
1178
|
-
"digest": "sha256:5ca7c399a73d0f0e0cb35ea1948e94d8a6f46e9533987543b5b23ef3cb0a2b1b"
|
|
1179
|
-
},
|
|
1180
|
-
{
|
|
1181
|
-
"id": "schemas/indexer-profile-revision-agent-input.schema.json",
|
|
1182
|
-
"path": "schemas/indexer-profile-revision-agent-input.schema.json",
|
|
1183
|
-
"digest": "sha256:30983189eeae396483d5e36511400a5206da1cdfbfb20a145668e2f542ef17e9"
|
|
1184
|
-
},
|
|
1185
|
-
{
|
|
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
600
|
{
|
|
1196
601
|
"id": "schemas/indexer-program-execution-authorization-input.schema.json",
|
|
1197
602
|
"path": "schemas/indexer-program-execution-authorization-input.schema.json",
|
|
@@ -1242,16 +647,6 @@
|
|
|
1242
647
|
"path": "schemas/indexer-requirement-confirmation-output.schema.json",
|
|
1243
648
|
"digest": "sha256:cd202627606a89b94c6cbf557e17721a3b472f32e2620ea3d60c9f157d2028ef"
|
|
1244
649
|
},
|
|
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
650
|
{
|
|
1256
651
|
"id": "schemas/indexer-selection-proposal-input.schema.json",
|
|
1257
652
|
"path": "schemas/indexer-selection-proposal-input.schema.json",
|
|
@@ -1273,9 +668,9 @@
|
|
|
1273
668
|
"digest": "sha256:78c3f14147f959914f8122b4f749e7a081f48d4b9297e2f2435ef83b2c5307d3"
|
|
1274
669
|
},
|
|
1275
670
|
{
|
|
1276
|
-
"id": "schemas/
|
|
1277
|
-
"path": "schemas/
|
|
1278
|
-
"digest": "sha256:
|
|
671
|
+
"id": "schemas/indexer-workset-view-materialization-request.schema.json",
|
|
672
|
+
"path": "schemas/indexer-workset-view-materialization-request.schema.json",
|
|
673
|
+
"digest": "sha256:a92473ff94633b0f3a884e475b1911a2fc2c9d5e14c6519209eb8af81d126ceb"
|
|
1279
674
|
},
|
|
1280
675
|
{
|
|
1281
676
|
"id": "schemas/repository-source-recovery.schema.json",
|
|
@@ -1289,37 +684,13 @@
|
|
|
1289
684
|
}
|
|
1290
685
|
],
|
|
1291
686
|
"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
687
|
{
|
|
1301
688
|
"path": "actions/accept-package-templates.yaml",
|
|
1302
689
|
"digest": "sha256:e3de218f2dc37c9d3ab9546e408598c7b320f7151e8c520a00770919088a6a66"
|
|
1303
690
|
},
|
|
1304
691
|
{
|
|
1305
|
-
"path": "actions/
|
|
1306
|
-
"digest": "sha256:
|
|
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"
|
|
692
|
+
"path": "actions/advance-current-indexer-lifecycle.yaml",
|
|
693
|
+
"digest": "sha256:9a508060c1de5201f1490317caa388b4554a7d869597001e2b0fdf29b8d904a0"
|
|
1323
694
|
},
|
|
1324
695
|
{
|
|
1325
696
|
"path": "actions/apply-forced-review.yaml",
|
|
@@ -1333,22 +704,6 @@
|
|
|
1333
704
|
"path": "actions/apply-managed-review.yaml",
|
|
1334
705
|
"digest": "sha256:25e2c2c215889dd13a6dec8714bc2b6357f3e01b09cc684f1e82d986e30ef064"
|
|
1335
706
|
},
|
|
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
707
|
{
|
|
1353
708
|
"path": "actions/authorize-indexer-dependencies.yaml",
|
|
1354
709
|
"digest": "sha256:101e3025bcdbbbba5022dd975d3840bb362a7d806afcc18e6fd9c51894905d10"
|
|
@@ -1357,78 +712,22 @@
|
|
|
1357
712
|
"path": "actions/authorize-indexer-program-execution.yaml",
|
|
1358
713
|
"digest": "sha256:95278fbf41dc311151d1d0bad8727fd07390eee740b69e3c08831306466dea94"
|
|
1359
714
|
},
|
|
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
715
|
{
|
|
1377
716
|
"path": "actions/build-next.yaml",
|
|
1378
717
|
"digest": "sha256:a5b8bb7162f14e0cf3056dd1a3e9da05fe45f7b61fcf0aa07f52ca7274256e44"
|
|
1379
718
|
},
|
|
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
719
|
{
|
|
1397
720
|
"path": "actions/capture-next.yaml",
|
|
1398
721
|
"digest": "sha256:409a091eb771d5087408832539a50cb7b6f0c0d25dd47257798df49f5d8b6fc3"
|
|
1399
722
|
},
|
|
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
723
|
{
|
|
1409
724
|
"path": "actions/close-approved-knowledge.yaml",
|
|
1410
725
|
"digest": "sha256:8ef2c1ca0856042b5587e08a324721902fcb61578749f54e5c043440b71f09da"
|
|
1411
726
|
},
|
|
1412
|
-
{
|
|
1413
|
-
"path": "actions/close-indexer-approved-knowledge.yaml",
|
|
1414
|
-
"digest": "sha256:5226e523c44a1f0a6b81bbc26ea53a59f399ccc1695b483649d3cc84d74d752e"
|
|
1415
|
-
},
|
|
1416
727
|
{
|
|
1417
728
|
"path": "actions/compile-indexer-candidates.yaml",
|
|
1418
729
|
"digest": "sha256:e3821f2b67376d844501bae335d33970e36b81a3acc249a9e4834b10b573575e"
|
|
1419
730
|
},
|
|
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
731
|
{
|
|
1433
732
|
"path": "actions/configure-community-indexer-fallback.yaml",
|
|
1434
733
|
"digest": "sha256:a684e957a604f57a3be3201e280b489a6c6275e0dbbd0a614f96ce18e7eaeea8"
|
|
@@ -1439,16 +738,12 @@
|
|
|
1439
738
|
},
|
|
1440
739
|
{
|
|
1441
740
|
"path": "actions/configure-indexer-providers.yaml",
|
|
1442
|
-
"digest": "sha256:
|
|
741
|
+
"digest": "sha256:6613ce2baaca4fd75d2cd0cec7274b3aaa5b5bda06c12c22be0c44146ebdf507"
|
|
1443
742
|
},
|
|
1444
743
|
{
|
|
1445
744
|
"path": "actions/configure-package-output.yaml",
|
|
1446
745
|
"digest": "sha256:2f5a682988ce3f32c53cf5131c36cf88e62332e8f27d5daaa0dedfb6e687b55a"
|
|
1447
746
|
},
|
|
1448
|
-
{
|
|
1449
|
-
"path": "actions/configure-prose-lifecycle.yaml",
|
|
1450
|
-
"digest": "sha256:226d20be637455b3ffba4a115dd0437d3330354d8a73b8e5313b3af303d53bcc"
|
|
1451
|
-
},
|
|
1452
747
|
{
|
|
1453
748
|
"path": "actions/confirm-index-requirement-workset.yaml",
|
|
1454
749
|
"digest": "sha256:b46f5209bd60846d69efa2697facb03be92a37749e89fada4b7f0d9d87800b4e"
|
|
@@ -1457,54 +752,14 @@
|
|
|
1457
752
|
"path": "actions/confirm-subject-reidentification.yaml",
|
|
1458
753
|
"digest": "sha256:60afb798d37641202e10d0dd4ee7d4e7ecb0af7a085484b96264da20fa9853ef"
|
|
1459
754
|
},
|
|
1460
|
-
{
|
|
1461
|
-
"path": "actions/converge-main-index-partition-run.yaml",
|
|
1462
|
-
"digest": "sha256:edf4dc5271dd0d9052cace776cc11532ca7f9d6526dd40c5eca76110cb976a8d"
|
|
1463
|
-
},
|
|
1464
755
|
{
|
|
1465
756
|
"path": "actions/discover-markdown-indexer-providers.yaml",
|
|
1466
757
|
"digest": "sha256:ade21b433c3f0f5abd1940f9227f1184875e08be70298dcb041715f9be4c81b2"
|
|
1467
758
|
},
|
|
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
759
|
{
|
|
1489
760
|
"path": "actions/flush-runtime-events.yaml",
|
|
1490
761
|
"digest": "sha256:a5f29f652fc9f5f3775fdf9aad0af837f8c72879a22c11074321923bda49b45a"
|
|
1491
762
|
},
|
|
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
763
|
{
|
|
1509
764
|
"path": "actions/inspect-indexer-dependencies.yaml",
|
|
1510
765
|
"digest": "sha256:5561937c8ac2e701dd45186881d85b9bfae1ef514e47c777aaf59cbf4859eb7c"
|
|
@@ -1521,10 +776,6 @@
|
|
|
1521
776
|
"path": "actions/inspect-markdown-provider-capture.yaml",
|
|
1522
777
|
"digest": "sha256:3dd8631da8cb01f24dfe9db2c539e0d523bf77032006856b21a321aa81891d46"
|
|
1523
778
|
},
|
|
1524
|
-
{
|
|
1525
|
-
"path": "actions/inspect-material-answer-review.yaml",
|
|
1526
|
-
"digest": "sha256:86b88755089150753761e0efd73f118f7ade34b8388199f55ee7197923fa9c77"
|
|
1527
|
-
},
|
|
1528
779
|
{
|
|
1529
780
|
"path": "actions/inspect-repository-recovery.yaml",
|
|
1530
781
|
"digest": "sha256:6890fc2fb95823753beb7684066ddaac0b02e377c5fe3f568ac75286e00c9e88"
|
|
@@ -1533,10 +784,6 @@
|
|
|
1533
784
|
"path": "actions/inspect-review.yaml",
|
|
1534
785
|
"digest": "sha256:79ab3605a3b17d227f4c3ae4d207634884e1422c4bb07fc275e98c2bb296f140"
|
|
1535
786
|
},
|
|
1536
|
-
{
|
|
1537
|
-
"path": "actions/inspect-structure.yaml",
|
|
1538
|
-
"digest": "sha256:ee55f4dbf4d2ee4a0e5937cdc118430580d6746ab6c1a8ac9249675cb889ca4c"
|
|
1539
|
-
},
|
|
1540
787
|
{
|
|
1541
788
|
"path": "actions/maintain-evidence.yaml",
|
|
1542
789
|
"digest": "sha256:aad5a46717dada265d01caa9f6c872ffe9428b18e7b04450a506966574448aa5"
|
|
@@ -1550,49 +797,17 @@
|
|
|
1550
797
|
"digest": "sha256:6da47c03bd482b5b0170508b1ddc9e2d0998acff8ea08b0768dbbc3d2386926f"
|
|
1551
798
|
},
|
|
1552
799
|
{
|
|
1553
|
-
"path": "actions/
|
|
1554
|
-
"digest": "sha256:
|
|
800
|
+
"path": "actions/materialize-indexer-workset-view.yaml",
|
|
801
|
+
"digest": "sha256:6ec37969903d7a8c12b792fdc7c4752936af3f8a6cab60ce3d33db2fb5235045"
|
|
1555
802
|
},
|
|
1556
803
|
{
|
|
1557
804
|
"path": "actions/observe-indexer-project.yaml",
|
|
1558
805
|
"digest": "sha256:0365519d1db7d6d6292a642f6357b409afae2025a3332024e4173d52d7ebaece"
|
|
1559
806
|
},
|
|
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
807
|
{
|
|
1581
808
|
"path": "actions/prepare-indexer-customization-project.yaml",
|
|
1582
809
|
"digest": "sha256:134b04cb53d2d6f06ffe651ea0b9fd4f523243e01de7a73385a692c7ea521635"
|
|
1583
810
|
},
|
|
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
811
|
{
|
|
1597
812
|
"path": "actions/propose-indexer-customization.yaml",
|
|
1598
813
|
"digest": "sha256:07d1842805d62f5a8a9cef36c602ceee0876c91338493caa61ba3080ccad9bfa"
|
|
@@ -1605,18 +820,6 @@
|
|
|
1605
820
|
"path": "actions/rebind-indexer-selection-to-requirement.yaml",
|
|
1606
821
|
"digest": "sha256:620e75b2c328df1cee0608fe7fc5d5abfaa0522d676339cee3382ca377347990"
|
|
1607
822
|
},
|
|
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
823
|
{
|
|
1621
824
|
"path": "actions/register-source-batch.yaml",
|
|
1622
825
|
"digest": "sha256:506cd677d79363035040b83c30f3444e9d41a886e9532023db6b8a17444ad951"
|
|
@@ -1633,38 +836,14 @@
|
|
|
1633
836
|
"path": "actions/repair-workspace-state.yaml",
|
|
1634
837
|
"digest": "sha256:67296adf5336a7f746e250dc23676972282f88410fb6a6edc41a929e15d1856b"
|
|
1635
838
|
},
|
|
1636
|
-
{
|
|
1637
|
-
"path": "actions/report-index-profile-failure.yaml",
|
|
1638
|
-
"digest": "sha256:ff4c0b73c76f9b074efe8f211f92a823bc35829c91a177adbde92679f50a7b0f"
|
|
1639
|
-
},
|
|
1640
839
|
{
|
|
1641
840
|
"path": "actions/report-indexer-incremental-impact.yaml",
|
|
1642
841
|
"digest": "sha256:74bbbfde59ee2561ca0d1ca966c79f9df374b1bfe79d7e8174012d4ff2a6d13c"
|
|
1643
842
|
},
|
|
1644
|
-
{
|
|
1645
|
-
"path": "actions/resolve-effective-composers.yaml",
|
|
1646
|
-
"digest": "sha256:46877f18d49466675a5f758a7eea6608dca8d68c01bf4a8a75ca22acae6f7adb"
|
|
1647
|
-
},
|
|
1648
843
|
{
|
|
1649
844
|
"path": "actions/restore-repository-sources.yaml",
|
|
1650
845
|
"digest": "sha256:58e40ee93d6bd1a9fe11d208fe771b576f8c5ceb05105d3e92a9aecc6b4a7fd8"
|
|
1651
846
|
},
|
|
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
847
|
{
|
|
1669
848
|
"path": "actions/route-index-requirement-confirmation.yaml",
|
|
1670
849
|
"digest": "sha256:fb69e4931e8f310eead241f7ba468b19c245ac6709967674c3cff2120ae65c98"
|
|
@@ -1678,28 +857,12 @@
|
|
|
1678
857
|
"digest": "sha256:1223b17c9e3ce35b584df82118b7048d470c6226abaf522dd84d8c797935b7e9"
|
|
1679
858
|
},
|
|
1680
859
|
{
|
|
1681
|
-
"path": "actions/run-indexer-
|
|
1682
|
-
"digest": "sha256:
|
|
1683
|
-
},
|
|
1684
|
-
{
|
|
1685
|
-
"path": "actions/run-material-answer-indexers.yaml",
|
|
1686
|
-
"digest": "sha256:6f1a9ec0563aa6a5202a0f6d9db1f4874340e58ea9284adcad5fe6d4b3e2157c"
|
|
860
|
+
"path": "actions/run-indexer-lifecycle.yaml",
|
|
861
|
+
"digest": "sha256:0a7878fb9454919e63b221ade0f6072cd20114a379fc21e990cfaa0492885aa0"
|
|
1687
862
|
},
|
|
1688
863
|
{
|
|
1689
|
-
"path": "actions/
|
|
1690
|
-
"digest": "sha256:
|
|
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"
|
|
864
|
+
"path": "actions/run-indexer-post-author-composer.yaml",
|
|
865
|
+
"digest": "sha256:ee7cbb72457ec9cdf06c6349c04964f4334958107451ff4ced859143fdf2d3ba"
|
|
1703
866
|
},
|
|
1704
867
|
{
|
|
1705
868
|
"path": "actions/validate-indexer-contract-overlays.yaml",
|
|
@@ -1727,23 +890,23 @@
|
|
|
1727
890
|
},
|
|
1728
891
|
{
|
|
1729
892
|
"path": "codes.yaml",
|
|
1730
|
-
"digest": "sha256:
|
|
893
|
+
"digest": "sha256:a7e38ba81565f14b62c82420a34f7f6e6528523920032e54654c5bb4d972fe45"
|
|
1731
894
|
},
|
|
1732
895
|
{
|
|
1733
896
|
"path": "graphs/indexer.yaml",
|
|
1734
|
-
"digest": "sha256:
|
|
897
|
+
"digest": "sha256:96f06bdf25e70d3a344f4d5e670f86b2adb62642d572e80868913fc0d2c90101"
|
|
1735
898
|
},
|
|
1736
899
|
{
|
|
1737
900
|
"path": "graphs/workspace.yaml",
|
|
1738
|
-
"digest": "sha256:
|
|
901
|
+
"digest": "sha256:1442fae4f9821747cd133bfb53ded039c59fc5c21faa02616ce15ae7aa41f8cc"
|
|
1739
902
|
},
|
|
1740
903
|
{
|
|
1741
904
|
"path": "provider.yaml",
|
|
1742
|
-
"digest": "sha256:
|
|
905
|
+
"digest": "sha256:59d02f37dd1dc9b2241c444d6bf341531be906e5516209c3ccd81004d830f1ac"
|
|
1743
906
|
},
|
|
1744
907
|
{
|
|
1745
908
|
"path": "resources/diagnostics/projection-stale.md",
|
|
1746
|
-
"digest": "sha256:
|
|
909
|
+
"digest": "sha256:d1d22317b42e2660c04c931dc50217063b883733a6e6a1abbbc9eb8725c7d9e1"
|
|
1747
910
|
},
|
|
1748
911
|
{
|
|
1749
912
|
"path": "resources/diagnostics/verification.md",
|
|
@@ -1753,25 +916,17 @@
|
|
|
1753
916
|
"path": "resources/diagnostics/workspace-state.md",
|
|
1754
917
|
"digest": "sha256:276c545e7c9bca6d4e5590f75fe93a4fda49a8ac7454ae6dfea8e8a7dd056718"
|
|
1755
918
|
},
|
|
1756
|
-
{
|
|
1757
|
-
"path": "resources/dialogue/code-extraction.md",
|
|
1758
|
-
"digest": "sha256:be355208daf818ec81c0521f0ca0e2a05b5229531b1b9259e06afaadab17a879"
|
|
1759
|
-
},
|
|
1760
919
|
{
|
|
1761
920
|
"path": "resources/dialogue/document-capture.md",
|
|
1762
921
|
"digest": "sha256:eab34072dc96d77c0749148463f722d2483d8e7d83899ce489e927176a1178e4"
|
|
1763
922
|
},
|
|
1764
|
-
{
|
|
1765
|
-
"path": "resources/dialogue/document-classification.md",
|
|
1766
|
-
"digest": "sha256:b26f23c9d99a1287f7fd8e59f5700cdeeafca015d731455fa518825c64477f86"
|
|
1767
|
-
},
|
|
1768
923
|
{
|
|
1769
924
|
"path": "resources/dialogue/evidence-maintenance.md",
|
|
1770
925
|
"digest": "sha256:831ab87f272f9982eb086426302899d3ddc5e9afd582a8628cff2753b6d4115b"
|
|
1771
926
|
},
|
|
1772
927
|
{
|
|
1773
928
|
"path": "resources/dialogue/human-gates.md",
|
|
1774
|
-
"digest": "sha256:
|
|
929
|
+
"digest": "sha256:475bf5232a544a857ec9fee94ad3c61e2e21c8645cb0992645b06c13caaaafbd"
|
|
1775
930
|
},
|
|
1776
931
|
{
|
|
1777
932
|
"path": "resources/dialogue/knowledge-review.md",
|
|
@@ -1789,14 +944,6 @@
|
|
|
1789
944
|
"path": "resources/dialogue/source-boundary.md",
|
|
1790
945
|
"digest": "sha256:15d37249d1cb2a8921247c689d81c135911b9933550120fadd8c17237c2c2c29"
|
|
1791
946
|
},
|
|
1792
|
-
{
|
|
1793
|
-
"path": "resources/dialogue/structure-confirmation.md",
|
|
1794
|
-
"digest": "sha256:4f9667860bb555c2cf236237c5a21644b7a2b249a452337d83087fa4c389dc2d"
|
|
1795
|
-
},
|
|
1796
|
-
{
|
|
1797
|
-
"path": "resources/dialogue/workflow-mode-after-capture.md",
|
|
1798
|
-
"digest": "sha256:4a7ba14b78519ee2486361641342c20ad54a2587571eb1ae1755a5a924ff9903"
|
|
1799
|
-
},
|
|
1800
947
|
{
|
|
1801
948
|
"path": "resources/dialogue/workflow-mode-after-creation.md",
|
|
1802
949
|
"digest": "sha256:37a4c4766c530baa5b7f52e543b702bed6de6506c6360a041de60571af2292ac"
|
|
@@ -1809,17 +956,13 @@
|
|
|
1809
956
|
"path": "resources/manuals/guides/package-outputs.md",
|
|
1810
957
|
"digest": "sha256:d9a279e2a683802f838d9ff1cf49a84de703e9aef7a610cb08ef04ad91bbb88a"
|
|
1811
958
|
},
|
|
1812
|
-
{
|
|
1813
|
-
"path": "resources/manuals/reference/code-extractors.md",
|
|
1814
|
-
"digest": "sha256:21b2756fb91deead40eb290e14b930243d077ce7be59bc2b3f71ccad45d9f78d"
|
|
1815
|
-
},
|
|
1816
959
|
{
|
|
1817
960
|
"path": "resources/manuals/reference/package-templates.md",
|
|
1818
|
-
"digest": "sha256:
|
|
961
|
+
"digest": "sha256:7dcbf2f0ded7fcdaeac546aa48d9dc0b424db3791cbda764c1c9e5de51eade8d"
|
|
1819
962
|
},
|
|
1820
963
|
{
|
|
1821
964
|
"path": "resources/manuals/reference/project-api.md",
|
|
1822
|
-
"digest": "sha256:
|
|
965
|
+
"digest": "sha256:baecc059e3f1d2f60cab1b7ae55984736f3fbb2a01fd3be3b91572c20c297a5b"
|
|
1823
966
|
},
|
|
1824
967
|
{
|
|
1825
968
|
"path": "resources/manuals/reference/template-variables.md",
|
|
@@ -1827,39 +970,19 @@
|
|
|
1827
970
|
},
|
|
1828
971
|
{
|
|
1829
972
|
"path": "resources/procedures/close-and-build.md",
|
|
1830
|
-
"digest": "sha256:
|
|
1831
|
-
},
|
|
1832
|
-
{
|
|
1833
|
-
"path": "resources/procedures/code-extraction.md",
|
|
1834
|
-
"digest": "sha256:b64fcaf0ed923c0b96c811be662e2b026608231ce036f9637396602f731f9187"
|
|
1835
|
-
},
|
|
1836
|
-
{
|
|
1837
|
-
"path": "resources/procedures/code-index-audit.md",
|
|
1838
|
-
"digest": "sha256:9c32f9be4aeaf0749a3f4b36265c65dccbf2093254a5351c940b7a39bd565bb5"
|
|
973
|
+
"digest": "sha256:dff6754cbd14e5d4701294480b0b7470bed9a0e3cbeae76fced29b57dff6f544"
|
|
1839
974
|
},
|
|
1840
975
|
{
|
|
1841
976
|
"path": "resources/procedures/document-capture.md",
|
|
1842
977
|
"digest": "sha256:46a8231e92fcb19db7918938970ace8b4e4c22153fa8cbf0bb8100275bfbbfcf"
|
|
1843
978
|
},
|
|
1844
|
-
{
|
|
1845
|
-
"path": "resources/procedures/document-classification.md",
|
|
1846
|
-
"digest": "sha256:d248973ad671531334cd0c9f485183f40a9a78d0125186de5980d6b1099b940b"
|
|
1847
|
-
},
|
|
1848
|
-
{
|
|
1849
|
-
"path": "resources/procedures/document-optimization.md",
|
|
1850
|
-
"digest": "sha256:befefad61c8e9fb400ee0d946d7d728bcbd807faf9f88f8004739be2c27d93aa"
|
|
1851
|
-
},
|
|
1852
|
-
{
|
|
1853
|
-
"path": "resources/procedures/document-revision.md",
|
|
1854
|
-
"digest": "sha256:a46498f66070485c019ed70c84640ed12f6374371ca9e6df0f42b93da69c051b"
|
|
1855
|
-
},
|
|
1856
979
|
{
|
|
1857
980
|
"path": "resources/procedures/evidence-maintenance.md",
|
|
1858
981
|
"digest": "sha256:2bceea12b4430586e0b6bbaef46dc32ad999f9d2cc373b7db77a88f5fca93ccc"
|
|
1859
982
|
},
|
|
1860
983
|
{
|
|
1861
984
|
"path": "resources/procedures/knowledge-review.md",
|
|
1862
|
-
"digest": "sha256:
|
|
985
|
+
"digest": "sha256:b6037417491598e7d974434a67df0c581b934bcca8ffbedb4e7137cabdfbc82e"
|
|
1863
986
|
},
|
|
1864
987
|
{
|
|
1865
988
|
"path": "resources/procedures/package-output.md",
|
|
@@ -1869,14 +992,6 @@
|
|
|
1869
992
|
"path": "resources/procedures/project-configuration.md",
|
|
1870
993
|
"digest": "sha256:4e62fe0e5056cedfa9976d38275e5b4c5805d7e3913cb13d26edc78fa04e49ef"
|
|
1871
994
|
},
|
|
1872
|
-
{
|
|
1873
|
-
"path": "resources/procedures/prose-align.md",
|
|
1874
|
-
"digest": "sha256:e8357e1e0100d4de39a7c96bb910cdd14e806d0847153ffed6c9a5e784ab72b4"
|
|
1875
|
-
},
|
|
1876
|
-
{
|
|
1877
|
-
"path": "resources/procedures/prose-compile.md",
|
|
1878
|
-
"digest": "sha256:c36ba3dcf9aa11a8759afaab2c9a99859c31acaf5f06456c4e0e6793130b7d6e"
|
|
1879
|
-
},
|
|
1880
995
|
{
|
|
1881
996
|
"path": "resources/procedures/repository-source-recovery.md",
|
|
1882
997
|
"digest": "sha256:af42c0f67d48518e76f4feac1969476fe16e35f591d2dd4432ae57fb31b6f794"
|
|
@@ -1891,151 +1006,43 @@
|
|
|
1891
1006
|
},
|
|
1892
1007
|
{
|
|
1893
1008
|
"path": "resources/procedures/source-capture-detailed.md",
|
|
1894
|
-
"digest": "sha256:
|
|
1009
|
+
"digest": "sha256:9401006838d303e6263ffb0863be145ca170d93fa7bb3b55e557a6357fa2e136"
|
|
1895
1010
|
},
|
|
1896
1011
|
{
|
|
1897
1012
|
"path": "resources/procedures/verify-and-repair.md",
|
|
1898
1013
|
"digest": "sha256:177d6c1f1f263f5c502ad197067a7fdcd5165d7ce2ac778672201c9f90888589"
|
|
1899
1014
|
},
|
|
1900
1015
|
{
|
|
1901
|
-
"path": "resources/
|
|
1902
|
-
"digest": "sha256:
|
|
1903
|
-
},
|
|
1904
|
-
{
|
|
1905
|
-
"path": "resources/semantic/align/density-profile.md",
|
|
1906
|
-
"digest": "sha256:824327d88444a37f9d2c2386a8ce63cb07b7496a042ca01ba805dd6d34f7a46d"
|
|
1907
|
-
},
|
|
1908
|
-
{
|
|
1909
|
-
"path": "resources/semantic/align/gates.md",
|
|
1910
|
-
"digest": "sha256:517be59f675022a5d9e3fa04f9b35f801a80fc32aa42084dac8bce8a45481fea"
|
|
1911
|
-
},
|
|
1912
|
-
{
|
|
1913
|
-
"path": "resources/semantic/align/structure-planning.md",
|
|
1914
|
-
"digest": "sha256:2930594fe849d3e70d2746c7619cff3ebbe70851c1f00ef3396f3cdf3860949a"
|
|
1915
|
-
},
|
|
1916
|
-
{
|
|
1917
|
-
"path": "resources/semantic/code-index/classification.md",
|
|
1918
|
-
"digest": "sha256:6b76d21d95da84938a0cd044734befefe7a72cc05f2222ef95ff1f8ade982da1"
|
|
1919
|
-
},
|
|
1920
|
-
{
|
|
1921
|
-
"path": "resources/semantic/code-index/templates/adapter.md",
|
|
1922
|
-
"digest": "sha256:526557b0a33199a6cf8a756f1ccbcab4fd55dddeea8bfe10a0ce08012c7307f3"
|
|
1923
|
-
},
|
|
1924
|
-
{
|
|
1925
|
-
"path": "resources/semantic/code-index/templates/api-service.md",
|
|
1926
|
-
"digest": "sha256:e9843ae065afe0f3f323c6c8c71c9c40cfbc400093f0d1495019446916d4b5b9"
|
|
1927
|
-
},
|
|
1928
|
-
{
|
|
1929
|
-
"path": "resources/semantic/code-index/templates/background-runtime.md",
|
|
1930
|
-
"digest": "sha256:c55d2fcdc32c5d54e7dcafb62bfeac81df5c2b06a17c60173d7ef9664336a65c"
|
|
1931
|
-
},
|
|
1932
|
-
{
|
|
1933
|
-
"path": "resources/semantic/code-index/templates/cli-tool.md",
|
|
1934
|
-
"digest": "sha256:3583ba14e27f64d72d9ddc8b9eb5dba26ab119600b4cb28b3cbb28d6edb55f63"
|
|
1935
|
-
},
|
|
1936
|
-
{
|
|
1937
|
-
"path": "resources/semantic/code-index/templates/contract-source.md",
|
|
1938
|
-
"digest": "sha256:a78950484eb39e3acbbfa7b69e3b8902224c93c72510bfcb181e2e4c7158206a"
|
|
1939
|
-
},
|
|
1940
|
-
{
|
|
1941
|
-
"path": "resources/semantic/code-index/templates/contracts-and-chains.md",
|
|
1942
|
-
"digest": "sha256:1c37f0fa253cea69371060657d59d0735f1ec2ad6d816b29a4441ce2acc145a3"
|
|
1943
|
-
},
|
|
1944
|
-
{
|
|
1945
|
-
"path": "resources/semantic/code-index/templates/cross-module-chain.md",
|
|
1946
|
-
"digest": "sha256:03dc0d936757a55b7c3cf75054a2694023064bed8032dee4d78e6d68a0d6c1bb"
|
|
1947
|
-
},
|
|
1948
|
-
{
|
|
1949
|
-
"path": "resources/semantic/code-index/templates/derived-source.md",
|
|
1950
|
-
"digest": "sha256:7d7e5b3f1fa1f958cd4fd30ae8c74e869c0d948dc6a2a36b92b8ebe2f7192be8"
|
|
1951
|
-
},
|
|
1952
|
-
{
|
|
1953
|
-
"path": "resources/semantic/code-index/templates/domain-service.md",
|
|
1954
|
-
"digest": "sha256:ce5dfc9e1db5f10efdd9b42cc80de6a5a18d44af9d7093f1defcd7547380f2a3"
|
|
1955
|
-
},
|
|
1956
|
-
{
|
|
1957
|
-
"path": "resources/semantic/code-index/templates/event-flow.md",
|
|
1958
|
-
"digest": "sha256:6688bf567042409e183b7dd7fc677c8b2c1c02066ac8a5b53cfaeadfc5cad6c0"
|
|
1959
|
-
},
|
|
1960
|
-
{
|
|
1961
|
-
"path": "resources/semantic/code-index/templates/monorepo-container.md",
|
|
1962
|
-
"digest": "sha256:f53271c2725322a003d44a40109d1a36e345ea4646f3bfb0cbd80c260dc1de78"
|
|
1963
|
-
},
|
|
1964
|
-
{
|
|
1965
|
-
"path": "resources/semantic/code-index/templates/persistence-boundary.md",
|
|
1966
|
-
"digest": "sha256:f25ddc9529c3ccc3c62969c1c3263db674dc307402a73884832c750287eefe67"
|
|
1967
|
-
},
|
|
1968
|
-
{
|
|
1969
|
-
"path": "resources/semantic/code-index/templates/plugin-extension.md",
|
|
1970
|
-
"digest": "sha256:c804e6dab4ef46761d1cf66fdf8713944d0af48156b8ddefd1f0288f2d0c56af"
|
|
1971
|
-
},
|
|
1972
|
-
{
|
|
1973
|
-
"path": "resources/semantic/code-index/templates/protocol-boundary.md",
|
|
1974
|
-
"digest": "sha256:2057242d57d92cf17a98f2148fe6cd7bde3d3f6a9d49288bab21b26e1f0d40cf"
|
|
1975
|
-
},
|
|
1976
|
-
{
|
|
1977
|
-
"path": "resources/semantic/code-index/templates/sdk-library.md",
|
|
1978
|
-
"digest": "sha256:a14f7b006512c00b20194460914aeb2a3e3e345a7ad70859797f4da62bcd265e"
|
|
1979
|
-
},
|
|
1980
|
-
{
|
|
1981
|
-
"path": "resources/semantic/code-index/templates/web-application.md",
|
|
1982
|
-
"digest": "sha256:44af201561876b8f97ee18284ca76dd1aa8ce8db7800639adacaca49c4bf7dc3"
|
|
1983
|
-
},
|
|
1984
|
-
{
|
|
1985
|
-
"path": "resources/semantic/compile/index.md",
|
|
1986
|
-
"digest": "sha256:4145f6bdc2855e354d00d311448584c3ed4b73849fc1277a2ed72d7be84e9e7c"
|
|
1987
|
-
},
|
|
1988
|
-
{
|
|
1989
|
-
"path": "resources/views/code-index-audit.yaml",
|
|
1990
|
-
"digest": "sha256:b74c2457d2cc2cb37183b6dd1da4c14f198baec56a6cbf6b78c0a1013b38cde6"
|
|
1991
|
-
},
|
|
1992
|
-
{
|
|
1993
|
-
"path": "resources/views/document-optimization-current.yaml",
|
|
1994
|
-
"digest": "sha256:5c98530b9a33e09445ae5e0f18151f66975106b6a0d327ac27875497c2f7f76d"
|
|
1995
|
-
},
|
|
1996
|
-
{
|
|
1997
|
-
"path": "resources/views/extraction-preview.yaml",
|
|
1998
|
-
"digest": "sha256:a23c819c1bddd48485088897179c2487b7509ef25894480b64995a34c9f235be"
|
|
1016
|
+
"path": "resources/views/authorized-indexer-workset-view.yaml",
|
|
1017
|
+
"digest": "sha256:149c934835d653c66ac26636922ff8144cfc59893f98953d5bc7d6404cf2ead5"
|
|
1999
1018
|
},
|
|
2000
1019
|
{
|
|
2001
1020
|
"path": "resources/views/package-current.yaml",
|
|
2002
|
-
"digest": "sha256:
|
|
1021
|
+
"digest": "sha256:0c9cb3469748faca71279cabfc6f895c6adf90fa878369d5fc027169b390ea22"
|
|
2003
1022
|
},
|
|
2004
1023
|
{
|
|
2005
1024
|
"path": "resources/views/resolved-indexer-instructions.yaml",
|
|
2006
|
-
"digest": "sha256:
|
|
1025
|
+
"digest": "sha256:f95c0196107b29102d0e66b1277b963ad0e6390a55ed37ebe5ecc12bf6ac9563"
|
|
2007
1026
|
},
|
|
2008
1027
|
{
|
|
2009
1028
|
"path": "resources/views/review-current.yaml",
|
|
2010
|
-
"digest": "sha256:
|
|
1029
|
+
"digest": "sha256:0e45a5b090cb9427a46f9596f00aed9e89798a21cf24898cc07abcd10962c502"
|
|
2011
1030
|
},
|
|
2012
1031
|
{
|
|
2013
1032
|
"path": "resources/views/source-boundary.yaml",
|
|
2014
|
-
"digest": "sha256:
|
|
1033
|
+
"digest": "sha256:b4417fd395b542021485d77f7f53c2dc3f8c37ec71714dac59c548f77b93c5fd"
|
|
2015
1034
|
},
|
|
2016
1035
|
{
|
|
2017
1036
|
"path": "resources/views/source-current.yaml",
|
|
2018
|
-
"digest": "sha256:
|
|
2019
|
-
},
|
|
2020
|
-
{
|
|
2021
|
-
"path": "resources/views/structure-current.yaml",
|
|
2022
|
-
"digest": "sha256:e1487bbc23388dfe8c72f82f5a64ed5615e7a501be5f62d8d6973b4b49f315a8"
|
|
1037
|
+
"digest": "sha256:ab48a0b8a9ce71ad4e4494895ffc3428c97e72715346e7189c13070030cf1ed5"
|
|
2023
1038
|
},
|
|
2024
1039
|
{
|
|
2025
1040
|
"path": "resources/views/verification-current.yaml",
|
|
2026
|
-
"digest": "sha256:
|
|
1041
|
+
"digest": "sha256:fefb4e3d2e94a9468d0ae59eb6563ed740cf0c36f6ca22e2681206c5bbee010b"
|
|
2027
1042
|
},
|
|
2028
1043
|
{
|
|
2029
1044
|
"path": "resources/views/workspace-current.yaml",
|
|
2030
|
-
"digest": "sha256:
|
|
2031
|
-
},
|
|
2032
|
-
{
|
|
2033
|
-
"path": "schemas/code-index-audit-decision.schema.json",
|
|
2034
|
-
"digest": "sha256:96a1bc4b962577c8a5b000a7c619271aed8845109362a6c3e54187c74bf69919"
|
|
2035
|
-
},
|
|
2036
|
-
{
|
|
2037
|
-
"path": "schemas/document-optimization-decisions.schema.json",
|
|
2038
|
-
"digest": "sha256:39f4ce1cff3fff1c05952964d1fd84c05ae550fb691f17d45a99d7bd9c0c7182"
|
|
1045
|
+
"digest": "sha256:e8a10119eb52a92ebf845cf9e2114bda70160419a0aa3e5e0947b905fccc51df"
|
|
2039
1046
|
},
|
|
2040
1047
|
{
|
|
2041
1048
|
"path": "schemas/evidence-maintenance-input.schema.json",
|
|
@@ -2043,11 +1050,15 @@
|
|
|
2043
1050
|
},
|
|
2044
1051
|
{
|
|
2045
1052
|
"path": "schemas/indexer-agent-step-input.schema.json",
|
|
2046
|
-
"digest": "sha256:
|
|
1053
|
+
"digest": "sha256:c68dbb23ab7bd5bb3cf655dd3627022889039b8d7a76df0262e9d0b91b276012"
|
|
2047
1054
|
},
|
|
2048
1055
|
{
|
|
2049
1056
|
"path": "schemas/indexer-agent-step-result.schema.json",
|
|
2050
|
-
"digest": "sha256:
|
|
1057
|
+
"digest": "sha256:a26d4fa6c1c12b7c78464bb72b0124baf0cfbf3cc47e9076e9df361e5c160e83"
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
"path": "schemas/indexer-authorized-workset-view.schema.json",
|
|
1061
|
+
"digest": "sha256:014c28c12a7c387056c004de09459b8412f95eb7a5630ab5f03e956e961b7b33"
|
|
2051
1062
|
},
|
|
2052
1063
|
{
|
|
2053
1064
|
"path": "schemas/indexer-candidate-compile-input.schema.json",
|
|
@@ -2057,29 +1068,13 @@
|
|
|
2057
1068
|
"path": "schemas/indexer-candidate-compile-output.schema.json",
|
|
2058
1069
|
"digest": "sha256:5e08981154c52dfe3a267f11dde23d76c5c57d380f04be63911dd9ce60168fdb"
|
|
2059
1070
|
},
|
|
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
1071
|
{
|
|
2077
1072
|
"path": "schemas/indexer-contract-overlay-validation-input.schema.json",
|
|
2078
|
-
"digest": "sha256:
|
|
1073
|
+
"digest": "sha256:907f4c63206cd987cfba7d3beacf2f6fdc92e027a2d014ff9fae3df948c1c4e7"
|
|
2079
1074
|
},
|
|
2080
1075
|
{
|
|
2081
1076
|
"path": "schemas/indexer-contract-overlay-validation-result.schema.json",
|
|
2082
|
-
"digest": "sha256:
|
|
1077
|
+
"digest": "sha256:4779bc8c5b360a96421a0a534a381a98b222b8372e4fd2254d5975ad7cf6b88d"
|
|
2083
1078
|
},
|
|
2084
1079
|
{
|
|
2085
1080
|
"path": "schemas/indexer-customization-project-preparation-result.schema.json",
|
|
@@ -2109,13 +1104,17 @@
|
|
|
2109
1104
|
"path": "schemas/indexer-incremental-impact-output.schema.json",
|
|
2110
1105
|
"digest": "sha256:613dfbc9f98b4c9d6138f0a9f8eaf8a1d9782139cabaec90ac70887de24afed8"
|
|
2111
1106
|
},
|
|
1107
|
+
{
|
|
1108
|
+
"path": "schemas/indexer-lifecycle-continuation.schema.json",
|
|
1109
|
+
"digest": "sha256:59afa1e96f9b80f5e6b0884a393e0105272ab48f81178f03eaa57b6ef61e6227"
|
|
1110
|
+
},
|
|
2112
1111
|
{
|
|
2113
1112
|
"path": "schemas/indexer-main-lifecycle-input.schema.json",
|
|
2114
|
-
"digest": "sha256:
|
|
1113
|
+
"digest": "sha256:97edf350dce318dee86d5160212be1267c5b266afca36ae619dc147fc2444d7d"
|
|
2115
1114
|
},
|
|
2116
1115
|
{
|
|
2117
1116
|
"path": "schemas/indexer-main-lifecycle-output.schema.json",
|
|
2118
|
-
"digest": "sha256:
|
|
1117
|
+
"digest": "sha256:85a92daeecda53cc10c3e7d81d1cf89f20840180a34471518b9dd1d0d0798b5a"
|
|
2119
1118
|
},
|
|
2120
1119
|
{
|
|
2121
1120
|
"path": "schemas/indexer-markdown-provider-capture-input.schema.json",
|
|
@@ -2133,45 +1132,13 @@
|
|
|
2133
1132
|
"path": "schemas/indexer-markdown-provider-validation-output.schema.json",
|
|
2134
1133
|
"digest": "sha256:91f1f8772315337f0351aff66759fb6eaeffbbf493429d2d2c719f08e2572b39"
|
|
2135
1134
|
},
|
|
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
1135
|
{
|
|
2169
1136
|
"path": "schemas/indexer-materialize-request.schema.json",
|
|
2170
1137
|
"digest": "sha256:b13bfc9956eda311afd2f5559e67b3e6f824500f2137af7c8f5cece7aa82c7af"
|
|
2171
1138
|
},
|
|
2172
1139
|
{
|
|
2173
1140
|
"path": "schemas/indexer-materialized-resource.schema.json",
|
|
2174
|
-
"digest": "sha256:
|
|
1141
|
+
"digest": "sha256:8ae851f6e5109d88747e04ca4170a7dcd8529efaa764f857f6eaa7c839cafe23"
|
|
2175
1142
|
},
|
|
2176
1143
|
{
|
|
2177
1144
|
"path": "schemas/indexer-overlay-question-amendment.schema.json",
|
|
@@ -2179,11 +1146,11 @@
|
|
|
2179
1146
|
},
|
|
2180
1147
|
{
|
|
2181
1148
|
"path": "schemas/indexer-overlay-question-proposal-input.schema.json",
|
|
2182
|
-
"digest": "sha256:
|
|
1149
|
+
"digest": "sha256:dea723ec8933539692d2ee9721336ee61f807e3c137c73101425a785656cce69"
|
|
2183
1150
|
},
|
|
2184
1151
|
{
|
|
2185
1152
|
"path": "schemas/indexer-overlay-question-rebind-input.schema.json",
|
|
2186
|
-
"digest": "sha256:
|
|
1153
|
+
"digest": "sha256:57077bfe22409373512ce3726d84b43cd098e1b8ad83962632c938a2b6580937"
|
|
2187
1154
|
},
|
|
2188
1155
|
{
|
|
2189
1156
|
"path": "schemas/indexer-overlay-question-rebind-result.schema.json",
|
|
@@ -2193,54 +1160,6 @@
|
|
|
2193
1160
|
"path": "schemas/indexer-post-author-fragment-request.schema.json",
|
|
2194
1161
|
"digest": "sha256:e8daad85219a68d630673ad2b61269264b15988ba94918aff1dd8bdb0dd1f287"
|
|
2195
1162
|
},
|
|
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
1163
|
{
|
|
2245
1164
|
"path": "schemas/indexer-program-execution-authorization-input.schema.json",
|
|
2246
1165
|
"digest": "sha256:ea8be492a994f1dfb39e166977d8ccc7c4fa6df0f6e0504585bfdefe705c1e1d"
|
|
@@ -2281,14 +1200,6 @@
|
|
|
2281
1200
|
"path": "schemas/indexer-requirement-confirmation-output.schema.json",
|
|
2282
1201
|
"digest": "sha256:cd202627606a89b94c6cbf557e17721a3b472f32e2620ea3d60c9f157d2028ef"
|
|
2283
1202
|
},
|
|
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
1203
|
{
|
|
2293
1204
|
"path": "schemas/indexer-selection-proposal-input.schema.json",
|
|
2294
1205
|
"digest": "sha256:de25b302dff137151d11651201482fc1c70218e48c4e84f474fe8c8324145b80"
|
|
@@ -2306,8 +1217,8 @@
|
|
|
2306
1217
|
"digest": "sha256:78c3f14147f959914f8122b4f749e7a081f48d4b9297e2f2435ef83b2c5307d3"
|
|
2307
1218
|
},
|
|
2308
1219
|
{
|
|
2309
|
-
"path": "schemas/
|
|
2310
|
-
"digest": "sha256:
|
|
1220
|
+
"path": "schemas/indexer-workset-view-materialization-request.schema.json",
|
|
1221
|
+
"digest": "sha256:a92473ff94633b0f3a884e475b1911a2fc2c9d5e14c6519209eb8af81d126ceb"
|
|
2311
1222
|
},
|
|
2312
1223
|
{
|
|
2313
1224
|
"path": "schemas/repository-source-recovery.schema.json",
|
|
@@ -2323,7 +1234,7 @@
|
|
|
2323
1234
|
},
|
|
2324
1235
|
{
|
|
2325
1236
|
"path": "skills/configure-indexer-providers/SKILL.md",
|
|
2326
|
-
"digest": "sha256:
|
|
1237
|
+
"digest": "sha256:a85e7bc304d19da6c3bff630e9a5ec7a399468729a8be1578115ae7db0822344"
|
|
2327
1238
|
},
|
|
2328
1239
|
{
|
|
2329
1240
|
"path": "skills/prepare-indexer-customization-project/SKILL.md",
|
|
@@ -2334,21 +1245,21 @@
|
|
|
2334
1245
|
"digest": "sha256:d87245e3f58ea966e8a27d8016655aa833dc30df18464c58889f3a62a700f717"
|
|
2335
1246
|
},
|
|
2336
1247
|
{
|
|
2337
|
-
"path": "skills/
|
|
2338
|
-
"digest": "sha256:
|
|
1248
|
+
"path": "skills/run-indexer-agent-step/SKILL.md",
|
|
1249
|
+
"digest": "sha256:ad3c9564ca9feecee38bea5d4d9a6c40cae8010252df6667ba7b26efa8d91fb7"
|
|
2339
1250
|
},
|
|
2340
1251
|
{
|
|
2341
|
-
"path": "skills/run-indexer-
|
|
2342
|
-
"digest": "sha256:
|
|
1252
|
+
"path": "skills/run-indexer-lifecycle/SKILL.md",
|
|
1253
|
+
"digest": "sha256:968200161e11241e46ea84b03d29a5fa28e17e732184db7fa382699dd1103e5d"
|
|
2343
1254
|
},
|
|
2344
1255
|
{
|
|
2345
1256
|
"path": "skills/run-indexer-post-author-composer/SKILL.md",
|
|
2346
|
-
"digest": "sha256:
|
|
1257
|
+
"digest": "sha256:299a8d823a6d8ba41d0a69b5e94be2b5e4355d6f6ef7d20602f5ab16a6aef395"
|
|
2347
1258
|
}
|
|
2348
1259
|
],
|
|
2349
1260
|
"graphDependencies": {
|
|
2350
1261
|
"indexer": [],
|
|
2351
1262
|
"workspace": []
|
|
2352
1263
|
},
|
|
2353
|
-
"digest": "sha256:
|
|
1264
|
+
"digest": "sha256:2987865e34ee5abaabc8e6fb9e32e41c860cb926fe84980c75b82964a8074f37"
|
|
2354
1265
|
}
|