@c4a/context-cli 0.7.1 → 0.7.5
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 +64945 -81995
- 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 +12 -2
- package/plugins/VERSION +1 -1
- package/plugins/claude/.claude-plugin/plugin.json +1 -1
- package/plugins/claude/commands/context.md +56 -107
- package/plugins/codex/.codex-plugin/plugin.json +2 -2
- package/plugins/codex/skills/context/SKILL.md +56 -107
- package/plugins/cursor/.cursor-plugin/plugin.json +1 -1
- package/plugins/cursor/commands/c4a-context.md +56 -107
- package/plugins/skills/context/SKILL.md +56 -107
- 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/authorize-current-indexer-provider-program.yaml +6 -0
- package/providers/context/actions/configure-indexer-providers.yaml +1 -1
- package/providers/context/actions/finalize-current-indexer-provider-selection.yaml +5 -0
- package/providers/context/actions/materialize-indexer-workset-view.yaml +7 -0
- package/providers/context/actions/resolve-current-indexer-gate.yaml +6 -0
- package/providers/context/actions/resolve-current-indexer-provider.yaml +6 -0
- package/providers/context/actions/run-indexer-lifecycle.yaml +0 -1
- package/providers/context/actions/run-indexer-post-author-composer.yaml +2 -2
- package/providers/context/codes.yaml +8 -22
- package/providers/context/graphs/indexer.yaml +95 -564
- package/providers/context/graphs/workspace.yaml +5 -43
- package/providers/context/manifest.json +119 -678
- package/providers/context/provider.yaml +1 -1
- package/providers/context/resources/dialogue/human-gates.md +3 -3
- package/providers/context/resources/dialogue/knowledge-review.md +6 -3
- package/providers/context/resources/manuals/reference/package-templates.md +2 -3
- package/providers/context/resources/manuals/reference/project-api.md +52 -986
- package/providers/context/resources/procedures/close-and-build.md +8 -23
- package/providers/context/resources/procedures/knowledge-review.md +17 -5
- 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/resolved-indexer-instructions.yaml +2 -4
- package/providers/context/schemas/indexer-agent-step-input.schema.json +71 -21
- package/providers/context/schemas/indexer-agent-step-result.schema.json +385 -32
- package/providers/context/schemas/indexer-authorized-workset-view.schema.json +65 -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-materialize-request.schema.json +4 -8
- package/providers/context/schemas/indexer-materialized-resource.schema.json +8 -1
- package/providers/context/schemas/indexer-overlay-question-proposal-input.schema.json +51 -2
- package/providers/context/schemas/indexer-workset-view-materialization-request.schema.json +35 -0
- package/providers/context/skills/authorize-current-indexer-provider-program/SKILL.md +20 -0
- package/providers/context/skills/configure-indexer-providers/SKILL.md +47 -33
- package/providers/context/skills/resolve-current-indexer-gate/SKILL.md +27 -0
- package/providers/context/skills/resolve-current-indexer-provider/SKILL.md +20 -0
- package/providers/context/skills/run-indexer-agent-step/SKILL.md +49 -10
- package/providers/context/skills/run-indexer-lifecycle/SKILL.md +19 -13
- package/providers/context/skills/run-indexer-post-author-composer/SKILL.md +52 -11
- package/docs/document-optimization.md +0 -82
- package/docs/document-optimization.zh-CN.md +0 -70
- package/indexers/capability-manifest.json +0 -35
- 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/audit-material-gap-state.yaml +0 -8
- package/providers/context/actions/audit-projected-artifact-fan-out.yaml +0 -8
- 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/compose-indexer-post-author-fragments.yaml +0 -7
- 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/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-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/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/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/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-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/resources/procedures/document-revision.md +0 -36
- package/providers/context/resources/views/document-optimization-current.yaml +0 -6
- 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-lifecycle-continuation.schema.json +0 -15
- 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-request.schema.json +0 -26
- 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/skills/revise-index-output/SKILL.md +0 -12
|
@@ -2,46 +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.5"
|
|
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:5fae271985d17e428d2174ecd66bd4c77f561253a299662890dae1f16da357e5"
|
|
13
13
|
},
|
|
14
14
|
{
|
|
15
15
|
"id": "workspace",
|
|
16
16
|
"path": "graphs/workspace.yaml",
|
|
17
|
-
"digest": "sha256:
|
|
17
|
+
"digest": "sha256:fac097fb28162de67f6e6362aba73a7e4c75a490c7ee0275abcfb6fc2bc53713"
|
|
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"
|
|
27
|
+
"id": "advance-current-indexer-lifecycle",
|
|
28
|
+
"path": "actions/advance-current-indexer-lifecycle.yaml",
|
|
29
|
+
"digest": "sha256:9a508060c1de5201f1490317caa388b4554a7d869597001e2b0fdf29b8d904a0"
|
|
45
30
|
},
|
|
46
31
|
{
|
|
47
32
|
"id": "apply-forced-review",
|
|
@@ -59,14 +44,9 @@
|
|
|
59
44
|
"digest": "sha256:25e2c2c215889dd13a6dec8714bc2b6357f3e01b09cc684f1e82d986e30ef064"
|
|
60
45
|
},
|
|
61
46
|
{
|
|
62
|
-
"id": "
|
|
63
|
-
"path": "actions/
|
|
64
|
-
"digest": "sha256:
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"id": "audit-projected-artifact-fan-out",
|
|
68
|
-
"path": "actions/audit-projected-artifact-fan-out.yaml",
|
|
69
|
-
"digest": "sha256:472e61994a2acadac2da4782292b49567f094d6b2899a3d5f48737332c4523f1"
|
|
47
|
+
"id": "authorize-current-indexer-provider-program",
|
|
48
|
+
"path": "actions/authorize-current-indexer-provider-program.yaml",
|
|
49
|
+
"digest": "sha256:6d8e5831a29a7e9c140e8388126f70cd030dbda5718a5ee0a69c8aacf8243dee"
|
|
70
50
|
},
|
|
71
51
|
{
|
|
72
52
|
"id": "authorize-indexer-dependencies",
|
|
@@ -78,86 +58,26 @@
|
|
|
78
58
|
"path": "actions/authorize-indexer-program-execution.yaml",
|
|
79
59
|
"digest": "sha256:95278fbf41dc311151d1d0bad8727fd07390eee740b69e3c08831306466dea94"
|
|
80
60
|
},
|
|
81
|
-
{
|
|
82
|
-
"id": "build-main-index-author-worksets",
|
|
83
|
-
"path": "actions/build-main-index-author-worksets.yaml",
|
|
84
|
-
"digest": "sha256:bb24a48cab5d4ac6f3109a70000bf81d30b1e9e83f595bb6ac892c3d2e1dec54"
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
"id": "build-main-index-catalog-fallback",
|
|
88
|
-
"path": "actions/build-main-index-catalog-fallback.yaml",
|
|
89
|
-
"digest": "sha256:4063dada12583595c9ff1183a50b0d84f9131bc0c280e1e6082efa046dedbf75"
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
"id": "build-main-index-partition-worksets",
|
|
93
|
-
"path": "actions/build-main-index-partition-worksets.yaml",
|
|
94
|
-
"digest": "sha256:b3a0a71925b84f3d20eb4cef9608de215cc2d600749b9bd30f9a42d6b2468d07"
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
"id": "build-material-question-workset",
|
|
98
|
-
"path": "actions/build-material-question-workset.yaml",
|
|
99
|
-
"digest": "sha256:859ece19215833777ca530b468e745d1910e6ef1bdfb12a6d40659390378069a"
|
|
100
|
-
},
|
|
101
61
|
{
|
|
102
62
|
"id": "build-next",
|
|
103
63
|
"path": "actions/build-next.yaml",
|
|
104
64
|
"digest": "sha256:a5b8bb7162f14e0cf3056dd1a3e9da05fe45f7b61fcf0aa07f52ca7274256e44"
|
|
105
65
|
},
|
|
106
|
-
{
|
|
107
|
-
"id": "build-post-author-composer-worksets",
|
|
108
|
-
"path": "actions/build-post-author-composer-worksets.yaml",
|
|
109
|
-
"digest": "sha256:94c448df97e05f0cc3210182e4d5b21035a400bc0679cdeb74329af0d77d0870"
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
"id": "build-question-target-inventory",
|
|
113
|
-
"path": "actions/build-question-target-inventory.yaml",
|
|
114
|
-
"digest": "sha256:a460629e8a675a28d5673a352fab5b5f77b67e4fc78a3d5dd4877d63b79b096a"
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
"id": "build-subject-catalog",
|
|
118
|
-
"path": "actions/build-subject-catalog.yaml",
|
|
119
|
-
"digest": "sha256:5b4d9e34dcae6dc6471f5a46e252ee284a2c210f55e0015e6134086eed80cecc"
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"id": "build-target-resolution-views",
|
|
123
|
-
"path": "actions/build-target-resolution-views.yaml",
|
|
124
|
-
"digest": "sha256:e20d2c7d6b3114581b511f3471f0da56d0edf2c541e4632550b5a921b1c72e8f"
|
|
125
|
-
},
|
|
126
66
|
{
|
|
127
67
|
"id": "capture-next",
|
|
128
68
|
"path": "actions/capture-next.yaml",
|
|
129
69
|
"digest": "sha256:409a091eb771d5087408832539a50cb7b6f0c0d25dd47257798df49f5d8b6fc3"
|
|
130
70
|
},
|
|
131
|
-
{
|
|
132
|
-
"id": "checkpoint-material-answer-review",
|
|
133
|
-
"path": "actions/checkpoint-material-answer-review.yaml",
|
|
134
|
-
"digest": "sha256:ebea7d1dd957a0798b02dbd14dc8ee0a8c0a31407c864fe41dc4706954aa48a4"
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
"id": "checkpoint-material-gaps",
|
|
138
|
-
"path": "actions/checkpoint-material-gaps.yaml",
|
|
139
|
-
"digest": "sha256:33e825a38c86ee56eb9f15caa4af74d334868203ff1083b1f4687dbeb4c3d748"
|
|
140
|
-
},
|
|
141
71
|
{
|
|
142
72
|
"id": "close-approved-knowledge",
|
|
143
73
|
"path": "actions/close-approved-knowledge.yaml",
|
|
144
74
|
"digest": "sha256:8ef2c1ca0856042b5587e08a324721902fcb61578749f54e5c043440b71f09da"
|
|
145
75
|
},
|
|
146
|
-
{
|
|
147
|
-
"id": "close-indexer-approved-knowledge",
|
|
148
|
-
"path": "actions/close-indexer-approved-knowledge.yaml",
|
|
149
|
-
"digest": "sha256:5226e523c44a1f0a6b81bbc26ea53a59f399ccc1695b483649d3cc84d74d752e"
|
|
150
|
-
},
|
|
151
76
|
{
|
|
152
77
|
"id": "compile-indexer-candidates",
|
|
153
78
|
"path": "actions/compile-indexer-candidates.yaml",
|
|
154
79
|
"digest": "sha256:e3821f2b67376d844501bae335d33970e36b81a3acc249a9e4834b10b573575e"
|
|
155
80
|
},
|
|
156
|
-
{
|
|
157
|
-
"id": "compose-indexer-post-author-fragments",
|
|
158
|
-
"path": "actions/compose-indexer-post-author-fragments.yaml",
|
|
159
|
-
"digest": "sha256:e656e684436c43a10982e99885e3978d02991ac3efe13e1a45954a2f20d8aa08"
|
|
160
|
-
},
|
|
161
81
|
{
|
|
162
82
|
"id": "configure-community-indexer-fallback",
|
|
163
83
|
"path": "actions/configure-community-indexer-fallback.yaml",
|
|
@@ -171,7 +91,7 @@
|
|
|
171
91
|
{
|
|
172
92
|
"id": "configure-indexer-providers",
|
|
173
93
|
"path": "actions/configure-indexer-providers.yaml",
|
|
174
|
-
"digest": "sha256:
|
|
94
|
+
"digest": "sha256:6613ce2baaca4fd75d2cd0cec7274b3aaa5b5bda06c12c22be0c44146ebdf507"
|
|
175
95
|
},
|
|
176
96
|
{
|
|
177
97
|
"id": "configure-package-output",
|
|
@@ -188,51 +108,21 @@
|
|
|
188
108
|
"path": "actions/confirm-subject-reidentification.yaml",
|
|
189
109
|
"digest": "sha256:60afb798d37641202e10d0dd4ee7d4e7ecb0af7a085484b96264da20fa9853ef"
|
|
190
110
|
},
|
|
191
|
-
{
|
|
192
|
-
"id": "converge-main-index-partition-run",
|
|
193
|
-
"path": "actions/converge-main-index-partition-run.yaml",
|
|
194
|
-
"digest": "sha256:edf4dc5271dd0d9052cace776cc11532ca7f9d6526dd40c5eca76110cb976a8d"
|
|
195
|
-
},
|
|
196
111
|
{
|
|
197
112
|
"id": "discover-markdown-indexer-providers",
|
|
198
113
|
"path": "actions/discover-markdown-indexer-providers.yaml",
|
|
199
114
|
"digest": "sha256:ade21b433c3f0f5abd1940f9227f1184875e08be70298dcb041715f9be4c81b2"
|
|
200
115
|
},
|
|
201
116
|
{
|
|
202
|
-
"id": "
|
|
203
|
-
"path": "actions/
|
|
204
|
-
"digest": "sha256:
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
"id": "fail-main-index-run",
|
|
208
|
-
"path": "actions/fail-main-index-run.yaml",
|
|
209
|
-
"digest": "sha256:b73dd9bd22188f9e846efa8ea781fdee2566c1a7b9cf7204662f5fde72fa77d1"
|
|
210
|
-
},
|
|
211
|
-
{
|
|
212
|
-
"id": "fail-material-answer-run",
|
|
213
|
-
"path": "actions/fail-material-answer-run.yaml",
|
|
214
|
-
"digest": "sha256:76cb54c8e1dae187e3e889d958e59e1cc368e7267e0c435875b9fe1df2d89f70"
|
|
215
|
-
},
|
|
216
|
-
{
|
|
217
|
-
"id": "fail-post-author-composer-run",
|
|
218
|
-
"path": "actions/fail-post-author-composer-run.yaml",
|
|
219
|
-
"digest": "sha256:26c35ebdfca9a4da92c1af0d7d22a1577594077fe254fef825b976639ca491d7"
|
|
117
|
+
"id": "finalize-current-indexer-provider-selection",
|
|
118
|
+
"path": "actions/finalize-current-indexer-provider-selection.yaml",
|
|
119
|
+
"digest": "sha256:af23c812bfa65f5eb955a11e2b659600f6b0985040bf6da2225c56b0727fe114"
|
|
220
120
|
},
|
|
221
121
|
{
|
|
222
122
|
"id": "flush-runtime-events",
|
|
223
123
|
"path": "actions/flush-runtime-events.yaml",
|
|
224
124
|
"digest": "sha256:a5f29f652fc9f5f3775fdf9aad0af837f8c72879a22c11074321923bda49b45a"
|
|
225
125
|
},
|
|
226
|
-
{
|
|
227
|
-
"id": "inspect-index-candidate-review-readiness",
|
|
228
|
-
"path": "actions/inspect-index-candidate-review-readiness.yaml",
|
|
229
|
-
"digest": "sha256:e798248995a46b3662481143898cec63ae3030c7c8c8ebdeb66a02300c39f83a"
|
|
230
|
-
},
|
|
231
|
-
{
|
|
232
|
-
"id": "inspect-index-profile-failure",
|
|
233
|
-
"path": "actions/inspect-index-profile-failure.yaml",
|
|
234
|
-
"digest": "sha256:f5b7eba151f2df106e894b362ef171bb14adb8ac29ba34b68847865dd864d22c"
|
|
235
|
-
},
|
|
236
126
|
{
|
|
237
127
|
"id": "inspect-indexer-dependencies",
|
|
238
128
|
"path": "actions/inspect-indexer-dependencies.yaml",
|
|
@@ -253,11 +143,6 @@
|
|
|
253
143
|
"path": "actions/inspect-markdown-provider-capture.yaml",
|
|
254
144
|
"digest": "sha256:3dd8631da8cb01f24dfe9db2c539e0d523bf77032006856b21a321aa81891d46"
|
|
255
145
|
},
|
|
256
|
-
{
|
|
257
|
-
"id": "inspect-material-answer-review",
|
|
258
|
-
"path": "actions/inspect-material-answer-review.yaml",
|
|
259
|
-
"digest": "sha256:86b88755089150753761e0efd73f118f7ade34b8388199f55ee7197923fa9c77"
|
|
260
|
-
},
|
|
261
146
|
{
|
|
262
147
|
"id": "inspect-repository-recovery",
|
|
263
148
|
"path": "actions/inspect-repository-recovery.yaml",
|
|
@@ -283,46 +168,21 @@
|
|
|
283
168
|
"path": "actions/materialize-indexer-instructions.yaml",
|
|
284
169
|
"digest": "sha256:6da47c03bd482b5b0170508b1ddc9e2d0998acff8ea08b0768dbbc3d2386926f"
|
|
285
170
|
},
|
|
171
|
+
{
|
|
172
|
+
"id": "materialize-indexer-workset-view",
|
|
173
|
+
"path": "actions/materialize-indexer-workset-view.yaml",
|
|
174
|
+
"digest": "sha256:6ec37969903d7a8c12b792fdc7c4752936af3f8a6cab60ce3d33db2fb5235045"
|
|
175
|
+
},
|
|
286
176
|
{
|
|
287
177
|
"id": "observe-indexer-project",
|
|
288
178
|
"path": "actions/observe-indexer-project.yaml",
|
|
289
179
|
"digest": "sha256:0365519d1db7d6d6292a642f6357b409afae2025a3332024e4173d52d7ebaece"
|
|
290
180
|
},
|
|
291
|
-
{
|
|
292
|
-
"id": "observe-main-index-run-ledger",
|
|
293
|
-
"path": "actions/observe-main-index-run-ledger.yaml",
|
|
294
|
-
"digest": "sha256:c420be99b95acbe7c4b0587292c3423930d4702dd4d769336731e1db3c9c0dcc"
|
|
295
|
-
},
|
|
296
|
-
{
|
|
297
|
-
"id": "observe-material-answer-runs",
|
|
298
|
-
"path": "actions/observe-material-answer-runs.yaml",
|
|
299
|
-
"digest": "sha256:5e8da86a57b7a3859e32a894b89861c533f4e2961f46451374ac2252519ce40a"
|
|
300
|
-
},
|
|
301
|
-
{
|
|
302
|
-
"id": "observe-post-author-composer-worksets",
|
|
303
|
-
"path": "actions/observe-post-author-composer-worksets.yaml",
|
|
304
|
-
"digest": "sha256:ee3757049541d4add6bb8ca3a3e69b388189b49eb6aa7b417ba988b198a7d1fa"
|
|
305
|
-
},
|
|
306
|
-
{
|
|
307
|
-
"id": "override-index-profile-audit",
|
|
308
|
-
"path": "actions/override-index-profile-audit.yaml",
|
|
309
|
-
"digest": "sha256:4ef12f402e86b88e63aeff4848d6e508e2d839b3ec5abe0e341a7ca5cf1cd5ea"
|
|
310
|
-
},
|
|
311
181
|
{
|
|
312
182
|
"id": "prepare-indexer-customization-project",
|
|
313
183
|
"path": "actions/prepare-indexer-customization-project.yaml",
|
|
314
184
|
"digest": "sha256:134b04cb53d2d6f06ffe651ea0b9fd4f523243e01de7a73385a692c7ea521635"
|
|
315
185
|
},
|
|
316
|
-
{
|
|
317
|
-
"id": "prepare-main-index-run-ledger",
|
|
318
|
-
"path": "actions/prepare-main-index-run-ledger.yaml",
|
|
319
|
-
"digest": "sha256:02571e4b34e3e25212a273ac8ac573baca760f99c356e4a2dfdd167ec7ff0681"
|
|
320
|
-
},
|
|
321
|
-
{
|
|
322
|
-
"id": "prepare-material-answer-runs",
|
|
323
|
-
"path": "actions/prepare-material-answer-runs.yaml",
|
|
324
|
-
"digest": "sha256:fc3a7bb385bf9a0a24d56e91387f2bdb61add0af597126f890edc733a9b59cd1"
|
|
325
|
-
},
|
|
326
186
|
{
|
|
327
187
|
"id": "propose-indexer-customization",
|
|
328
188
|
"path": "actions/propose-indexer-customization.yaml",
|
|
@@ -338,21 +198,6 @@
|
|
|
338
198
|
"path": "actions/rebind-indexer-selection-to-requirement.yaml",
|
|
339
199
|
"digest": "sha256:620e75b2c328df1cee0608fe7fc5d5abfaa0522d676339cee3382ca377347990"
|
|
340
200
|
},
|
|
341
|
-
{
|
|
342
|
-
"id": "reconcile-indexer-results",
|
|
343
|
-
"path": "actions/reconcile-indexer-results.yaml",
|
|
344
|
-
"digest": "sha256:6121f000167ce9b1672268da098fea43a461e0c0421176ddccc9c926640d087b"
|
|
345
|
-
},
|
|
346
|
-
{
|
|
347
|
-
"id": "reconcile-review-identities",
|
|
348
|
-
"path": "actions/reconcile-review-identities.yaml",
|
|
349
|
-
"digest": "sha256:aac95cc46ab8a872bdd1cc53cf64e3bbde8cf8dc2d6e9ac2da82bb378fcfe09a"
|
|
350
|
-
},
|
|
351
|
-
{
|
|
352
|
-
"id": "record-index-profile-revision",
|
|
353
|
-
"path": "actions/record-index-profile-revision.yaml",
|
|
354
|
-
"digest": "sha256:aed060f49baad6ccb5ef9d088d96cb3f3567f511c8465cb7d19512d9b8830698"
|
|
355
|
-
},
|
|
356
201
|
{
|
|
357
202
|
"id": "register-source-batch",
|
|
358
203
|
"path": "actions/register-source-batch.yaml",
|
|
@@ -373,41 +218,26 @@
|
|
|
373
218
|
"path": "actions/repair-workspace-state.yaml",
|
|
374
219
|
"digest": "sha256:67296adf5336a7f746e250dc23676972282f88410fb6a6edc41a929e15d1856b"
|
|
375
220
|
},
|
|
376
|
-
{
|
|
377
|
-
"id": "report-index-profile-failure",
|
|
378
|
-
"path": "actions/report-index-profile-failure.yaml",
|
|
379
|
-
"digest": "sha256:ff4c0b73c76f9b074efe8f211f92a823bc35829c91a177adbde92679f50a7b0f"
|
|
380
|
-
},
|
|
381
221
|
{
|
|
382
222
|
"id": "report-indexer-incremental-impact",
|
|
383
223
|
"path": "actions/report-indexer-incremental-impact.yaml",
|
|
384
224
|
"digest": "sha256:74bbbfde59ee2561ca0d1ca966c79f9df374b1bfe79d7e8174012d4ff2a6d13c"
|
|
385
225
|
},
|
|
386
226
|
{
|
|
387
|
-
"id": "resolve-
|
|
388
|
-
"path": "actions/resolve-
|
|
389
|
-
"digest": "sha256:
|
|
227
|
+
"id": "resolve-current-indexer-gate",
|
|
228
|
+
"path": "actions/resolve-current-indexer-gate.yaml",
|
|
229
|
+
"digest": "sha256:1141b2fba9bc91563c9fd5f86b7529cd2d47648a2dde5cac23a67cfef0988cc5"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"id": "resolve-current-indexer-provider",
|
|
233
|
+
"path": "actions/resolve-current-indexer-provider.yaml",
|
|
234
|
+
"digest": "sha256:e7d48b4279bb26ee7d3a2ba04d20492f39362541a7a82eddd1b8e8a38e5bd0e2"
|
|
390
235
|
},
|
|
391
236
|
{
|
|
392
237
|
"id": "restore-repository-sources",
|
|
393
238
|
"path": "actions/restore-repository-sources.yaml",
|
|
394
239
|
"digest": "sha256:58e40ee93d6bd1a9fe11d208fe771b576f8c5ceb05105d3e92a9aecc6b4a7fd8"
|
|
395
240
|
},
|
|
396
|
-
{
|
|
397
|
-
"id": "review-material-answer-candidate",
|
|
398
|
-
"path": "actions/review-material-answer-candidate.yaml",
|
|
399
|
-
"digest": "sha256:b83a407a4ada68abffdf5b2ec04ab60cab274db477ac1fedd4b88f944795be8f"
|
|
400
|
-
},
|
|
401
|
-
{
|
|
402
|
-
"id": "revise-document",
|
|
403
|
-
"path": "actions/revise-document.yaml",
|
|
404
|
-
"digest": "sha256:605d3808670582da69881c9a2eb8b0de21b42fbdd04c1d04a8fa93513989a08e"
|
|
405
|
-
},
|
|
406
|
-
{
|
|
407
|
-
"id": "revise-index-output",
|
|
408
|
-
"path": "actions/revise-index-output.yaml",
|
|
409
|
-
"digest": "sha256:af126714a12ae57ed9536c89b04bd991644fd341d9911d1b38295ae7b9eab9ab"
|
|
410
|
-
},
|
|
411
241
|
{
|
|
412
242
|
"id": "route-index-requirement-confirmation",
|
|
413
243
|
"path": "actions/route-index-requirement-confirmation.yaml",
|
|
@@ -426,32 +256,12 @@
|
|
|
426
256
|
{
|
|
427
257
|
"id": "run-indexer-lifecycle",
|
|
428
258
|
"path": "actions/run-indexer-lifecycle.yaml",
|
|
429
|
-
"digest": "sha256:
|
|
259
|
+
"digest": "sha256:e1287fc63e1da30acb66805f68368b571e2cc628c46a29a699bec9ab76e6a0fa"
|
|
430
260
|
},
|
|
431
261
|
{
|
|
432
262
|
"id": "run-indexer-post-author-composer",
|
|
433
263
|
"path": "actions/run-indexer-post-author-composer.yaml",
|
|
434
|
-
"digest": "sha256:
|
|
435
|
-
},
|
|
436
|
-
{
|
|
437
|
-
"id": "run-material-answer-indexers",
|
|
438
|
-
"path": "actions/run-material-answer-indexers.yaml",
|
|
439
|
-
"digest": "sha256:6f1a9ec0563aa6a5202a0f6d9db1f4874340e58ea9284adcad5fe6d4b3e2157c"
|
|
440
|
-
},
|
|
441
|
-
{
|
|
442
|
-
"id": "start-main-index-run",
|
|
443
|
-
"path": "actions/start-main-index-run.yaml",
|
|
444
|
-
"digest": "sha256:cb840b3eac3b042641d3797a4a2aba447a9ecae5d3999454b3777c8ec4572e03"
|
|
445
|
-
},
|
|
446
|
-
{
|
|
447
|
-
"id": "start-material-answer-run",
|
|
448
|
-
"path": "actions/start-material-answer-run.yaml",
|
|
449
|
-
"digest": "sha256:ef3b42d7e148c046442ae3dfa3028656abfcbbf66a294fe833ba85cd9d8468e6"
|
|
450
|
-
},
|
|
451
|
-
{
|
|
452
|
-
"id": "start-post-author-composer-run",
|
|
453
|
-
"path": "actions/start-post-author-composer-run.yaml",
|
|
454
|
-
"digest": "sha256:8f97cd69b198c21ef27a2d151f7b2111e363b5d664f118dc663145acb19a34ea"
|
|
264
|
+
"digest": "sha256:16b7b05931c05e2a0adb0b90a36a1d4951bff9873233b1a6536ea1f86d971baf"
|
|
455
265
|
},
|
|
456
266
|
{
|
|
457
267
|
"id": "validate-indexer-contract-overlays",
|
|
@@ -486,9 +296,9 @@
|
|
|
486
296
|
],
|
|
487
297
|
"resources": [
|
|
488
298
|
{
|
|
489
|
-
"id": "
|
|
490
|
-
"path": "resources/views/
|
|
491
|
-
"digest": "sha256:
|
|
299
|
+
"id": "authorized-indexer-workset-view",
|
|
300
|
+
"path": "resources/views/authorized-indexer-workset-view.yaml",
|
|
301
|
+
"digest": "sha256:149c934835d653c66ac26636922ff8144cfc59893f98953d5bc7d6404cf2ead5"
|
|
492
302
|
},
|
|
493
303
|
{
|
|
494
304
|
"id": "context.package-current",
|
|
@@ -513,12 +323,12 @@
|
|
|
513
323
|
{
|
|
514
324
|
"id": "context.sdk.package-templates",
|
|
515
325
|
"path": "resources/manuals/reference/package-templates.md",
|
|
516
|
-
"digest": "sha256:
|
|
326
|
+
"digest": "sha256:7dcbf2f0ded7fcdaeac546aa48d9dc0b424db3791cbda764c1c9e5de51eade8d"
|
|
517
327
|
},
|
|
518
328
|
{
|
|
519
329
|
"id": "context.sdk.project-api",
|
|
520
330
|
"path": "resources/manuals/reference/project-api.md",
|
|
521
|
-
"digest": "sha256:
|
|
331
|
+
"digest": "sha256:baecc059e3f1d2f60cab1b7ae55984736f3fbb2a01fd3be3b91572c20c297a5b"
|
|
522
332
|
},
|
|
523
333
|
{
|
|
524
334
|
"id": "context.sdk.template-variables",
|
|
@@ -573,12 +383,12 @@
|
|
|
573
383
|
{
|
|
574
384
|
"id": "dialogue.human-gates",
|
|
575
385
|
"path": "resources/dialogue/human-gates.md",
|
|
576
|
-
"digest": "sha256:
|
|
386
|
+
"digest": "sha256:475bf5232a544a857ec9fee94ad3c61e2e21c8645cb0992645b06c13caaaafbd"
|
|
577
387
|
},
|
|
578
388
|
{
|
|
579
389
|
"id": "dialogue.knowledge-review",
|
|
580
390
|
"path": "resources/dialogue/knowledge-review.md",
|
|
581
|
-
"digest": "sha256:
|
|
391
|
+
"digest": "sha256:f1620c99e0de845b344cac8db291cd895b589388c1db74ad2017f7f2c83c477d"
|
|
582
392
|
},
|
|
583
393
|
{
|
|
584
394
|
"id": "dialogue.package-output",
|
|
@@ -603,18 +413,13 @@
|
|
|
603
413
|
{
|
|
604
414
|
"id": "procedure.close-and-build",
|
|
605
415
|
"path": "resources/procedures/close-and-build.md",
|
|
606
|
-
"digest": "sha256:
|
|
416
|
+
"digest": "sha256:dff6754cbd14e5d4701294480b0b7470bed9a0e3cbeae76fced29b57dff6f544"
|
|
607
417
|
},
|
|
608
418
|
{
|
|
609
419
|
"id": "procedure.document-capture",
|
|
610
420
|
"path": "resources/procedures/document-capture.md",
|
|
611
421
|
"digest": "sha256:46a8231e92fcb19db7918938970ace8b4e4c22153fa8cbf0bb8100275bfbbfcf"
|
|
612
422
|
},
|
|
613
|
-
{
|
|
614
|
-
"id": "procedure.document-revision",
|
|
615
|
-
"path": "resources/procedures/document-revision.md",
|
|
616
|
-
"digest": "sha256:a46498f66070485c019ed70c84640ed12f6374371ca9e6df0f42b93da69c051b"
|
|
617
|
-
},
|
|
618
423
|
{
|
|
619
424
|
"id": "procedure.evidence-maintenance",
|
|
620
425
|
"path": "resources/procedures/evidence-maintenance.md",
|
|
@@ -623,7 +428,7 @@
|
|
|
623
428
|
{
|
|
624
429
|
"id": "procedure.knowledge-review",
|
|
625
430
|
"path": "resources/procedures/knowledge-review.md",
|
|
626
|
-
"digest": "sha256:
|
|
431
|
+
"digest": "sha256:05a0bfb7db3f3aaf2b0fcb86f97cea3d196a364a36769b7ad082b166a1b2acda"
|
|
627
432
|
},
|
|
628
433
|
{
|
|
629
434
|
"id": "procedure.package-output",
|
|
@@ -653,7 +458,7 @@
|
|
|
653
458
|
{
|
|
654
459
|
"id": "procedure.source-capture-detailed",
|
|
655
460
|
"path": "resources/procedures/source-capture-detailed.md",
|
|
656
|
-
"digest": "sha256:
|
|
461
|
+
"digest": "sha256:9401006838d303e6263ffb0863be145ca170d93fa7bb3b55e557a6357fa2e136"
|
|
657
462
|
},
|
|
658
463
|
{
|
|
659
464
|
"id": "procedure.verify-and-repair",
|
|
@@ -663,7 +468,7 @@
|
|
|
663
468
|
{
|
|
664
469
|
"id": "resolved-indexer-instructions",
|
|
665
470
|
"path": "resources/views/resolved-indexer-instructions.yaml",
|
|
666
|
-
"digest": "sha256:
|
|
471
|
+
"digest": "sha256:5bc57e73f5f0795b8867b8dd12c3bf8bc4bac30d05c44e45cfad811d3834e5d6"
|
|
667
472
|
}
|
|
668
473
|
],
|
|
669
474
|
"schemas": [
|
|
@@ -675,12 +480,17 @@
|
|
|
675
480
|
{
|
|
676
481
|
"id": "schemas/indexer-agent-step-input.schema.json",
|
|
677
482
|
"path": "schemas/indexer-agent-step-input.schema.json",
|
|
678
|
-
"digest": "sha256:
|
|
483
|
+
"digest": "sha256:4497216cac113b9d9f01745121df29723f9c8c02c439c1ac89b72a5610bc40fa"
|
|
679
484
|
},
|
|
680
485
|
{
|
|
681
486
|
"id": "schemas/indexer-agent-step-result.schema.json",
|
|
682
487
|
"path": "schemas/indexer-agent-step-result.schema.json",
|
|
683
|
-
"digest": "sha256:
|
|
488
|
+
"digest": "sha256:bb12d02cf36ffcf5dc8a9a2bc006c980b8db44047ff910f3c42607e04ec17b34"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"id": "schemas/indexer-authorized-workset-view.schema.json",
|
|
492
|
+
"path": "schemas/indexer-authorized-workset-view.schema.json",
|
|
493
|
+
"digest": "sha256:014c28c12a7c387056c004de09459b8412f95eb7a5630ab5f03e956e961b7b33"
|
|
684
494
|
},
|
|
685
495
|
{
|
|
686
496
|
"id": "schemas/indexer-candidate-compile-input.schema.json",
|
|
@@ -692,16 +502,6 @@
|
|
|
692
502
|
"path": "schemas/indexer-candidate-compile-output.schema.json",
|
|
693
503
|
"digest": "sha256:5e08981154c52dfe3a267f11dde23d76c5c57d380f04be63911dd9ce60168fdb"
|
|
694
504
|
},
|
|
695
|
-
{
|
|
696
|
-
"id": "schemas/indexer-candidate-review-readiness-input.schema.json",
|
|
697
|
-
"path": "schemas/indexer-candidate-review-readiness-input.schema.json",
|
|
698
|
-
"digest": "sha256:f3a2f38c6d81ad9d04a224c6ad6c622214bb54e61867da0e05fb657da73dc58c"
|
|
699
|
-
},
|
|
700
|
-
{
|
|
701
|
-
"id": "schemas/indexer-candidate-review-readiness-output.schema.json",
|
|
702
|
-
"path": "schemas/indexer-candidate-review-readiness-output.schema.json",
|
|
703
|
-
"digest": "sha256:dbad68aea79400e0363316c59f72133e96f31b89560011abea6b96665cc7beb3"
|
|
704
|
-
},
|
|
705
505
|
{
|
|
706
506
|
"id": "schemas/indexer-contract-overlay-validation-input.schema.json",
|
|
707
507
|
"path": "schemas/indexer-contract-overlay-validation-input.schema.json",
|
|
@@ -747,20 +547,15 @@
|
|
|
747
547
|
"path": "schemas/indexer-incremental-impact-output.schema.json",
|
|
748
548
|
"digest": "sha256:613dfbc9f98b4c9d6138f0a9f8eaf8a1d9782139cabaec90ac70887de24afed8"
|
|
749
549
|
},
|
|
750
|
-
{
|
|
751
|
-
"id": "schemas/indexer-lifecycle-continuation.schema.json",
|
|
752
|
-
"path": "schemas/indexer-lifecycle-continuation.schema.json",
|
|
753
|
-
"digest": "sha256:59afa1e96f9b80f5e6b0884a393e0105272ab48f81178f03eaa57b6ef61e6227"
|
|
754
|
-
},
|
|
755
550
|
{
|
|
756
551
|
"id": "schemas/indexer-main-lifecycle-input.schema.json",
|
|
757
552
|
"path": "schemas/indexer-main-lifecycle-input.schema.json",
|
|
758
|
-
"digest": "sha256:
|
|
553
|
+
"digest": "sha256:97edf350dce318dee86d5160212be1267c5b266afca36ae619dc147fc2444d7d"
|
|
759
554
|
},
|
|
760
555
|
{
|
|
761
556
|
"id": "schemas/indexer-main-lifecycle-output.schema.json",
|
|
762
557
|
"path": "schemas/indexer-main-lifecycle-output.schema.json",
|
|
763
|
-
"digest": "sha256:
|
|
558
|
+
"digest": "sha256:85a92daeecda53cc10c3e7d81d1cf89f20840180a34471518b9dd1d0d0798b5a"
|
|
764
559
|
},
|
|
765
560
|
{
|
|
766
561
|
"id": "schemas/indexer-markdown-provider-capture-input.schema.json",
|
|
@@ -782,55 +577,15 @@
|
|
|
782
577
|
"path": "schemas/indexer-markdown-provider-validation-output.schema.json",
|
|
783
578
|
"digest": "sha256:91f1f8772315337f0351aff66759fb6eaeffbbf493429d2d2c719f08e2572b39"
|
|
784
579
|
},
|
|
785
|
-
{
|
|
786
|
-
"id": "schemas/indexer-material-answer-lifecycle-input.schema.json",
|
|
787
|
-
"path": "schemas/indexer-material-answer-lifecycle-input.schema.json",
|
|
788
|
-
"digest": "sha256:c4b0d8aefc5ed5320f4a4ae985c66e4fbf9cb98b38494b1ffe77c412c7b97086"
|
|
789
|
-
},
|
|
790
|
-
{
|
|
791
|
-
"id": "schemas/indexer-material-answer-lifecycle-output.schema.json",
|
|
792
|
-
"path": "schemas/indexer-material-answer-lifecycle-output.schema.json",
|
|
793
|
-
"digest": "sha256:18f7e976650a14d65ba783a221a62ba265a3efe23e8e9682c30535eb2e9886af"
|
|
794
|
-
},
|
|
795
|
-
{
|
|
796
|
-
"id": "schemas/indexer-material-answer-review-inspection-input.schema.json",
|
|
797
|
-
"path": "schemas/indexer-material-answer-review-inspection-input.schema.json",
|
|
798
|
-
"digest": "sha256:487b8ce606b6063374673ddf71d4da442a7a69d3c7cf8bba90825cbbec7dffa7"
|
|
799
|
-
},
|
|
800
|
-
{
|
|
801
|
-
"id": "schemas/indexer-material-answer-review-inspection-output.schema.json",
|
|
802
|
-
"path": "schemas/indexer-material-answer-review-inspection-output.schema.json",
|
|
803
|
-
"digest": "sha256:044ebe461f1e9983d081f3a2deb386e20196b0b0cc00d2d56967105a62d1e352"
|
|
804
|
-
},
|
|
805
|
-
{
|
|
806
|
-
"id": "schemas/indexer-material-answer-review-resolution-input.schema.json",
|
|
807
|
-
"path": "schemas/indexer-material-answer-review-resolution-input.schema.json",
|
|
808
|
-
"digest": "sha256:79e0254fcbfeba81f6b76f1979a1fe3745f253acefa061913ec13737d30a1cc7"
|
|
809
|
-
},
|
|
810
|
-
{
|
|
811
|
-
"id": "schemas/indexer-material-answer-review-resolution-output.schema.json",
|
|
812
|
-
"path": "schemas/indexer-material-answer-review-resolution-output.schema.json",
|
|
813
|
-
"digest": "sha256:9aa8e922886b999696d43cc0c62b598e0ab0ea50bfc0098a7bfe8c0a0c7b3e1f"
|
|
814
|
-
},
|
|
815
|
-
{
|
|
816
|
-
"id": "schemas/indexer-material-gap-lifecycle-input.schema.json",
|
|
817
|
-
"path": "schemas/indexer-material-gap-lifecycle-input.schema.json",
|
|
818
|
-
"digest": "sha256:e49de7c57b90532d52aaa546f0fa8e895860ed7e44fc5a9f0709cf4f0c9c2b02"
|
|
819
|
-
},
|
|
820
|
-
{
|
|
821
|
-
"id": "schemas/indexer-material-gap-lifecycle-output.schema.json",
|
|
822
|
-
"path": "schemas/indexer-material-gap-lifecycle-output.schema.json",
|
|
823
|
-
"digest": "sha256:efcf96aeaf51d79d07a6bb71400095517c2583a53a1c71a8f563022a3a7f7846"
|
|
824
|
-
},
|
|
825
580
|
{
|
|
826
581
|
"id": "schemas/indexer-materialize-request.schema.json",
|
|
827
582
|
"path": "schemas/indexer-materialize-request.schema.json",
|
|
828
|
-
"digest": "sha256:
|
|
583
|
+
"digest": "sha256:d9d130649c496d86de2534f910c9a0a18961a2d7b3faf670cc48b83e01e2bdc9"
|
|
829
584
|
},
|
|
830
585
|
{
|
|
831
586
|
"id": "schemas/indexer-materialized-resource.schema.json",
|
|
832
587
|
"path": "schemas/indexer-materialized-resource.schema.json",
|
|
833
|
-
"digest": "sha256:
|
|
588
|
+
"digest": "sha256:8ae851f6e5109d88747e04ca4170a7dcd8529efaa764f857f6eaa7c839cafe23"
|
|
834
589
|
},
|
|
835
590
|
{
|
|
836
591
|
"id": "schemas/indexer-overlay-question-amendment.schema.json",
|
|
@@ -840,7 +595,7 @@
|
|
|
840
595
|
{
|
|
841
596
|
"id": "schemas/indexer-overlay-question-proposal-input.schema.json",
|
|
842
597
|
"path": "schemas/indexer-overlay-question-proposal-input.schema.json",
|
|
843
|
-
"digest": "sha256:
|
|
598
|
+
"digest": "sha256:dea723ec8933539692d2ee9721336ee61f807e3c137c73101425a785656cce69"
|
|
844
599
|
},
|
|
845
600
|
{
|
|
846
601
|
"id": "schemas/indexer-overlay-question-rebind-input.schema.json",
|
|
@@ -852,71 +607,6 @@
|
|
|
852
607
|
"path": "schemas/indexer-overlay-question-rebind-result.schema.json",
|
|
853
608
|
"digest": "sha256:d2961b0f56dba1cc2695141f82d3f6b31362f48eb9f93e7361fc23da1e200466"
|
|
854
609
|
},
|
|
855
|
-
{
|
|
856
|
-
"id": "schemas/indexer-post-author-fragment-request.schema.json",
|
|
857
|
-
"path": "schemas/indexer-post-author-fragment-request.schema.json",
|
|
858
|
-
"digest": "sha256:e8daad85219a68d630673ad2b61269264b15988ba94918aff1dd8bdb0dd1f287"
|
|
859
|
-
},
|
|
860
|
-
{
|
|
861
|
-
"id": "schemas/indexer-post-author-fragment-result.schema.json",
|
|
862
|
-
"path": "schemas/indexer-post-author-fragment-result.schema.json",
|
|
863
|
-
"digest": "sha256:06a37616cdb5078374c4a35a992a38bc9583456be1818091283e28df7f164ed3"
|
|
864
|
-
},
|
|
865
|
-
{
|
|
866
|
-
"id": "schemas/indexer-post-author-lifecycle-input.schema.json",
|
|
867
|
-
"path": "schemas/indexer-post-author-lifecycle-input.schema.json",
|
|
868
|
-
"digest": "sha256:afce4e1729d9430f3f9f527af11856cbc76a07f91cee06df5efe50d4ea944b0d"
|
|
869
|
-
},
|
|
870
|
-
{
|
|
871
|
-
"id": "schemas/indexer-post-author-lifecycle-output.schema.json",
|
|
872
|
-
"path": "schemas/indexer-post-author-lifecycle-output.schema.json",
|
|
873
|
-
"digest": "sha256:e1ae7a6f9bfe0047cf36837ed779a24789ef0c092f259c3b39e0e6c5bf56e1b7"
|
|
874
|
-
},
|
|
875
|
-
{
|
|
876
|
-
"id": "schemas/indexer-profile-failure-inspection-input.schema.json",
|
|
877
|
-
"path": "schemas/indexer-profile-failure-inspection-input.schema.json",
|
|
878
|
-
"digest": "sha256:44362552d8837ff6be3325a7dc79092442288ce0153c60de632112956dc0b7ed"
|
|
879
|
-
},
|
|
880
|
-
{
|
|
881
|
-
"id": "schemas/indexer-profile-failure-inspection-result.schema.json",
|
|
882
|
-
"path": "schemas/indexer-profile-failure-inspection-result.schema.json",
|
|
883
|
-
"digest": "sha256:39b0ba4e22b3e1c22f3e0898285419c5d3f7b9af2747ba072443c1c96e542f7a"
|
|
884
|
-
},
|
|
885
|
-
{
|
|
886
|
-
"id": "schemas/indexer-profile-failure-report-input.schema.json",
|
|
887
|
-
"path": "schemas/indexer-profile-failure-report-input.schema.json",
|
|
888
|
-
"digest": "sha256:c7ab97bd0302a1e1d620f2b8eeab989aff8a340bcb1ae06993c00c2da4406325"
|
|
889
|
-
},
|
|
890
|
-
{
|
|
891
|
-
"id": "schemas/indexer-profile-failure-report-result.schema.json",
|
|
892
|
-
"path": "schemas/indexer-profile-failure-report-result.schema.json",
|
|
893
|
-
"digest": "sha256:3c322f5add743d6c56e5ed0ba041fabbe1f8629cb3213342f7949611579f9966"
|
|
894
|
-
},
|
|
895
|
-
{
|
|
896
|
-
"id": "schemas/indexer-profile-override-decision.schema.json",
|
|
897
|
-
"path": "schemas/indexer-profile-override-decision.schema.json",
|
|
898
|
-
"digest": "sha256:3163bbf23104cd7dc8d63ae864d6e0dce5d956e16f995720ce292b11b3605958"
|
|
899
|
-
},
|
|
900
|
-
{
|
|
901
|
-
"id": "schemas/indexer-profile-override-result.schema.json",
|
|
902
|
-
"path": "schemas/indexer-profile-override-result.schema.json",
|
|
903
|
-
"digest": "sha256:5ca7c399a73d0f0e0cb35ea1948e94d8a6f46e9533987543b5b23ef3cb0a2b1b"
|
|
904
|
-
},
|
|
905
|
-
{
|
|
906
|
-
"id": "schemas/indexer-profile-revision-agent-input.schema.json",
|
|
907
|
-
"path": "schemas/indexer-profile-revision-agent-input.schema.json",
|
|
908
|
-
"digest": "sha256:30983189eeae396483d5e36511400a5206da1cdfbfb20a145668e2f542ef17e9"
|
|
909
|
-
},
|
|
910
|
-
{
|
|
911
|
-
"id": "schemas/indexer-profile-revision-record-input.schema.json",
|
|
912
|
-
"path": "schemas/indexer-profile-revision-record-input.schema.json",
|
|
913
|
-
"digest": "sha256:e2e8cff4870a2563a3492367397a69486b7c4c4f6a74f26df6e2915ef4fc1313"
|
|
914
|
-
},
|
|
915
|
-
{
|
|
916
|
-
"id": "schemas/indexer-profile-revision-record-result.schema.json",
|
|
917
|
-
"path": "schemas/indexer-profile-revision-record-result.schema.json",
|
|
918
|
-
"digest": "sha256:284c764593db89f9d7318f90d0e368e03d9282fae678b7f0f417404de8da4f45"
|
|
919
|
-
},
|
|
920
610
|
{
|
|
921
611
|
"id": "schemas/indexer-program-execution-authorization-input.schema.json",
|
|
922
612
|
"path": "schemas/indexer-program-execution-authorization-input.schema.json",
|
|
@@ -967,16 +657,6 @@
|
|
|
967
657
|
"path": "schemas/indexer-requirement-confirmation-output.schema.json",
|
|
968
658
|
"digest": "sha256:cd202627606a89b94c6cbf557e17721a3b472f32e2620ea3d60c9f157d2028ef"
|
|
969
659
|
},
|
|
970
|
-
{
|
|
971
|
-
"id": "schemas/indexer-result-reconciliation-input.schema.json",
|
|
972
|
-
"path": "schemas/indexer-result-reconciliation-input.schema.json",
|
|
973
|
-
"digest": "sha256:48671f7e107dc6e0be8baa27a9816eae9eaeb19b1e9ecdc63120e11e884cfa4c"
|
|
974
|
-
},
|
|
975
|
-
{
|
|
976
|
-
"id": "schemas/indexer-result-reconciliation-output.schema.json",
|
|
977
|
-
"path": "schemas/indexer-result-reconciliation-output.schema.json",
|
|
978
|
-
"digest": "sha256:6c06c833a862d23dbcb7024e1fbb57c134d1d62c8ad961cc8560f176e36b73f8"
|
|
979
|
-
},
|
|
980
660
|
{
|
|
981
661
|
"id": "schemas/indexer-selection-proposal-input.schema.json",
|
|
982
662
|
"path": "schemas/indexer-selection-proposal-input.schema.json",
|
|
@@ -997,6 +677,11 @@
|
|
|
997
677
|
"path": "schemas/indexer-subject-reidentification-output.schema.json",
|
|
998
678
|
"digest": "sha256:78c3f14147f959914f8122b4f749e7a081f48d4b9297e2f2435ef83b2c5307d3"
|
|
999
679
|
},
|
|
680
|
+
{
|
|
681
|
+
"id": "schemas/indexer-workset-view-materialization-request.schema.json",
|
|
682
|
+
"path": "schemas/indexer-workset-view-materialization-request.schema.json",
|
|
683
|
+
"digest": "sha256:8c14de5552b34ca05afee1eec2a3496112b0e6748042de1fb6808db995ea87a8"
|
|
684
|
+
},
|
|
1000
685
|
{
|
|
1001
686
|
"id": "schemas/repository-source-recovery.schema.json",
|
|
1002
687
|
"path": "schemas/repository-source-recovery.schema.json",
|
|
@@ -1009,25 +694,13 @@
|
|
|
1009
694
|
}
|
|
1010
695
|
],
|
|
1011
696
|
"files": [
|
|
1012
|
-
{
|
|
1013
|
-
"path": "actions/accept-main-index-run.yaml",
|
|
1014
|
-
"digest": "sha256:d4e9843c0763665318092b6097bf7a2eb53ab71bb3f75093ea3a16b8ceb35e22"
|
|
1015
|
-
},
|
|
1016
|
-
{
|
|
1017
|
-
"path": "actions/accept-material-answer-run.yaml",
|
|
1018
|
-
"digest": "sha256:aceb10a93b98798390a4a6ca146a7e396d587d1b5b8810917882883120c27996"
|
|
1019
|
-
},
|
|
1020
697
|
{
|
|
1021
698
|
"path": "actions/accept-package-templates.yaml",
|
|
1022
699
|
"digest": "sha256:e3de218f2dc37c9d3ab9546e408598c7b320f7151e8c520a00770919088a6a66"
|
|
1023
700
|
},
|
|
1024
701
|
{
|
|
1025
|
-
"path": "actions/
|
|
1026
|
-
"digest": "sha256:
|
|
1027
|
-
},
|
|
1028
|
-
{
|
|
1029
|
-
"path": "actions/actualize-material-answer-bindings.yaml",
|
|
1030
|
-
"digest": "sha256:5d641922c4c68147e90d70f46d33579519aab7ea0b6d26ff927894b15e3974f6"
|
|
702
|
+
"path": "actions/advance-current-indexer-lifecycle.yaml",
|
|
703
|
+
"digest": "sha256:9a508060c1de5201f1490317caa388b4554a7d869597001e2b0fdf29b8d904a0"
|
|
1031
704
|
},
|
|
1032
705
|
{
|
|
1033
706
|
"path": "actions/apply-forced-review.yaml",
|
|
@@ -1042,12 +715,8 @@
|
|
|
1042
715
|
"digest": "sha256:25e2c2c215889dd13a6dec8714bc2b6357f3e01b09cc684f1e82d986e30ef064"
|
|
1043
716
|
},
|
|
1044
717
|
{
|
|
1045
|
-
"path": "actions/
|
|
1046
|
-
"digest": "sha256:
|
|
1047
|
-
},
|
|
1048
|
-
{
|
|
1049
|
-
"path": "actions/audit-projected-artifact-fan-out.yaml",
|
|
1050
|
-
"digest": "sha256:472e61994a2acadac2da4782292b49567f094d6b2899a3d5f48737332c4523f1"
|
|
718
|
+
"path": "actions/authorize-current-indexer-provider-program.yaml",
|
|
719
|
+
"digest": "sha256:6d8e5831a29a7e9c140e8388126f70cd030dbda5718a5ee0a69c8aacf8243dee"
|
|
1051
720
|
},
|
|
1052
721
|
{
|
|
1053
722
|
"path": "actions/authorize-indexer-dependencies.yaml",
|
|
@@ -1057,70 +726,22 @@
|
|
|
1057
726
|
"path": "actions/authorize-indexer-program-execution.yaml",
|
|
1058
727
|
"digest": "sha256:95278fbf41dc311151d1d0bad8727fd07390eee740b69e3c08831306466dea94"
|
|
1059
728
|
},
|
|
1060
|
-
{
|
|
1061
|
-
"path": "actions/build-main-index-author-worksets.yaml",
|
|
1062
|
-
"digest": "sha256:bb24a48cab5d4ac6f3109a70000bf81d30b1e9e83f595bb6ac892c3d2e1dec54"
|
|
1063
|
-
},
|
|
1064
|
-
{
|
|
1065
|
-
"path": "actions/build-main-index-catalog-fallback.yaml",
|
|
1066
|
-
"digest": "sha256:4063dada12583595c9ff1183a50b0d84f9131bc0c280e1e6082efa046dedbf75"
|
|
1067
|
-
},
|
|
1068
|
-
{
|
|
1069
|
-
"path": "actions/build-main-index-partition-worksets.yaml",
|
|
1070
|
-
"digest": "sha256:b3a0a71925b84f3d20eb4cef9608de215cc2d600749b9bd30f9a42d6b2468d07"
|
|
1071
|
-
},
|
|
1072
|
-
{
|
|
1073
|
-
"path": "actions/build-material-question-workset.yaml",
|
|
1074
|
-
"digest": "sha256:859ece19215833777ca530b468e745d1910e6ef1bdfb12a6d40659390378069a"
|
|
1075
|
-
},
|
|
1076
729
|
{
|
|
1077
730
|
"path": "actions/build-next.yaml",
|
|
1078
731
|
"digest": "sha256:a5b8bb7162f14e0cf3056dd1a3e9da05fe45f7b61fcf0aa07f52ca7274256e44"
|
|
1079
732
|
},
|
|
1080
|
-
{
|
|
1081
|
-
"path": "actions/build-post-author-composer-worksets.yaml",
|
|
1082
|
-
"digest": "sha256:94c448df97e05f0cc3210182e4d5b21035a400bc0679cdeb74329af0d77d0870"
|
|
1083
|
-
},
|
|
1084
|
-
{
|
|
1085
|
-
"path": "actions/build-question-target-inventory.yaml",
|
|
1086
|
-
"digest": "sha256:a460629e8a675a28d5673a352fab5b5f77b67e4fc78a3d5dd4877d63b79b096a"
|
|
1087
|
-
},
|
|
1088
|
-
{
|
|
1089
|
-
"path": "actions/build-subject-catalog.yaml",
|
|
1090
|
-
"digest": "sha256:5b4d9e34dcae6dc6471f5a46e252ee284a2c210f55e0015e6134086eed80cecc"
|
|
1091
|
-
},
|
|
1092
|
-
{
|
|
1093
|
-
"path": "actions/build-target-resolution-views.yaml",
|
|
1094
|
-
"digest": "sha256:e20d2c7d6b3114581b511f3471f0da56d0edf2c541e4632550b5a921b1c72e8f"
|
|
1095
|
-
},
|
|
1096
733
|
{
|
|
1097
734
|
"path": "actions/capture-next.yaml",
|
|
1098
735
|
"digest": "sha256:409a091eb771d5087408832539a50cb7b6f0c0d25dd47257798df49f5d8b6fc3"
|
|
1099
736
|
},
|
|
1100
|
-
{
|
|
1101
|
-
"path": "actions/checkpoint-material-answer-review.yaml",
|
|
1102
|
-
"digest": "sha256:ebea7d1dd957a0798b02dbd14dc8ee0a8c0a31407c864fe41dc4706954aa48a4"
|
|
1103
|
-
},
|
|
1104
|
-
{
|
|
1105
|
-
"path": "actions/checkpoint-material-gaps.yaml",
|
|
1106
|
-
"digest": "sha256:33e825a38c86ee56eb9f15caa4af74d334868203ff1083b1f4687dbeb4c3d748"
|
|
1107
|
-
},
|
|
1108
737
|
{
|
|
1109
738
|
"path": "actions/close-approved-knowledge.yaml",
|
|
1110
739
|
"digest": "sha256:8ef2c1ca0856042b5587e08a324721902fcb61578749f54e5c043440b71f09da"
|
|
1111
740
|
},
|
|
1112
|
-
{
|
|
1113
|
-
"path": "actions/close-indexer-approved-knowledge.yaml",
|
|
1114
|
-
"digest": "sha256:5226e523c44a1f0a6b81bbc26ea53a59f399ccc1695b483649d3cc84d74d752e"
|
|
1115
|
-
},
|
|
1116
741
|
{
|
|
1117
742
|
"path": "actions/compile-indexer-candidates.yaml",
|
|
1118
743
|
"digest": "sha256:e3821f2b67376d844501bae335d33970e36b81a3acc249a9e4834b10b573575e"
|
|
1119
744
|
},
|
|
1120
|
-
{
|
|
1121
|
-
"path": "actions/compose-indexer-post-author-fragments.yaml",
|
|
1122
|
-
"digest": "sha256:e656e684436c43a10982e99885e3978d02991ac3efe13e1a45954a2f20d8aa08"
|
|
1123
|
-
},
|
|
1124
745
|
{
|
|
1125
746
|
"path": "actions/configure-community-indexer-fallback.yaml",
|
|
1126
747
|
"digest": "sha256:a684e957a604f57a3be3201e280b489a6c6275e0dbbd0a614f96ce18e7eaeea8"
|
|
@@ -1131,7 +752,7 @@
|
|
|
1131
752
|
},
|
|
1132
753
|
{
|
|
1133
754
|
"path": "actions/configure-indexer-providers.yaml",
|
|
1134
|
-
"digest": "sha256:
|
|
755
|
+
"digest": "sha256:6613ce2baaca4fd75d2cd0cec7274b3aaa5b5bda06c12c22be0c44146ebdf507"
|
|
1135
756
|
},
|
|
1136
757
|
{
|
|
1137
758
|
"path": "actions/configure-package-output.yaml",
|
|
@@ -1145,42 +766,18 @@
|
|
|
1145
766
|
"path": "actions/confirm-subject-reidentification.yaml",
|
|
1146
767
|
"digest": "sha256:60afb798d37641202e10d0dd4ee7d4e7ecb0af7a085484b96264da20fa9853ef"
|
|
1147
768
|
},
|
|
1148
|
-
{
|
|
1149
|
-
"path": "actions/converge-main-index-partition-run.yaml",
|
|
1150
|
-
"digest": "sha256:edf4dc5271dd0d9052cace776cc11532ca7f9d6526dd40c5eca76110cb976a8d"
|
|
1151
|
-
},
|
|
1152
769
|
{
|
|
1153
770
|
"path": "actions/discover-markdown-indexer-providers.yaml",
|
|
1154
771
|
"digest": "sha256:ade21b433c3f0f5abd1940f9227f1184875e08be70298dcb041715f9be4c81b2"
|
|
1155
772
|
},
|
|
1156
773
|
{
|
|
1157
|
-
"path": "actions/
|
|
1158
|
-
"digest": "sha256:
|
|
1159
|
-
},
|
|
1160
|
-
{
|
|
1161
|
-
"path": "actions/fail-main-index-run.yaml",
|
|
1162
|
-
"digest": "sha256:b73dd9bd22188f9e846efa8ea781fdee2566c1a7b9cf7204662f5fde72fa77d1"
|
|
1163
|
-
},
|
|
1164
|
-
{
|
|
1165
|
-
"path": "actions/fail-material-answer-run.yaml",
|
|
1166
|
-
"digest": "sha256:76cb54c8e1dae187e3e889d958e59e1cc368e7267e0c435875b9fe1df2d89f70"
|
|
1167
|
-
},
|
|
1168
|
-
{
|
|
1169
|
-
"path": "actions/fail-post-author-composer-run.yaml",
|
|
1170
|
-
"digest": "sha256:26c35ebdfca9a4da92c1af0d7d22a1577594077fe254fef825b976639ca491d7"
|
|
774
|
+
"path": "actions/finalize-current-indexer-provider-selection.yaml",
|
|
775
|
+
"digest": "sha256:af23c812bfa65f5eb955a11e2b659600f6b0985040bf6da2225c56b0727fe114"
|
|
1171
776
|
},
|
|
1172
777
|
{
|
|
1173
778
|
"path": "actions/flush-runtime-events.yaml",
|
|
1174
779
|
"digest": "sha256:a5f29f652fc9f5f3775fdf9aad0af837f8c72879a22c11074321923bda49b45a"
|
|
1175
780
|
},
|
|
1176
|
-
{
|
|
1177
|
-
"path": "actions/inspect-index-candidate-review-readiness.yaml",
|
|
1178
|
-
"digest": "sha256:e798248995a46b3662481143898cec63ae3030c7c8c8ebdeb66a02300c39f83a"
|
|
1179
|
-
},
|
|
1180
|
-
{
|
|
1181
|
-
"path": "actions/inspect-index-profile-failure.yaml",
|
|
1182
|
-
"digest": "sha256:f5b7eba151f2df106e894b362ef171bb14adb8ac29ba34b68847865dd864d22c"
|
|
1183
|
-
},
|
|
1184
781
|
{
|
|
1185
782
|
"path": "actions/inspect-indexer-dependencies.yaml",
|
|
1186
783
|
"digest": "sha256:5561937c8ac2e701dd45186881d85b9bfae1ef514e47c777aaf59cbf4859eb7c"
|
|
@@ -1197,10 +794,6 @@
|
|
|
1197
794
|
"path": "actions/inspect-markdown-provider-capture.yaml",
|
|
1198
795
|
"digest": "sha256:3dd8631da8cb01f24dfe9db2c539e0d523bf77032006856b21a321aa81891d46"
|
|
1199
796
|
},
|
|
1200
|
-
{
|
|
1201
|
-
"path": "actions/inspect-material-answer-review.yaml",
|
|
1202
|
-
"digest": "sha256:86b88755089150753761e0efd73f118f7ade34b8388199f55ee7197923fa9c77"
|
|
1203
|
-
},
|
|
1204
797
|
{
|
|
1205
798
|
"path": "actions/inspect-repository-recovery.yaml",
|
|
1206
799
|
"digest": "sha256:6890fc2fb95823753beb7684066ddaac0b02e377c5fe3f568ac75286e00c9e88"
|
|
@@ -1222,37 +815,17 @@
|
|
|
1222
815
|
"digest": "sha256:6da47c03bd482b5b0170508b1ddc9e2d0998acff8ea08b0768dbbc3d2386926f"
|
|
1223
816
|
},
|
|
1224
817
|
{
|
|
1225
|
-
"path": "actions/
|
|
1226
|
-
"digest": "sha256:
|
|
1227
|
-
},
|
|
1228
|
-
{
|
|
1229
|
-
"path": "actions/observe-main-index-run-ledger.yaml",
|
|
1230
|
-
"digest": "sha256:c420be99b95acbe7c4b0587292c3423930d4702dd4d769336731e1db3c9c0dcc"
|
|
1231
|
-
},
|
|
1232
|
-
{
|
|
1233
|
-
"path": "actions/observe-material-answer-runs.yaml",
|
|
1234
|
-
"digest": "sha256:5e8da86a57b7a3859e32a894b89861c533f4e2961f46451374ac2252519ce40a"
|
|
818
|
+
"path": "actions/materialize-indexer-workset-view.yaml",
|
|
819
|
+
"digest": "sha256:6ec37969903d7a8c12b792fdc7c4752936af3f8a6cab60ce3d33db2fb5235045"
|
|
1235
820
|
},
|
|
1236
821
|
{
|
|
1237
|
-
"path": "actions/observe-
|
|
1238
|
-
"digest": "sha256:
|
|
1239
|
-
},
|
|
1240
|
-
{
|
|
1241
|
-
"path": "actions/override-index-profile-audit.yaml",
|
|
1242
|
-
"digest": "sha256:4ef12f402e86b88e63aeff4848d6e508e2d839b3ec5abe0e341a7ca5cf1cd5ea"
|
|
822
|
+
"path": "actions/observe-indexer-project.yaml",
|
|
823
|
+
"digest": "sha256:0365519d1db7d6d6292a642f6357b409afae2025a3332024e4173d52d7ebaece"
|
|
1243
824
|
},
|
|
1244
825
|
{
|
|
1245
826
|
"path": "actions/prepare-indexer-customization-project.yaml",
|
|
1246
827
|
"digest": "sha256:134b04cb53d2d6f06ffe651ea0b9fd4f523243e01de7a73385a692c7ea521635"
|
|
1247
828
|
},
|
|
1248
|
-
{
|
|
1249
|
-
"path": "actions/prepare-main-index-run-ledger.yaml",
|
|
1250
|
-
"digest": "sha256:02571e4b34e3e25212a273ac8ac573baca760f99c356e4a2dfdd167ec7ff0681"
|
|
1251
|
-
},
|
|
1252
|
-
{
|
|
1253
|
-
"path": "actions/prepare-material-answer-runs.yaml",
|
|
1254
|
-
"digest": "sha256:fc3a7bb385bf9a0a24d56e91387f2bdb61add0af597126f890edc733a9b59cd1"
|
|
1255
|
-
},
|
|
1256
829
|
{
|
|
1257
830
|
"path": "actions/propose-indexer-customization.yaml",
|
|
1258
831
|
"digest": "sha256:07d1842805d62f5a8a9cef36c602ceee0876c91338493caa61ba3080ccad9bfa"
|
|
@@ -1265,18 +838,6 @@
|
|
|
1265
838
|
"path": "actions/rebind-indexer-selection-to-requirement.yaml",
|
|
1266
839
|
"digest": "sha256:620e75b2c328df1cee0608fe7fc5d5abfaa0522d676339cee3382ca377347990"
|
|
1267
840
|
},
|
|
1268
|
-
{
|
|
1269
|
-
"path": "actions/reconcile-indexer-results.yaml",
|
|
1270
|
-
"digest": "sha256:6121f000167ce9b1672268da098fea43a461e0c0421176ddccc9c926640d087b"
|
|
1271
|
-
},
|
|
1272
|
-
{
|
|
1273
|
-
"path": "actions/reconcile-review-identities.yaml",
|
|
1274
|
-
"digest": "sha256:aac95cc46ab8a872bdd1cc53cf64e3bbde8cf8dc2d6e9ac2da82bb378fcfe09a"
|
|
1275
|
-
},
|
|
1276
|
-
{
|
|
1277
|
-
"path": "actions/record-index-profile-revision.yaml",
|
|
1278
|
-
"digest": "sha256:aed060f49baad6ccb5ef9d088d96cb3f3567f511c8465cb7d19512d9b8830698"
|
|
1279
|
-
},
|
|
1280
841
|
{
|
|
1281
842
|
"path": "actions/register-source-batch.yaml",
|
|
1282
843
|
"digest": "sha256:506cd677d79363035040b83c30f3444e9d41a886e9532023db6b8a17444ad951"
|
|
@@ -1293,33 +854,21 @@
|
|
|
1293
854
|
"path": "actions/repair-workspace-state.yaml",
|
|
1294
855
|
"digest": "sha256:67296adf5336a7f746e250dc23676972282f88410fb6a6edc41a929e15d1856b"
|
|
1295
856
|
},
|
|
1296
|
-
{
|
|
1297
|
-
"path": "actions/report-index-profile-failure.yaml",
|
|
1298
|
-
"digest": "sha256:ff4c0b73c76f9b074efe8f211f92a823bc35829c91a177adbde92679f50a7b0f"
|
|
1299
|
-
},
|
|
1300
857
|
{
|
|
1301
858
|
"path": "actions/report-indexer-incremental-impact.yaml",
|
|
1302
859
|
"digest": "sha256:74bbbfde59ee2561ca0d1ca966c79f9df374b1bfe79d7e8174012d4ff2a6d13c"
|
|
1303
860
|
},
|
|
1304
861
|
{
|
|
1305
|
-
"path": "actions/resolve-
|
|
1306
|
-
"digest": "sha256:
|
|
1307
|
-
},
|
|
1308
|
-
{
|
|
1309
|
-
"path": "actions/restore-repository-sources.yaml",
|
|
1310
|
-
"digest": "sha256:58e40ee93d6bd1a9fe11d208fe771b576f8c5ceb05105d3e92a9aecc6b4a7fd8"
|
|
1311
|
-
},
|
|
1312
|
-
{
|
|
1313
|
-
"path": "actions/review-material-answer-candidate.yaml",
|
|
1314
|
-
"digest": "sha256:b83a407a4ada68abffdf5b2ec04ab60cab274db477ac1fedd4b88f944795be8f"
|
|
862
|
+
"path": "actions/resolve-current-indexer-gate.yaml",
|
|
863
|
+
"digest": "sha256:1141b2fba9bc91563c9fd5f86b7529cd2d47648a2dde5cac23a67cfef0988cc5"
|
|
1315
864
|
},
|
|
1316
865
|
{
|
|
1317
|
-
"path": "actions/
|
|
1318
|
-
"digest": "sha256:
|
|
866
|
+
"path": "actions/resolve-current-indexer-provider.yaml",
|
|
867
|
+
"digest": "sha256:e7d48b4279bb26ee7d3a2ba04d20492f39362541a7a82eddd1b8e8a38e5bd0e2"
|
|
1319
868
|
},
|
|
1320
869
|
{
|
|
1321
|
-
"path": "actions/
|
|
1322
|
-
"digest": "sha256:
|
|
870
|
+
"path": "actions/restore-repository-sources.yaml",
|
|
871
|
+
"digest": "sha256:58e40ee93d6bd1a9fe11d208fe771b576f8c5ceb05105d3e92a9aecc6b4a7fd8"
|
|
1323
872
|
},
|
|
1324
873
|
{
|
|
1325
874
|
"path": "actions/route-index-requirement-confirmation.yaml",
|
|
@@ -1335,27 +884,11 @@
|
|
|
1335
884
|
},
|
|
1336
885
|
{
|
|
1337
886
|
"path": "actions/run-indexer-lifecycle.yaml",
|
|
1338
|
-
"digest": "sha256:
|
|
887
|
+
"digest": "sha256:e1287fc63e1da30acb66805f68368b571e2cc628c46a29a699bec9ab76e6a0fa"
|
|
1339
888
|
},
|
|
1340
889
|
{
|
|
1341
890
|
"path": "actions/run-indexer-post-author-composer.yaml",
|
|
1342
|
-
"digest": "sha256:
|
|
1343
|
-
},
|
|
1344
|
-
{
|
|
1345
|
-
"path": "actions/run-material-answer-indexers.yaml",
|
|
1346
|
-
"digest": "sha256:6f1a9ec0563aa6a5202a0f6d9db1f4874340e58ea9284adcad5fe6d4b3e2157c"
|
|
1347
|
-
},
|
|
1348
|
-
{
|
|
1349
|
-
"path": "actions/start-main-index-run.yaml",
|
|
1350
|
-
"digest": "sha256:cb840b3eac3b042641d3797a4a2aba447a9ecae5d3999454b3777c8ec4572e03"
|
|
1351
|
-
},
|
|
1352
|
-
{
|
|
1353
|
-
"path": "actions/start-material-answer-run.yaml",
|
|
1354
|
-
"digest": "sha256:ef3b42d7e148c046442ae3dfa3028656abfcbbf66a294fe833ba85cd9d8468e6"
|
|
1355
|
-
},
|
|
1356
|
-
{
|
|
1357
|
-
"path": "actions/start-post-author-composer-run.yaml",
|
|
1358
|
-
"digest": "sha256:8f97cd69b198c21ef27a2d151f7b2111e363b5d664f118dc663145acb19a34ea"
|
|
891
|
+
"digest": "sha256:16b7b05931c05e2a0adb0b90a36a1d4951bff9873233b1a6536ea1f86d971baf"
|
|
1359
892
|
},
|
|
1360
893
|
{
|
|
1361
894
|
"path": "actions/validate-indexer-contract-overlays.yaml",
|
|
@@ -1383,19 +916,19 @@
|
|
|
1383
916
|
},
|
|
1384
917
|
{
|
|
1385
918
|
"path": "codes.yaml",
|
|
1386
|
-
"digest": "sha256:
|
|
919
|
+
"digest": "sha256:dc4546db9af1010367c55343195eec7d5cdafcd34731d210419c06cd8a961378"
|
|
1387
920
|
},
|
|
1388
921
|
{
|
|
1389
922
|
"path": "graphs/indexer.yaml",
|
|
1390
|
-
"digest": "sha256:
|
|
923
|
+
"digest": "sha256:5fae271985d17e428d2174ecd66bd4c77f561253a299662890dae1f16da357e5"
|
|
1391
924
|
},
|
|
1392
925
|
{
|
|
1393
926
|
"path": "graphs/workspace.yaml",
|
|
1394
|
-
"digest": "sha256:
|
|
927
|
+
"digest": "sha256:fac097fb28162de67f6e6362aba73a7e4c75a490c7ee0275abcfb6fc2bc53713"
|
|
1395
928
|
},
|
|
1396
929
|
{
|
|
1397
930
|
"path": "provider.yaml",
|
|
1398
|
-
"digest": "sha256:
|
|
931
|
+
"digest": "sha256:e194ab530502e91f22e1f1f3d5b92bc7d712eff0e6f1f7990ae43e6e25b798d7"
|
|
1399
932
|
},
|
|
1400
933
|
{
|
|
1401
934
|
"path": "resources/diagnostics/projection-stale.md",
|
|
@@ -1419,11 +952,11 @@
|
|
|
1419
952
|
},
|
|
1420
953
|
{
|
|
1421
954
|
"path": "resources/dialogue/human-gates.md",
|
|
1422
|
-
"digest": "sha256:
|
|
955
|
+
"digest": "sha256:475bf5232a544a857ec9fee94ad3c61e2e21c8645cb0992645b06c13caaaafbd"
|
|
1423
956
|
},
|
|
1424
957
|
{
|
|
1425
958
|
"path": "resources/dialogue/knowledge-review.md",
|
|
1426
|
-
"digest": "sha256:
|
|
959
|
+
"digest": "sha256:f1620c99e0de845b344cac8db291cd895b589388c1db74ad2017f7f2c83c477d"
|
|
1427
960
|
},
|
|
1428
961
|
{
|
|
1429
962
|
"path": "resources/dialogue/package-output.md",
|
|
@@ -1451,11 +984,11 @@
|
|
|
1451
984
|
},
|
|
1452
985
|
{
|
|
1453
986
|
"path": "resources/manuals/reference/package-templates.md",
|
|
1454
|
-
"digest": "sha256:
|
|
987
|
+
"digest": "sha256:7dcbf2f0ded7fcdaeac546aa48d9dc0b424db3791cbda764c1c9e5de51eade8d"
|
|
1455
988
|
},
|
|
1456
989
|
{
|
|
1457
990
|
"path": "resources/manuals/reference/project-api.md",
|
|
1458
|
-
"digest": "sha256:
|
|
991
|
+
"digest": "sha256:baecc059e3f1d2f60cab1b7ae55984736f3fbb2a01fd3be3b91572c20c297a5b"
|
|
1459
992
|
},
|
|
1460
993
|
{
|
|
1461
994
|
"path": "resources/manuals/reference/template-variables.md",
|
|
@@ -1463,23 +996,19 @@
|
|
|
1463
996
|
},
|
|
1464
997
|
{
|
|
1465
998
|
"path": "resources/procedures/close-and-build.md",
|
|
1466
|
-
"digest": "sha256:
|
|
999
|
+
"digest": "sha256:dff6754cbd14e5d4701294480b0b7470bed9a0e3cbeae76fced29b57dff6f544"
|
|
1467
1000
|
},
|
|
1468
1001
|
{
|
|
1469
1002
|
"path": "resources/procedures/document-capture.md",
|
|
1470
1003
|
"digest": "sha256:46a8231e92fcb19db7918938970ace8b4e4c22153fa8cbf0bb8100275bfbbfcf"
|
|
1471
1004
|
},
|
|
1472
|
-
{
|
|
1473
|
-
"path": "resources/procedures/document-revision.md",
|
|
1474
|
-
"digest": "sha256:a46498f66070485c019ed70c84640ed12f6374371ca9e6df0f42b93da69c051b"
|
|
1475
|
-
},
|
|
1476
1005
|
{
|
|
1477
1006
|
"path": "resources/procedures/evidence-maintenance.md",
|
|
1478
1007
|
"digest": "sha256:2bceea12b4430586e0b6bbaef46dc32ad999f9d2cc373b7db77a88f5fca93ccc"
|
|
1479
1008
|
},
|
|
1480
1009
|
{
|
|
1481
1010
|
"path": "resources/procedures/knowledge-review.md",
|
|
1482
|
-
"digest": "sha256:
|
|
1011
|
+
"digest": "sha256:05a0bfb7db3f3aaf2b0fcb86f97cea3d196a364a36769b7ad082b166a1b2acda"
|
|
1483
1012
|
},
|
|
1484
1013
|
{
|
|
1485
1014
|
"path": "resources/procedures/package-output.md",
|
|
@@ -1503,15 +1032,15 @@
|
|
|
1503
1032
|
},
|
|
1504
1033
|
{
|
|
1505
1034
|
"path": "resources/procedures/source-capture-detailed.md",
|
|
1506
|
-
"digest": "sha256:
|
|
1035
|
+
"digest": "sha256:9401006838d303e6263ffb0863be145ca170d93fa7bb3b55e557a6357fa2e136"
|
|
1507
1036
|
},
|
|
1508
1037
|
{
|
|
1509
1038
|
"path": "resources/procedures/verify-and-repair.md",
|
|
1510
1039
|
"digest": "sha256:177d6c1f1f263f5c502ad197067a7fdcd5165d7ce2ac778672201c9f90888589"
|
|
1511
1040
|
},
|
|
1512
1041
|
{
|
|
1513
|
-
"path": "resources/views/
|
|
1514
|
-
"digest": "sha256:
|
|
1042
|
+
"path": "resources/views/authorized-indexer-workset-view.yaml",
|
|
1043
|
+
"digest": "sha256:149c934835d653c66ac26636922ff8144cfc59893f98953d5bc7d6404cf2ead5"
|
|
1515
1044
|
},
|
|
1516
1045
|
{
|
|
1517
1046
|
"path": "resources/views/package-current.yaml",
|
|
@@ -1519,7 +1048,7 @@
|
|
|
1519
1048
|
},
|
|
1520
1049
|
{
|
|
1521
1050
|
"path": "resources/views/resolved-indexer-instructions.yaml",
|
|
1522
|
-
"digest": "sha256:
|
|
1051
|
+
"digest": "sha256:5bc57e73f5f0795b8867b8dd12c3bf8bc4bac30d05c44e45cfad811d3834e5d6"
|
|
1523
1052
|
},
|
|
1524
1053
|
{
|
|
1525
1054
|
"path": "resources/views/review-current.yaml",
|
|
@@ -1547,11 +1076,15 @@
|
|
|
1547
1076
|
},
|
|
1548
1077
|
{
|
|
1549
1078
|
"path": "schemas/indexer-agent-step-input.schema.json",
|
|
1550
|
-
"digest": "sha256:
|
|
1079
|
+
"digest": "sha256:4497216cac113b9d9f01745121df29723f9c8c02c439c1ac89b72a5610bc40fa"
|
|
1551
1080
|
},
|
|
1552
1081
|
{
|
|
1553
1082
|
"path": "schemas/indexer-agent-step-result.schema.json",
|
|
1554
|
-
"digest": "sha256:
|
|
1083
|
+
"digest": "sha256:bb12d02cf36ffcf5dc8a9a2bc006c980b8db44047ff910f3c42607e04ec17b34"
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"path": "schemas/indexer-authorized-workset-view.schema.json",
|
|
1087
|
+
"digest": "sha256:014c28c12a7c387056c004de09459b8412f95eb7a5630ab5f03e956e961b7b33"
|
|
1555
1088
|
},
|
|
1556
1089
|
{
|
|
1557
1090
|
"path": "schemas/indexer-candidate-compile-input.schema.json",
|
|
@@ -1561,14 +1094,6 @@
|
|
|
1561
1094
|
"path": "schemas/indexer-candidate-compile-output.schema.json",
|
|
1562
1095
|
"digest": "sha256:5e08981154c52dfe3a267f11dde23d76c5c57d380f04be63911dd9ce60168fdb"
|
|
1563
1096
|
},
|
|
1564
|
-
{
|
|
1565
|
-
"path": "schemas/indexer-candidate-review-readiness-input.schema.json",
|
|
1566
|
-
"digest": "sha256:f3a2f38c6d81ad9d04a224c6ad6c622214bb54e61867da0e05fb657da73dc58c"
|
|
1567
|
-
},
|
|
1568
|
-
{
|
|
1569
|
-
"path": "schemas/indexer-candidate-review-readiness-output.schema.json",
|
|
1570
|
-
"digest": "sha256:dbad68aea79400e0363316c59f72133e96f31b89560011abea6b96665cc7beb3"
|
|
1571
|
-
},
|
|
1572
1097
|
{
|
|
1573
1098
|
"path": "schemas/indexer-contract-overlay-validation-input.schema.json",
|
|
1574
1099
|
"digest": "sha256:907f4c63206cd987cfba7d3beacf2f6fdc92e027a2d014ff9fae3df948c1c4e7"
|
|
@@ -1605,17 +1130,13 @@
|
|
|
1605
1130
|
"path": "schemas/indexer-incremental-impact-output.schema.json",
|
|
1606
1131
|
"digest": "sha256:613dfbc9f98b4c9d6138f0a9f8eaf8a1d9782139cabaec90ac70887de24afed8"
|
|
1607
1132
|
},
|
|
1608
|
-
{
|
|
1609
|
-
"path": "schemas/indexer-lifecycle-continuation.schema.json",
|
|
1610
|
-
"digest": "sha256:59afa1e96f9b80f5e6b0884a393e0105272ab48f81178f03eaa57b6ef61e6227"
|
|
1611
|
-
},
|
|
1612
1133
|
{
|
|
1613
1134
|
"path": "schemas/indexer-main-lifecycle-input.schema.json",
|
|
1614
|
-
"digest": "sha256:
|
|
1135
|
+
"digest": "sha256:97edf350dce318dee86d5160212be1267c5b266afca36ae619dc147fc2444d7d"
|
|
1615
1136
|
},
|
|
1616
1137
|
{
|
|
1617
1138
|
"path": "schemas/indexer-main-lifecycle-output.schema.json",
|
|
1618
|
-
"digest": "sha256:
|
|
1139
|
+
"digest": "sha256:85a92daeecda53cc10c3e7d81d1cf89f20840180a34471518b9dd1d0d0798b5a"
|
|
1619
1140
|
},
|
|
1620
1141
|
{
|
|
1621
1142
|
"path": "schemas/indexer-markdown-provider-capture-input.schema.json",
|
|
@@ -1633,45 +1154,13 @@
|
|
|
1633
1154
|
"path": "schemas/indexer-markdown-provider-validation-output.schema.json",
|
|
1634
1155
|
"digest": "sha256:91f1f8772315337f0351aff66759fb6eaeffbbf493429d2d2c719f08e2572b39"
|
|
1635
1156
|
},
|
|
1636
|
-
{
|
|
1637
|
-
"path": "schemas/indexer-material-answer-lifecycle-input.schema.json",
|
|
1638
|
-
"digest": "sha256:c4b0d8aefc5ed5320f4a4ae985c66e4fbf9cb98b38494b1ffe77c412c7b97086"
|
|
1639
|
-
},
|
|
1640
|
-
{
|
|
1641
|
-
"path": "schemas/indexer-material-answer-lifecycle-output.schema.json",
|
|
1642
|
-
"digest": "sha256:18f7e976650a14d65ba783a221a62ba265a3efe23e8e9682c30535eb2e9886af"
|
|
1643
|
-
},
|
|
1644
|
-
{
|
|
1645
|
-
"path": "schemas/indexer-material-answer-review-inspection-input.schema.json",
|
|
1646
|
-
"digest": "sha256:487b8ce606b6063374673ddf71d4da442a7a69d3c7cf8bba90825cbbec7dffa7"
|
|
1647
|
-
},
|
|
1648
|
-
{
|
|
1649
|
-
"path": "schemas/indexer-material-answer-review-inspection-output.schema.json",
|
|
1650
|
-
"digest": "sha256:044ebe461f1e9983d081f3a2deb386e20196b0b0cc00d2d56967105a62d1e352"
|
|
1651
|
-
},
|
|
1652
|
-
{
|
|
1653
|
-
"path": "schemas/indexer-material-answer-review-resolution-input.schema.json",
|
|
1654
|
-
"digest": "sha256:79e0254fcbfeba81f6b76f1979a1fe3745f253acefa061913ec13737d30a1cc7"
|
|
1655
|
-
},
|
|
1656
|
-
{
|
|
1657
|
-
"path": "schemas/indexer-material-answer-review-resolution-output.schema.json",
|
|
1658
|
-
"digest": "sha256:9aa8e922886b999696d43cc0c62b598e0ab0ea50bfc0098a7bfe8c0a0c7b3e1f"
|
|
1659
|
-
},
|
|
1660
|
-
{
|
|
1661
|
-
"path": "schemas/indexer-material-gap-lifecycle-input.schema.json",
|
|
1662
|
-
"digest": "sha256:e49de7c57b90532d52aaa546f0fa8e895860ed7e44fc5a9f0709cf4f0c9c2b02"
|
|
1663
|
-
},
|
|
1664
|
-
{
|
|
1665
|
-
"path": "schemas/indexer-material-gap-lifecycle-output.schema.json",
|
|
1666
|
-
"digest": "sha256:efcf96aeaf51d79d07a6bb71400095517c2583a53a1c71a8f563022a3a7f7846"
|
|
1667
|
-
},
|
|
1668
1157
|
{
|
|
1669
1158
|
"path": "schemas/indexer-materialize-request.schema.json",
|
|
1670
|
-
"digest": "sha256:
|
|
1159
|
+
"digest": "sha256:d9d130649c496d86de2534f910c9a0a18961a2d7b3faf670cc48b83e01e2bdc9"
|
|
1671
1160
|
},
|
|
1672
1161
|
{
|
|
1673
1162
|
"path": "schemas/indexer-materialized-resource.schema.json",
|
|
1674
|
-
"digest": "sha256:
|
|
1163
|
+
"digest": "sha256:8ae851f6e5109d88747e04ca4170a7dcd8529efaa764f857f6eaa7c839cafe23"
|
|
1675
1164
|
},
|
|
1676
1165
|
{
|
|
1677
1166
|
"path": "schemas/indexer-overlay-question-amendment.schema.json",
|
|
@@ -1679,7 +1168,7 @@
|
|
|
1679
1168
|
},
|
|
1680
1169
|
{
|
|
1681
1170
|
"path": "schemas/indexer-overlay-question-proposal-input.schema.json",
|
|
1682
|
-
"digest": "sha256:
|
|
1171
|
+
"digest": "sha256:dea723ec8933539692d2ee9721336ee61f807e3c137c73101425a785656cce69"
|
|
1683
1172
|
},
|
|
1684
1173
|
{
|
|
1685
1174
|
"path": "schemas/indexer-overlay-question-rebind-input.schema.json",
|
|
@@ -1689,58 +1178,6 @@
|
|
|
1689
1178
|
"path": "schemas/indexer-overlay-question-rebind-result.schema.json",
|
|
1690
1179
|
"digest": "sha256:d2961b0f56dba1cc2695141f82d3f6b31362f48eb9f93e7361fc23da1e200466"
|
|
1691
1180
|
},
|
|
1692
|
-
{
|
|
1693
|
-
"path": "schemas/indexer-post-author-fragment-request.schema.json",
|
|
1694
|
-
"digest": "sha256:e8daad85219a68d630673ad2b61269264b15988ba94918aff1dd8bdb0dd1f287"
|
|
1695
|
-
},
|
|
1696
|
-
{
|
|
1697
|
-
"path": "schemas/indexer-post-author-fragment-result.schema.json",
|
|
1698
|
-
"digest": "sha256:06a37616cdb5078374c4a35a992a38bc9583456be1818091283e28df7f164ed3"
|
|
1699
|
-
},
|
|
1700
|
-
{
|
|
1701
|
-
"path": "schemas/indexer-post-author-lifecycle-input.schema.json",
|
|
1702
|
-
"digest": "sha256:afce4e1729d9430f3f9f527af11856cbc76a07f91cee06df5efe50d4ea944b0d"
|
|
1703
|
-
},
|
|
1704
|
-
{
|
|
1705
|
-
"path": "schemas/indexer-post-author-lifecycle-output.schema.json",
|
|
1706
|
-
"digest": "sha256:e1ae7a6f9bfe0047cf36837ed779a24789ef0c092f259c3b39e0e6c5bf56e1b7"
|
|
1707
|
-
},
|
|
1708
|
-
{
|
|
1709
|
-
"path": "schemas/indexer-profile-failure-inspection-input.schema.json",
|
|
1710
|
-
"digest": "sha256:44362552d8837ff6be3325a7dc79092442288ce0153c60de632112956dc0b7ed"
|
|
1711
|
-
},
|
|
1712
|
-
{
|
|
1713
|
-
"path": "schemas/indexer-profile-failure-inspection-result.schema.json",
|
|
1714
|
-
"digest": "sha256:39b0ba4e22b3e1c22f3e0898285419c5d3f7b9af2747ba072443c1c96e542f7a"
|
|
1715
|
-
},
|
|
1716
|
-
{
|
|
1717
|
-
"path": "schemas/indexer-profile-failure-report-input.schema.json",
|
|
1718
|
-
"digest": "sha256:c7ab97bd0302a1e1d620f2b8eeab989aff8a340bcb1ae06993c00c2da4406325"
|
|
1719
|
-
},
|
|
1720
|
-
{
|
|
1721
|
-
"path": "schemas/indexer-profile-failure-report-result.schema.json",
|
|
1722
|
-
"digest": "sha256:3c322f5add743d6c56e5ed0ba041fabbe1f8629cb3213342f7949611579f9966"
|
|
1723
|
-
},
|
|
1724
|
-
{
|
|
1725
|
-
"path": "schemas/indexer-profile-override-decision.schema.json",
|
|
1726
|
-
"digest": "sha256:3163bbf23104cd7dc8d63ae864d6e0dce5d956e16f995720ce292b11b3605958"
|
|
1727
|
-
},
|
|
1728
|
-
{
|
|
1729
|
-
"path": "schemas/indexer-profile-override-result.schema.json",
|
|
1730
|
-
"digest": "sha256:5ca7c399a73d0f0e0cb35ea1948e94d8a6f46e9533987543b5b23ef3cb0a2b1b"
|
|
1731
|
-
},
|
|
1732
|
-
{
|
|
1733
|
-
"path": "schemas/indexer-profile-revision-agent-input.schema.json",
|
|
1734
|
-
"digest": "sha256:30983189eeae396483d5e36511400a5206da1cdfbfb20a145668e2f542ef17e9"
|
|
1735
|
-
},
|
|
1736
|
-
{
|
|
1737
|
-
"path": "schemas/indexer-profile-revision-record-input.schema.json",
|
|
1738
|
-
"digest": "sha256:e2e8cff4870a2563a3492367397a69486b7c4c4f6a74f26df6e2915ef4fc1313"
|
|
1739
|
-
},
|
|
1740
|
-
{
|
|
1741
|
-
"path": "schemas/indexer-profile-revision-record-result.schema.json",
|
|
1742
|
-
"digest": "sha256:284c764593db89f9d7318f90d0e368e03d9282fae678b7f0f417404de8da4f45"
|
|
1743
|
-
},
|
|
1744
1181
|
{
|
|
1745
1182
|
"path": "schemas/indexer-program-execution-authorization-input.schema.json",
|
|
1746
1183
|
"digest": "sha256:ea8be492a994f1dfb39e166977d8ccc7c4fa6df0f6e0504585bfdefe705c1e1d"
|
|
@@ -1781,14 +1218,6 @@
|
|
|
1781
1218
|
"path": "schemas/indexer-requirement-confirmation-output.schema.json",
|
|
1782
1219
|
"digest": "sha256:cd202627606a89b94c6cbf557e17721a3b472f32e2620ea3d60c9f157d2028ef"
|
|
1783
1220
|
},
|
|
1784
|
-
{
|
|
1785
|
-
"path": "schemas/indexer-result-reconciliation-input.schema.json",
|
|
1786
|
-
"digest": "sha256:48671f7e107dc6e0be8baa27a9816eae9eaeb19b1e9ecdc63120e11e884cfa4c"
|
|
1787
|
-
},
|
|
1788
|
-
{
|
|
1789
|
-
"path": "schemas/indexer-result-reconciliation-output.schema.json",
|
|
1790
|
-
"digest": "sha256:6c06c833a862d23dbcb7024e1fbb57c134d1d62c8ad961cc8560f176e36b73f8"
|
|
1791
|
-
},
|
|
1792
1221
|
{
|
|
1793
1222
|
"path": "schemas/indexer-selection-proposal-input.schema.json",
|
|
1794
1223
|
"digest": "sha256:de25b302dff137151d11651201482fc1c70218e48c4e84f474fe8c8324145b80"
|
|
@@ -1805,6 +1234,10 @@
|
|
|
1805
1234
|
"path": "schemas/indexer-subject-reidentification-output.schema.json",
|
|
1806
1235
|
"digest": "sha256:78c3f14147f959914f8122b4f749e7a081f48d4b9297e2f2435ef83b2c5307d3"
|
|
1807
1236
|
},
|
|
1237
|
+
{
|
|
1238
|
+
"path": "schemas/indexer-workset-view-materialization-request.schema.json",
|
|
1239
|
+
"digest": "sha256:8c14de5552b34ca05afee1eec2a3496112b0e6748042de1fb6808db995ea87a8"
|
|
1240
|
+
},
|
|
1808
1241
|
{
|
|
1809
1242
|
"path": "schemas/repository-source-recovery.schema.json",
|
|
1810
1243
|
"digest": "sha256:589aea722965d81c9291232346bfc1d90ea04a94913d8ab7e3461e5a92746c56"
|
|
@@ -1817,9 +1250,13 @@
|
|
|
1817
1250
|
"path": "scripts/render-context-view.mjs",
|
|
1818
1251
|
"digest": "sha256:7686916efd5792e8f003ec2df97271efba8c766e5afab3b9e2e8b82e4e86ecc1"
|
|
1819
1252
|
},
|
|
1253
|
+
{
|
|
1254
|
+
"path": "skills/authorize-current-indexer-provider-program/SKILL.md",
|
|
1255
|
+
"digest": "sha256:ce8ac72099b14408b76e0566a130d1b56012b9bac74f251726e88beb21666b2b"
|
|
1256
|
+
},
|
|
1820
1257
|
{
|
|
1821
1258
|
"path": "skills/configure-indexer-providers/SKILL.md",
|
|
1822
|
-
"digest": "sha256:
|
|
1259
|
+
"digest": "sha256:cc5427bbab143eb92a360d5f6070517e49b7e08efa7cc5ecf45f9651bfd96ce0"
|
|
1823
1260
|
},
|
|
1824
1261
|
{
|
|
1825
1262
|
"path": "skills/prepare-indexer-customization-project/SKILL.md",
|
|
@@ -1830,25 +1267,29 @@
|
|
|
1830
1267
|
"digest": "sha256:d87245e3f58ea966e8a27d8016655aa833dc30df18464c58889f3a62a700f717"
|
|
1831
1268
|
},
|
|
1832
1269
|
{
|
|
1833
|
-
"path": "skills/
|
|
1834
|
-
"digest": "sha256:
|
|
1270
|
+
"path": "skills/resolve-current-indexer-gate/SKILL.md",
|
|
1271
|
+
"digest": "sha256:f6ff579a362b6ea4ee447fd6c23545573f1fe7c2d2b80f31e22ebac643e6acd1"
|
|
1272
|
+
},
|
|
1273
|
+
{
|
|
1274
|
+
"path": "skills/resolve-current-indexer-provider/SKILL.md",
|
|
1275
|
+
"digest": "sha256:650fa6218da62a24e26938ffd0049a84db1723919e9c3326da7068851a98a066"
|
|
1835
1276
|
},
|
|
1836
1277
|
{
|
|
1837
1278
|
"path": "skills/run-indexer-agent-step/SKILL.md",
|
|
1838
|
-
"digest": "sha256:
|
|
1279
|
+
"digest": "sha256:01e8bfc4190c2f97072de4b4cbb2882929ab1316232cebdd7a16f504c94a96bf"
|
|
1839
1280
|
},
|
|
1840
1281
|
{
|
|
1841
1282
|
"path": "skills/run-indexer-lifecycle/SKILL.md",
|
|
1842
|
-
"digest": "sha256:
|
|
1283
|
+
"digest": "sha256:d59b4182cff718ad951c6e38d01e2d94183b1386d960b27bd97c33c796e98b79"
|
|
1843
1284
|
},
|
|
1844
1285
|
{
|
|
1845
1286
|
"path": "skills/run-indexer-post-author-composer/SKILL.md",
|
|
1846
|
-
"digest": "sha256:
|
|
1287
|
+
"digest": "sha256:bc1bba523c3aa2198ac9b5b060773922d3da8a19ebcda471f3b152f62a11b426"
|
|
1847
1288
|
}
|
|
1848
1289
|
],
|
|
1849
1290
|
"graphDependencies": {
|
|
1850
1291
|
"indexer": [],
|
|
1851
1292
|
"workspace": []
|
|
1852
1293
|
},
|
|
1853
|
-
"digest": "sha256:
|
|
1294
|
+
"digest": "sha256:0dfc15f5f9cff4028cc71dc35be7c9533b894d2ab355a4e6eca702b029c6400b"
|
|
1854
1295
|
}
|