@hunter-harness/workflow-harness 0.2.13 → 0.2.15
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/harness/bundles/general/claude-code/.harness-build.json +1 -1
- package/harness/bundles/general/claude-code/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-plan/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-review/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-run/reference.md +3 -1
- package/harness/bundles/general/claude-code/harness-submit/SKILL.md +2 -2
- package/harness/bundles/general/claude-code/harness-submit/checklist.md +1 -1
- package/harness/bundles/general/claude-code/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-test/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/scripts/harness_archive.py +204 -0
- package/harness/bundles/general/claude-code/scripts/harness_change.py +310 -16
- package/harness/bundles/general/claude-code/scripts/harness_deploy.py +177 -0
- package/harness/bundles/general/claude-code/scripts/harness_events.py +113 -1
- package/harness/bundles/general/claude-code/scripts/harness_gate.py +57 -4
- package/harness/bundles/general/claude-code/scripts/harness_integration.py +67 -7
- package/harness/bundles/general/claude-code/scripts/harness_ledger.py +15 -3
- package/harness/bundles/general/claude-code/scripts/harness_plan_finalize.py +85 -0
- package/harness/bundles/general/claude-code/scripts/harness_preflight.py +193 -77
- package/harness/bundles/general/claude-code/scripts/harness_state.py +12 -4
- package/harness/bundles/general/claude-code/scripts/harness_test_guard.py +86 -13
- package/harness/bundles/general/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/general/codebuddy/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-plan/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-review/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-run/reference.md +3 -1
- package/harness/bundles/general/codebuddy/harness-submit/SKILL.md +2 -2
- package/harness/bundles/general/codebuddy/harness-submit/checklist.md +1 -1
- package/harness/bundles/general/codebuddy/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-test/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/scripts/harness_archive.py +204 -0
- package/harness/bundles/general/codebuddy/scripts/harness_change.py +310 -16
- package/harness/bundles/general/codebuddy/scripts/harness_deploy.py +177 -0
- package/harness/bundles/general/codebuddy/scripts/harness_events.py +113 -1
- package/harness/bundles/general/codebuddy/scripts/harness_gate.py +57 -4
- package/harness/bundles/general/codebuddy/scripts/harness_integration.py +67 -7
- package/harness/bundles/general/codebuddy/scripts/harness_ledger.py +15 -3
- package/harness/bundles/general/codebuddy/scripts/harness_plan_finalize.py +85 -0
- package/harness/bundles/general/codebuddy/scripts/harness_preflight.py +193 -77
- package/harness/bundles/general/codebuddy/scripts/harness_state.py +12 -4
- package/harness/bundles/general/codebuddy/scripts/harness_test_guard.py +86 -13
- package/harness/bundles/general/codex/.harness-build.json +1 -1
- package/harness/bundles/general/codex/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-plan/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-review/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-run/reference.md +3 -1
- package/harness/bundles/general/codex/harness-submit/SKILL.md +2 -2
- package/harness/bundles/general/codex/harness-submit/checklist.md +1 -1
- package/harness/bundles/general/codex/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-test/SKILL.md +1 -1
- package/harness/bundles/general/codex/scripts/harness_archive.py +204 -0
- package/harness/bundles/general/codex/scripts/harness_change.py +310 -16
- package/harness/bundles/general/codex/scripts/harness_deploy.py +177 -0
- package/harness/bundles/general/codex/scripts/harness_events.py +113 -1
- package/harness/bundles/general/codex/scripts/harness_gate.py +57 -4
- package/harness/bundles/general/codex/scripts/harness_integration.py +67 -7
- package/harness/bundles/general/codex/scripts/harness_ledger.py +15 -3
- package/harness/bundles/general/codex/scripts/harness_plan_finalize.py +85 -0
- package/harness/bundles/general/codex/scripts/harness_preflight.py +193 -77
- package/harness/bundles/general/codex/scripts/harness_state.py +12 -4
- package/harness/bundles/general/codex/scripts/harness_test_guard.py +86 -13
- package/harness/bundles/general/cursor/.harness-build.json +1 -1
- package/harness/bundles/general/cursor/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-plan/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-review/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-run/reference.md +3 -1
- package/harness/bundles/general/cursor/harness-submit/SKILL.md +2 -2
- package/harness/bundles/general/cursor/harness-submit/checklist.md +1 -1
- package/harness/bundles/general/cursor/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-test/SKILL.md +1 -1
- package/harness/bundles/general/cursor/scripts/harness_archive.py +204 -0
- package/harness/bundles/general/cursor/scripts/harness_change.py +310 -16
- package/harness/bundles/general/cursor/scripts/harness_deploy.py +177 -0
- package/harness/bundles/general/cursor/scripts/harness_events.py +113 -1
- package/harness/bundles/general/cursor/scripts/harness_gate.py +57 -4
- package/harness/bundles/general/cursor/scripts/harness_integration.py +67 -7
- package/harness/bundles/general/cursor/scripts/harness_ledger.py +15 -3
- package/harness/bundles/general/cursor/scripts/harness_plan_finalize.py +85 -0
- package/harness/bundles/general/cursor/scripts/harness_preflight.py +193 -77
- package/harness/bundles/general/cursor/scripts/harness_state.py +12 -4
- package/harness/bundles/general/cursor/scripts/harness_test_guard.py +86 -13
- package/harness/bundles/java/claude-code/.harness-build.json +1 -1
- package/harness/bundles/java/claude-code/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-archive/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-plan/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-review/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-submit/SKILL.md +2 -2
- package/harness/bundles/java/claude-code/harness-submit/checklist.md +1 -1
- package/harness/bundles/java/claude-code/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-test/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/scripts/harness_archive.py +204 -0
- package/harness/bundles/java/claude-code/scripts/harness_change.py +310 -16
- package/harness/bundles/java/claude-code/scripts/harness_deploy.py +177 -0
- package/harness/bundles/java/claude-code/scripts/harness_events.py +113 -1
- package/harness/bundles/java/claude-code/scripts/harness_gate.py +57 -4
- package/harness/bundles/java/claude-code/scripts/harness_integration.py +67 -7
- package/harness/bundles/java/claude-code/scripts/harness_ledger.py +15 -3
- package/harness/bundles/java/claude-code/scripts/harness_plan_finalize.py +85 -0
- package/harness/bundles/java/claude-code/scripts/harness_preflight.py +193 -77
- package/harness/bundles/java/claude-code/scripts/harness_state.py +12 -4
- package/harness/bundles/java/claude-code/scripts/harness_test_guard.py +86 -13
- package/harness/bundles/java/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/java/codebuddy/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-archive/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-plan/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-review/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-submit/SKILL.md +2 -2
- package/harness/bundles/java/codebuddy/harness-submit/checklist.md +1 -1
- package/harness/bundles/java/codebuddy/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-test/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/scripts/harness_archive.py +204 -0
- package/harness/bundles/java/codebuddy/scripts/harness_change.py +310 -16
- package/harness/bundles/java/codebuddy/scripts/harness_deploy.py +177 -0
- package/harness/bundles/java/codebuddy/scripts/harness_events.py +113 -1
- package/harness/bundles/java/codebuddy/scripts/harness_gate.py +57 -4
- package/harness/bundles/java/codebuddy/scripts/harness_integration.py +67 -7
- package/harness/bundles/java/codebuddy/scripts/harness_ledger.py +15 -3
- package/harness/bundles/java/codebuddy/scripts/harness_plan_finalize.py +85 -0
- package/harness/bundles/java/codebuddy/scripts/harness_preflight.py +193 -77
- package/harness/bundles/java/codebuddy/scripts/harness_state.py +12 -4
- package/harness/bundles/java/codebuddy/scripts/harness_test_guard.py +86 -13
- package/harness/bundles/java/codex/.harness-build.json +1 -1
- package/harness/bundles/java/codex/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-archive/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-plan/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-review/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-submit/SKILL.md +2 -2
- package/harness/bundles/java/codex/harness-submit/checklist.md +1 -1
- package/harness/bundles/java/codex/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-test/SKILL.md +1 -1
- package/harness/bundles/java/codex/scripts/harness_archive.py +204 -0
- package/harness/bundles/java/codex/scripts/harness_change.py +310 -16
- package/harness/bundles/java/codex/scripts/harness_deploy.py +177 -0
- package/harness/bundles/java/codex/scripts/harness_events.py +113 -1
- package/harness/bundles/java/codex/scripts/harness_gate.py +57 -4
- package/harness/bundles/java/codex/scripts/harness_integration.py +67 -7
- package/harness/bundles/java/codex/scripts/harness_ledger.py +15 -3
- package/harness/bundles/java/codex/scripts/harness_plan_finalize.py +85 -0
- package/harness/bundles/java/codex/scripts/harness_preflight.py +193 -77
- package/harness/bundles/java/codex/scripts/harness_state.py +12 -4
- package/harness/bundles/java/codex/scripts/harness_test_guard.py +86 -13
- package/harness/bundles/java/cursor/.harness-build.json +1 -1
- package/harness/bundles/java/cursor/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-archive/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-plan/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-review/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-submit/SKILL.md +2 -2
- package/harness/bundles/java/cursor/harness-submit/checklist.md +1 -1
- package/harness/bundles/java/cursor/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-test/SKILL.md +1 -1
- package/harness/bundles/java/cursor/scripts/harness_archive.py +204 -0
- package/harness/bundles/java/cursor/scripts/harness_change.py +310 -16
- package/harness/bundles/java/cursor/scripts/harness_deploy.py +177 -0
- package/harness/bundles/java/cursor/scripts/harness_events.py +113 -1
- package/harness/bundles/java/cursor/scripts/harness_gate.py +57 -4
- package/harness/bundles/java/cursor/scripts/harness_integration.py +67 -7
- package/harness/bundles/java/cursor/scripts/harness_ledger.py +15 -3
- package/harness/bundles/java/cursor/scripts/harness_plan_finalize.py +85 -0
- package/harness/bundles/java/cursor/scripts/harness_preflight.py +193 -77
- package/harness/bundles/java/cursor/scripts/harness_state.py +12 -4
- package/harness/bundles/java/cursor/scripts/harness_test_guard.py +86 -13
- package/harness/manifests/general/claude-code.json +25 -25
- package/harness/manifests/general/codebuddy.json +25 -25
- package/harness/manifests/general/codex.json +25 -25
- package/harness/manifests/general/cursor.json +25 -25
- package/harness/manifests/java/claude-code.json +26 -26
- package/harness/manifests/java/codebuddy.json +26 -26
- package/harness/manifests/java/codex.json +26 -26
- package/harness/manifests/java/cursor.json +26 -26
- package/hunter-workflow-family.json +2 -2
- package/package.json +15 -15
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "general",
|
|
4
4
|
"adapter": "cursor",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.14",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "27503407fc705987a4692952b38d05111296169554d197ca7e6ac1af2e363404"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "CONTEXT.md",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
37
|
"path": "harness-archive/SKILL.md",
|
|
38
|
-
"sha256": "
|
|
38
|
+
"sha256": "c7789cdde198c00eb50a74c5bd3d55ebac9f373b71378b2da580f335a4ff5b0e"
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
57
|
"path": "harness-codebase-map/SKILL.md",
|
|
58
|
-
"sha256": "
|
|
58
|
+
"sha256": "b8e79d54c723ad23710d0a283357f3d772de4e70ed1d5cdf1446749a9dbcd6c0"
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
61
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -119,11 +119,11 @@
|
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
121
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
122
|
-
"sha256": "
|
|
122
|
+
"sha256": "9309ee85d5e0a3495da9a5467bf2b69b80119b164ebd2f510465a4e672d1011f"
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
125
|
"path": "harness-knowledge-query/SKILL.md",
|
|
126
|
-
"sha256": "
|
|
126
|
+
"sha256": "819eebb7303dfe0a27f855661a27ead4ca18681ba01cdb75d68c7700f75a4ff7"
|
|
127
127
|
},
|
|
128
128
|
{
|
|
129
129
|
"path": "harness-plan/checklist.md",
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
},
|
|
140
140
|
{
|
|
141
141
|
"path": "harness-plan/SKILL.md",
|
|
142
|
-
"sha256": "
|
|
142
|
+
"sha256": "9ee84cc2e630745c25736c59a89fbab9519f33bf43ee1785a39e6bb3bbda7b43"
|
|
143
143
|
},
|
|
144
144
|
{
|
|
145
145
|
"path": "harness-review/checklist.md",
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
},
|
|
156
156
|
{
|
|
157
157
|
"path": "harness-review/SKILL.md",
|
|
158
|
-
"sha256": "
|
|
158
|
+
"sha256": "ff63c9204966009bbd2d3ee74eb96864404b2886016d5c57d3dc47ebd1256e42"
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
161
|
"path": "harness-run/checklist.md",
|
|
@@ -167,15 +167,15 @@
|
|
|
167
167
|
},
|
|
168
168
|
{
|
|
169
169
|
"path": "harness-run/reference.md",
|
|
170
|
-
"sha256": "
|
|
170
|
+
"sha256": "0c47bca05013669fb1f1a6d6d232aa7771657a5b9727f666811bc2d9e640850c"
|
|
171
171
|
},
|
|
172
172
|
{
|
|
173
173
|
"path": "harness-run/SKILL.md",
|
|
174
|
-
"sha256": "
|
|
174
|
+
"sha256": "80afab9de8813ba9746185cb25aa8adc88992a07954715e82d7f1395ab656334"
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
177
|
"path": "harness-submit/checklist.md",
|
|
178
|
-
"sha256": "
|
|
178
|
+
"sha256": "297a6a235ef03cd49ef1c3bd13180040f8ce25354b2ced82373d4a7a5f0dc181"
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"path": "harness-submit/reference.md",
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
},
|
|
184
184
|
{
|
|
185
185
|
"path": "harness-submit/SKILL.md",
|
|
186
|
-
"sha256": "
|
|
186
|
+
"sha256": "9d167edee85d08a0bc15bef79f25cbd71f26b297ae010868008019d9c26278aa"
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
189
|
"path": "harness-sync/reference.md",
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
"path": "harness-sync/SKILL.md",
|
|
194
|
-
"sha256": "
|
|
194
|
+
"sha256": "0ab6719f19cf82cd8aa390324048956dbac1ac4a76f963d056472ca96ef24e5b"
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
197
|
"path": "harness-test/checklist.md",
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
},
|
|
216
216
|
{
|
|
217
217
|
"path": "harness-test/SKILL.md",
|
|
218
|
-
"sha256": "
|
|
218
|
+
"sha256": "857df0bbbecd86539add932b1b466ed067cccf01bb044d560963c36dc6a9b6bd"
|
|
219
219
|
},
|
|
220
220
|
{
|
|
221
221
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -259,11 +259,11 @@
|
|
|
259
259
|
},
|
|
260
260
|
{
|
|
261
261
|
"path": "scripts/harness_archive.py",
|
|
262
|
-
"sha256": "
|
|
262
|
+
"sha256": "3e4802a07b2f798243bdcfe4733830b59ea4a387a751189e23017a4dc2ebc80b"
|
|
263
263
|
},
|
|
264
264
|
{
|
|
265
265
|
"path": "scripts/harness_change.py",
|
|
266
|
-
"sha256": "
|
|
266
|
+
"sha256": "fa3cbaaf48cd22c4b043d96a4ced7005122fcdc076f47de3b89cd36e42c97e14"
|
|
267
267
|
},
|
|
268
268
|
{
|
|
269
269
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -271,23 +271,23 @@
|
|
|
271
271
|
},
|
|
272
272
|
{
|
|
273
273
|
"path": "scripts/harness_deploy.py",
|
|
274
|
-
"sha256": "
|
|
274
|
+
"sha256": "4a0a4ccfd6ded25596266d7f07cc5e740b4d7224dfba610cd9f7f041d23948e9"
|
|
275
275
|
},
|
|
276
276
|
{
|
|
277
277
|
"path": "scripts/harness_events.py",
|
|
278
|
-
"sha256": "
|
|
278
|
+
"sha256": "a44614a8bb497820619feaf2531569942a7a61de2dfe4d3f0646aece23636f62"
|
|
279
279
|
},
|
|
280
280
|
{
|
|
281
281
|
"path": "scripts/harness_gate.py",
|
|
282
|
-
"sha256": "
|
|
282
|
+
"sha256": "f83e9d33816052553e2ae8e5514fae318c5b5bc48ba2aded67d88fc9f0b51a98"
|
|
283
283
|
},
|
|
284
284
|
{
|
|
285
285
|
"path": "scripts/harness_integration.py",
|
|
286
|
-
"sha256": "
|
|
286
|
+
"sha256": "6b078d7d1d053e4c46bc320496fab3060d883b256d517a56f0b078eec2fa0ce0"
|
|
287
287
|
},
|
|
288
288
|
{
|
|
289
289
|
"path": "scripts/harness_ledger.py",
|
|
290
|
-
"sha256": "
|
|
290
|
+
"sha256": "5141168aa1c566327e421d6ab6de876dfe0cf6ae3e97d336fcce6dc7fc4bfb56"
|
|
291
291
|
},
|
|
292
292
|
{
|
|
293
293
|
"path": "scripts/harness_paths.py",
|
|
@@ -299,11 +299,11 @@
|
|
|
299
299
|
},
|
|
300
300
|
{
|
|
301
301
|
"path": "scripts/harness_plan_finalize.py",
|
|
302
|
-
"sha256": "
|
|
302
|
+
"sha256": "5534eb277e29e3473149a0f113ea107dc17b6cade742d7de920befb87e46fdfa"
|
|
303
303
|
},
|
|
304
304
|
{
|
|
305
305
|
"path": "scripts/harness_preflight.py",
|
|
306
|
-
"sha256": "
|
|
306
|
+
"sha256": "ee9859b06abd14d002fac68cf0045270532df24ea5c24ca62db852ec7cf0d10b"
|
|
307
307
|
},
|
|
308
308
|
{
|
|
309
309
|
"path": "scripts/harness_profile.py",
|
|
@@ -323,7 +323,7 @@
|
|
|
323
323
|
},
|
|
324
324
|
{
|
|
325
325
|
"path": "scripts/harness_state.py",
|
|
326
|
-
"sha256": "
|
|
326
|
+
"sha256": "abadf62081ffa514c7efd41b538e824b05398fdc6f4b0d64a5d618207ee64e4d"
|
|
327
327
|
},
|
|
328
328
|
{
|
|
329
329
|
"path": "scripts/harness_sync.py",
|
|
@@ -331,7 +331,7 @@
|
|
|
331
331
|
},
|
|
332
332
|
{
|
|
333
333
|
"path": "scripts/harness_test_guard.py",
|
|
334
|
-
"sha256": "
|
|
334
|
+
"sha256": "36d0ae0776c75fb2f5a233500aa8dd1647a17880676cb07e441e2896e402e67c"
|
|
335
335
|
},
|
|
336
336
|
{
|
|
337
337
|
"path": "scripts/harness_workflow_policy.py",
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "claude-code",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.14",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "630741cefffbe5e1cff74531a05510bb8bd33d5b154fcaab54ff9ae5d23f12d1"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "agents/harness-evaluator.md",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
"path": "harness-apidoc/SKILL.md",
|
|
46
|
-
"sha256": "
|
|
46
|
+
"sha256": "f83ec4cf7241d0fb2230580f0e3ab03f7426129cf0658a105f3ca6b54938feb4"
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
"path": "harness-archive/checklist.md",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
61
|
"path": "harness-archive/SKILL.md",
|
|
62
|
-
"sha256": "
|
|
62
|
+
"sha256": "f60c4315c1ffbd550794fdaf1d559a9374d30baf325e4ef103e41af5f0e322f9"
|
|
63
63
|
},
|
|
64
64
|
{
|
|
65
65
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
81
|
"path": "harness-codebase-map/SKILL.md",
|
|
82
|
-
"sha256": "
|
|
82
|
+
"sha256": "138b4d30f5e2698e9781cac42e3591d23615bcc35d836fe225d2d32c98e29cb2"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
85
85
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -143,11 +143,11 @@
|
|
|
143
143
|
},
|
|
144
144
|
{
|
|
145
145
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
146
|
-
"sha256": "
|
|
146
|
+
"sha256": "2b5d85637a7047a9b5e55d59bd77e4d2615b4bf1f615f14fda924ee237445d3a"
|
|
147
147
|
},
|
|
148
148
|
{
|
|
149
149
|
"path": "harness-knowledge-query/SKILL.md",
|
|
150
|
-
"sha256": "
|
|
150
|
+
"sha256": "9445d49fd7489af56e50cf9aab1c33d87371963838aedcacd51fc205b936ceb8"
|
|
151
151
|
},
|
|
152
152
|
{
|
|
153
153
|
"path": "harness-package/checklist.md",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
161
|
"path": "harness-package/SKILL.md",
|
|
162
|
-
"sha256": "
|
|
162
|
+
"sha256": "753e58f676760913aa0d7052d8ae145951328b0eadf65e85b2a616dac675c039"
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
165
|
"path": "harness-plan/checklist.md",
|
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
177
|
"path": "harness-plan/SKILL.md",
|
|
178
|
-
"sha256": "
|
|
178
|
+
"sha256": "c72769aea6c1b893a6224a1867d8653682bae83aad902fd47f067efb27d7403d"
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"path": "harness-review/checklist.md",
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
"path": "harness-review/SKILL.md",
|
|
194
|
-
"sha256": "
|
|
194
|
+
"sha256": "2a094caed509c43a20acf14ec173af1d28243705d654a8da0d512635fa2ac08a"
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
197
|
"path": "harness-run/checklist.md",
|
|
@@ -207,11 +207,11 @@
|
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
"path": "harness-run/SKILL.md",
|
|
210
|
-
"sha256": "
|
|
210
|
+
"sha256": "eb77edbf9c9f43e1dae7dbb3942a91b12b812498c2063352b0d9856a49e8e7f1"
|
|
211
211
|
},
|
|
212
212
|
{
|
|
213
213
|
"path": "harness-submit/checklist.md",
|
|
214
|
-
"sha256": "
|
|
214
|
+
"sha256": "297a6a235ef03cd49ef1c3bd13180040f8ce25354b2ced82373d4a7a5f0dc181"
|
|
215
215
|
},
|
|
216
216
|
{
|
|
217
217
|
"path": "harness-submit/reference.md",
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
},
|
|
220
220
|
{
|
|
221
221
|
"path": "harness-submit/SKILL.md",
|
|
222
|
-
"sha256": "
|
|
222
|
+
"sha256": "dbb16c115c093144203627af4c5588edcd59afbb9378815d495e7efe2ded8337"
|
|
223
223
|
},
|
|
224
224
|
{
|
|
225
225
|
"path": "harness-sync/reference.md",
|
|
@@ -227,7 +227,7 @@
|
|
|
227
227
|
},
|
|
228
228
|
{
|
|
229
229
|
"path": "harness-sync/SKILL.md",
|
|
230
|
-
"sha256": "
|
|
230
|
+
"sha256": "a88df30f0122ddc11638bc9f14ae62eff185a3963f12b461a0953867fc576cfa"
|
|
231
231
|
},
|
|
232
232
|
{
|
|
233
233
|
"path": "harness-test/checklist.md",
|
|
@@ -251,7 +251,7 @@
|
|
|
251
251
|
},
|
|
252
252
|
{
|
|
253
253
|
"path": "harness-test/SKILL.md",
|
|
254
|
-
"sha256": "
|
|
254
|
+
"sha256": "36bdc3046bc65b5259234b22c0f2b77c878a1ed39c7f0a5ec6f29c3bcd00e646"
|
|
255
255
|
},
|
|
256
256
|
{
|
|
257
257
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -295,11 +295,11 @@
|
|
|
295
295
|
},
|
|
296
296
|
{
|
|
297
297
|
"path": "scripts/harness_archive.py",
|
|
298
|
-
"sha256": "
|
|
298
|
+
"sha256": "3e4802a07b2f798243bdcfe4733830b59ea4a387a751189e23017a4dc2ebc80b"
|
|
299
299
|
},
|
|
300
300
|
{
|
|
301
301
|
"path": "scripts/harness_change.py",
|
|
302
|
-
"sha256": "
|
|
302
|
+
"sha256": "fa3cbaaf48cd22c4b043d96a4ced7005122fcdc076f47de3b89cd36e42c97e14"
|
|
303
303
|
},
|
|
304
304
|
{
|
|
305
305
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -307,23 +307,23 @@
|
|
|
307
307
|
},
|
|
308
308
|
{
|
|
309
309
|
"path": "scripts/harness_deploy.py",
|
|
310
|
-
"sha256": "
|
|
310
|
+
"sha256": "4a0a4ccfd6ded25596266d7f07cc5e740b4d7224dfba610cd9f7f041d23948e9"
|
|
311
311
|
},
|
|
312
312
|
{
|
|
313
313
|
"path": "scripts/harness_events.py",
|
|
314
|
-
"sha256": "
|
|
314
|
+
"sha256": "a44614a8bb497820619feaf2531569942a7a61de2dfe4d3f0646aece23636f62"
|
|
315
315
|
},
|
|
316
316
|
{
|
|
317
317
|
"path": "scripts/harness_gate.py",
|
|
318
|
-
"sha256": "
|
|
318
|
+
"sha256": "f83e9d33816052553e2ae8e5514fae318c5b5bc48ba2aded67d88fc9f0b51a98"
|
|
319
319
|
},
|
|
320
320
|
{
|
|
321
321
|
"path": "scripts/harness_integration.py",
|
|
322
|
-
"sha256": "
|
|
322
|
+
"sha256": "6b078d7d1d053e4c46bc320496fab3060d883b256d517a56f0b078eec2fa0ce0"
|
|
323
323
|
},
|
|
324
324
|
{
|
|
325
325
|
"path": "scripts/harness_ledger.py",
|
|
326
|
-
"sha256": "
|
|
326
|
+
"sha256": "5141168aa1c566327e421d6ab6de876dfe0cf6ae3e97d336fcce6dc7fc4bfb56"
|
|
327
327
|
},
|
|
328
328
|
{
|
|
329
329
|
"path": "scripts/harness_paths.py",
|
|
@@ -335,11 +335,11 @@
|
|
|
335
335
|
},
|
|
336
336
|
{
|
|
337
337
|
"path": "scripts/harness_plan_finalize.py",
|
|
338
|
-
"sha256": "
|
|
338
|
+
"sha256": "5534eb277e29e3473149a0f113ea107dc17b6cade742d7de920befb87e46fdfa"
|
|
339
339
|
},
|
|
340
340
|
{
|
|
341
341
|
"path": "scripts/harness_preflight.py",
|
|
342
|
-
"sha256": "
|
|
342
|
+
"sha256": "ee9859b06abd14d002fac68cf0045270532df24ea5c24ca62db852ec7cf0d10b"
|
|
343
343
|
},
|
|
344
344
|
{
|
|
345
345
|
"path": "scripts/harness_profile.py",
|
|
@@ -359,7 +359,7 @@
|
|
|
359
359
|
},
|
|
360
360
|
{
|
|
361
361
|
"path": "scripts/harness_state.py",
|
|
362
|
-
"sha256": "
|
|
362
|
+
"sha256": "abadf62081ffa514c7efd41b538e824b05398fdc6f4b0d64a5d618207ee64e4d"
|
|
363
363
|
},
|
|
364
364
|
{
|
|
365
365
|
"path": "scripts/harness_sync.py",
|
|
@@ -367,7 +367,7 @@
|
|
|
367
367
|
},
|
|
368
368
|
{
|
|
369
369
|
"path": "scripts/harness_test_guard.py",
|
|
370
|
-
"sha256": "
|
|
370
|
+
"sha256": "36d0ae0776c75fb2f5a233500aa8dd1647a17880676cb07e441e2896e402e67c"
|
|
371
371
|
},
|
|
372
372
|
{
|
|
373
373
|
"path": "scripts/harness_workflow_policy.py",
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "codebuddy",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.14",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "0784b40206ffef7ef30d37d709e6be8a27266a46d3e3b689de913d63929656ba"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "agents/harness-evaluator.md",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
"path": "harness-apidoc/SKILL.md",
|
|
46
|
-
"sha256": "
|
|
46
|
+
"sha256": "f63bc9f9e2b7bd4e3d41eef64b4e0d65a403c82b04ba3d30bf91cea64734184f"
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
"path": "harness-archive/checklist.md",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
61
|
"path": "harness-archive/SKILL.md",
|
|
62
|
-
"sha256": "
|
|
62
|
+
"sha256": "8cda0887dc4ec953c5544b08168e408fd2ccefeb248dc3fc9039d33bf13a4255"
|
|
63
63
|
},
|
|
64
64
|
{
|
|
65
65
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
81
|
"path": "harness-codebase-map/SKILL.md",
|
|
82
|
-
"sha256": "
|
|
82
|
+
"sha256": "50e42cd7130515324b00dd87f7cb9df7f8694dd1ebbdfc7eb3d9e7e9d22bdb9b"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
85
85
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -143,11 +143,11 @@
|
|
|
143
143
|
},
|
|
144
144
|
{
|
|
145
145
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
146
|
-
"sha256": "
|
|
146
|
+
"sha256": "6471fa45f6c5e0e5190b4b7bcba3e0d263cc7aaeaa8a3fd27a7b522c7fc1247d"
|
|
147
147
|
},
|
|
148
148
|
{
|
|
149
149
|
"path": "harness-knowledge-query/SKILL.md",
|
|
150
|
-
"sha256": "
|
|
150
|
+
"sha256": "34da570ff4e418082302469391ae882e2c5e6f2341535fdf0bfe437953d63003"
|
|
151
151
|
},
|
|
152
152
|
{
|
|
153
153
|
"path": "harness-package/checklist.md",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
161
|
"path": "harness-package/SKILL.md",
|
|
162
|
-
"sha256": "
|
|
162
|
+
"sha256": "fcf6c4a3d646ac9fca1fbbe955e349f59e6262f73b58bca661e60e73647853ff"
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
165
|
"path": "harness-plan/checklist.md",
|
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
177
|
"path": "harness-plan/SKILL.md",
|
|
178
|
-
"sha256": "
|
|
178
|
+
"sha256": "f8e78b7638d2addf4aed046ae97865090333e012c6cd20c3a4789af3222a9c4d"
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"path": "harness-review/checklist.md",
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
"path": "harness-review/SKILL.md",
|
|
194
|
-
"sha256": "
|
|
194
|
+
"sha256": "c7e2cc899ba08de410f7d56badb467fcbc2950fe0bd7b65d8b1099486ab0baea"
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
197
|
"path": "harness-run/checklist.md",
|
|
@@ -207,11 +207,11 @@
|
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
"path": "harness-run/SKILL.md",
|
|
210
|
-
"sha256": "
|
|
210
|
+
"sha256": "01cd1bfd50d92e420fd1f6c7aaeb4a85bde9db771efacb93b99d48a63247b960"
|
|
211
211
|
},
|
|
212
212
|
{
|
|
213
213
|
"path": "harness-submit/checklist.md",
|
|
214
|
-
"sha256": "
|
|
214
|
+
"sha256": "297a6a235ef03cd49ef1c3bd13180040f8ce25354b2ced82373d4a7a5f0dc181"
|
|
215
215
|
},
|
|
216
216
|
{
|
|
217
217
|
"path": "harness-submit/reference.md",
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
},
|
|
220
220
|
{
|
|
221
221
|
"path": "harness-submit/SKILL.md",
|
|
222
|
-
"sha256": "
|
|
222
|
+
"sha256": "851df15d491c861f2ce8077b09340278e504abbe791f3292ea9742713a33b73b"
|
|
223
223
|
},
|
|
224
224
|
{
|
|
225
225
|
"path": "harness-sync/reference.md",
|
|
@@ -227,7 +227,7 @@
|
|
|
227
227
|
},
|
|
228
228
|
{
|
|
229
229
|
"path": "harness-sync/SKILL.md",
|
|
230
|
-
"sha256": "
|
|
230
|
+
"sha256": "51516dfa9ef29a9146395071bbd743bdd1e78d81df2cf8e971ab05f5aa2f142d"
|
|
231
231
|
},
|
|
232
232
|
{
|
|
233
233
|
"path": "harness-test/checklist.md",
|
|
@@ -251,7 +251,7 @@
|
|
|
251
251
|
},
|
|
252
252
|
{
|
|
253
253
|
"path": "harness-test/SKILL.md",
|
|
254
|
-
"sha256": "
|
|
254
|
+
"sha256": "b2bbf3154843a5cb406c3321fd1b983eea5ea28fad792723d3131e3e9e6c9ece"
|
|
255
255
|
},
|
|
256
256
|
{
|
|
257
257
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -295,11 +295,11 @@
|
|
|
295
295
|
},
|
|
296
296
|
{
|
|
297
297
|
"path": "scripts/harness_archive.py",
|
|
298
|
-
"sha256": "
|
|
298
|
+
"sha256": "3e4802a07b2f798243bdcfe4733830b59ea4a387a751189e23017a4dc2ebc80b"
|
|
299
299
|
},
|
|
300
300
|
{
|
|
301
301
|
"path": "scripts/harness_change.py",
|
|
302
|
-
"sha256": "
|
|
302
|
+
"sha256": "fa3cbaaf48cd22c4b043d96a4ced7005122fcdc076f47de3b89cd36e42c97e14"
|
|
303
303
|
},
|
|
304
304
|
{
|
|
305
305
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -307,23 +307,23 @@
|
|
|
307
307
|
},
|
|
308
308
|
{
|
|
309
309
|
"path": "scripts/harness_deploy.py",
|
|
310
|
-
"sha256": "
|
|
310
|
+
"sha256": "4a0a4ccfd6ded25596266d7f07cc5e740b4d7224dfba610cd9f7f041d23948e9"
|
|
311
311
|
},
|
|
312
312
|
{
|
|
313
313
|
"path": "scripts/harness_events.py",
|
|
314
|
-
"sha256": "
|
|
314
|
+
"sha256": "a44614a8bb497820619feaf2531569942a7a61de2dfe4d3f0646aece23636f62"
|
|
315
315
|
},
|
|
316
316
|
{
|
|
317
317
|
"path": "scripts/harness_gate.py",
|
|
318
|
-
"sha256": "
|
|
318
|
+
"sha256": "f83e9d33816052553e2ae8e5514fae318c5b5bc48ba2aded67d88fc9f0b51a98"
|
|
319
319
|
},
|
|
320
320
|
{
|
|
321
321
|
"path": "scripts/harness_integration.py",
|
|
322
|
-
"sha256": "
|
|
322
|
+
"sha256": "6b078d7d1d053e4c46bc320496fab3060d883b256d517a56f0b078eec2fa0ce0"
|
|
323
323
|
},
|
|
324
324
|
{
|
|
325
325
|
"path": "scripts/harness_ledger.py",
|
|
326
|
-
"sha256": "
|
|
326
|
+
"sha256": "5141168aa1c566327e421d6ab6de876dfe0cf6ae3e97d336fcce6dc7fc4bfb56"
|
|
327
327
|
},
|
|
328
328
|
{
|
|
329
329
|
"path": "scripts/harness_paths.py",
|
|
@@ -335,11 +335,11 @@
|
|
|
335
335
|
},
|
|
336
336
|
{
|
|
337
337
|
"path": "scripts/harness_plan_finalize.py",
|
|
338
|
-
"sha256": "
|
|
338
|
+
"sha256": "5534eb277e29e3473149a0f113ea107dc17b6cade742d7de920befb87e46fdfa"
|
|
339
339
|
},
|
|
340
340
|
{
|
|
341
341
|
"path": "scripts/harness_preflight.py",
|
|
342
|
-
"sha256": "
|
|
342
|
+
"sha256": "ee9859b06abd14d002fac68cf0045270532df24ea5c24ca62db852ec7cf0d10b"
|
|
343
343
|
},
|
|
344
344
|
{
|
|
345
345
|
"path": "scripts/harness_profile.py",
|
|
@@ -359,7 +359,7 @@
|
|
|
359
359
|
},
|
|
360
360
|
{
|
|
361
361
|
"path": "scripts/harness_state.py",
|
|
362
|
-
"sha256": "
|
|
362
|
+
"sha256": "abadf62081ffa514c7efd41b538e824b05398fdc6f4b0d64a5d618207ee64e4d"
|
|
363
363
|
},
|
|
364
364
|
{
|
|
365
365
|
"path": "scripts/harness_sync.py",
|
|
@@ -367,7 +367,7 @@
|
|
|
367
367
|
},
|
|
368
368
|
{
|
|
369
369
|
"path": "scripts/harness_test_guard.py",
|
|
370
|
-
"sha256": "
|
|
370
|
+
"sha256": "36d0ae0776c75fb2f5a233500aa8dd1647a17880676cb07e441e2896e402e67c"
|
|
371
371
|
},
|
|
372
372
|
{
|
|
373
373
|
"path": "scripts/harness_workflow_policy.py",
|