@hunter-harness/workflow-harness 0.2.38 → 0.2.39
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 +10 -7
- package/harness/bundles/general/claude-code/harness-archive/templates/render-summary.mjs +24 -4
- 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-ingest/scripts/harness_knowledge.py +283 -28
- 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 +2 -2
- package/harness/bundles/general/claude-code/harness-review/reference.md +20 -5
- package/harness/bundles/general/claude-code/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-submit/SKILL.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 +446 -20
- package/harness/bundles/general/claude-code/scripts/harness_events.py +273 -21
- package/harness/bundles/general/claude-code/scripts/harness_gate.py +56 -32
- package/harness/bundles/general/claude-code/scripts/harness_integration.py +197 -3
- package/harness/bundles/general/claude-code/scripts/harness_ledger.py +126 -2
- package/harness/bundles/general/claude-code/scripts/harness_report_model.py +28 -6
- package/harness/bundles/general/claude-code/scripts/harness_review.py +118 -17
- package/harness/bundles/general/claude-code/scripts/harness_service.py +219 -0
- package/harness/bundles/general/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/general/codebuddy/harness-archive/SKILL.md +10 -7
- package/harness/bundles/general/codebuddy/harness-archive/templates/render-summary.mjs +24 -4
- 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-ingest/scripts/harness_knowledge.py +283 -28
- 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 +2 -2
- package/harness/bundles/general/codebuddy/harness-review/reference.md +20 -5
- package/harness/bundles/general/codebuddy/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-submit/SKILL.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 +446 -20
- package/harness/bundles/general/codebuddy/scripts/harness_events.py +273 -21
- package/harness/bundles/general/codebuddy/scripts/harness_gate.py +56 -32
- package/harness/bundles/general/codebuddy/scripts/harness_integration.py +197 -3
- package/harness/bundles/general/codebuddy/scripts/harness_ledger.py +126 -2
- package/harness/bundles/general/codebuddy/scripts/harness_report_model.py +28 -6
- package/harness/bundles/general/codebuddy/scripts/harness_review.py +118 -17
- package/harness/bundles/general/codebuddy/scripts/harness_service.py +219 -0
- package/harness/bundles/general/codex/.harness-build.json +1 -1
- package/harness/bundles/general/codex/harness-archive/SKILL.md +10 -7
- package/harness/bundles/general/codex/harness-archive/templates/render-summary.mjs +24 -4
- 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-ingest/scripts/harness_knowledge.py +283 -28
- 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 +2 -2
- package/harness/bundles/general/codex/harness-review/reference.md +20 -5
- package/harness/bundles/general/codex/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-submit/SKILL.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 +446 -20
- package/harness/bundles/general/codex/scripts/harness_events.py +273 -21
- package/harness/bundles/general/codex/scripts/harness_gate.py +56 -32
- package/harness/bundles/general/codex/scripts/harness_integration.py +197 -3
- package/harness/bundles/general/codex/scripts/harness_ledger.py +126 -2
- package/harness/bundles/general/codex/scripts/harness_report_model.py +28 -6
- package/harness/bundles/general/codex/scripts/harness_review.py +118 -17
- package/harness/bundles/general/codex/scripts/harness_service.py +219 -0
- package/harness/bundles/general/cursor/.harness-build.json +1 -1
- package/harness/bundles/general/cursor/harness-archive/SKILL.md +10 -7
- package/harness/bundles/general/cursor/harness-archive/templates/render-summary.mjs +24 -4
- 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-ingest/scripts/harness_knowledge.py +283 -28
- 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 +2 -2
- package/harness/bundles/general/cursor/harness-review/reference.md +20 -5
- package/harness/bundles/general/cursor/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-submit/SKILL.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 +446 -20
- package/harness/bundles/general/cursor/scripts/harness_events.py +273 -21
- package/harness/bundles/general/cursor/scripts/harness_gate.py +56 -32
- package/harness/bundles/general/cursor/scripts/harness_integration.py +197 -3
- package/harness/bundles/general/cursor/scripts/harness_ledger.py +126 -2
- package/harness/bundles/general/cursor/scripts/harness_report_model.py +28 -6
- package/harness/bundles/general/cursor/scripts/harness_review.py +118 -17
- package/harness/bundles/general/cursor/scripts/harness_service.py +219 -0
- 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 +10 -7
- package/harness/bundles/java/claude-code/harness-archive/templates/render-summary.mjs +24 -4
- 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-ingest/scripts/harness_knowledge.py +283 -28
- 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 +2 -2
- package/harness/bundles/java/claude-code/harness-review/reference.md +20 -5
- package/harness/bundles/java/claude-code/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-submit/SKILL.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 +446 -20
- package/harness/bundles/java/claude-code/scripts/harness_events.py +273 -21
- package/harness/bundles/java/claude-code/scripts/harness_gate.py +56 -32
- package/harness/bundles/java/claude-code/scripts/harness_integration.py +197 -3
- package/harness/bundles/java/claude-code/scripts/harness_ledger.py +126 -2
- package/harness/bundles/java/claude-code/scripts/harness_report_model.py +28 -6
- package/harness/bundles/java/claude-code/scripts/harness_review.py +118 -17
- package/harness/bundles/java/claude-code/scripts/harness_service.py +219 -0
- 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 +10 -7
- package/harness/bundles/java/codebuddy/harness-archive/templates/render-summary.mjs +24 -4
- 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-ingest/scripts/harness_knowledge.py +283 -28
- 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 +2 -2
- package/harness/bundles/java/codebuddy/harness-review/reference.md +20 -5
- package/harness/bundles/java/codebuddy/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-submit/SKILL.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 +446 -20
- package/harness/bundles/java/codebuddy/scripts/harness_events.py +273 -21
- package/harness/bundles/java/codebuddy/scripts/harness_gate.py +56 -32
- package/harness/bundles/java/codebuddy/scripts/harness_integration.py +197 -3
- package/harness/bundles/java/codebuddy/scripts/harness_ledger.py +126 -2
- package/harness/bundles/java/codebuddy/scripts/harness_report_model.py +28 -6
- package/harness/bundles/java/codebuddy/scripts/harness_review.py +118 -17
- package/harness/bundles/java/codebuddy/scripts/harness_service.py +219 -0
- 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 +10 -7
- package/harness/bundles/java/codex/harness-archive/templates/render-summary.mjs +24 -4
- 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-ingest/scripts/harness_knowledge.py +283 -28
- 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 +2 -2
- package/harness/bundles/java/codex/harness-review/reference.md +20 -5
- package/harness/bundles/java/codex/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-submit/SKILL.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 +446 -20
- package/harness/bundles/java/codex/scripts/harness_events.py +273 -21
- package/harness/bundles/java/codex/scripts/harness_gate.py +56 -32
- package/harness/bundles/java/codex/scripts/harness_integration.py +197 -3
- package/harness/bundles/java/codex/scripts/harness_ledger.py +126 -2
- package/harness/bundles/java/codex/scripts/harness_report_model.py +28 -6
- package/harness/bundles/java/codex/scripts/harness_review.py +118 -17
- package/harness/bundles/java/codex/scripts/harness_service.py +219 -0
- 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 +10 -7
- package/harness/bundles/java/cursor/harness-archive/templates/render-summary.mjs +24 -4
- 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-ingest/scripts/harness_knowledge.py +283 -28
- 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 +2 -2
- package/harness/bundles/java/cursor/harness-review/reference.md +20 -5
- package/harness/bundles/java/cursor/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-submit/SKILL.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 +446 -20
- package/harness/bundles/java/cursor/scripts/harness_events.py +273 -21
- package/harness/bundles/java/cursor/scripts/harness_gate.py +56 -32
- package/harness/bundles/java/cursor/scripts/harness_integration.py +197 -3
- package/harness/bundles/java/cursor/scripts/harness_ledger.py +126 -2
- package/harness/bundles/java/cursor/scripts/harness_report_model.py +28 -6
- package/harness/bundles/java/cursor/scripts/harness_review.py +118 -17
- package/harness/bundles/java/cursor/scripts/harness_service.py +219 -0
- package/harness/manifests/general/claude-code.json +24 -24
- package/harness/manifests/general/codebuddy.json +24 -24
- package/harness/manifests/general/codex.json +24 -24
- package/harness/manifests/general/cursor.json +24 -24
- 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 +4 -4
- package/package.json +1 -1
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "claude-code",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.29",
|
|
6
6
|
"requires": {
|
|
7
|
-
"minimumCliVersion": "0.2.
|
|
7
|
+
"minimumCliVersion": "0.2.41",
|
|
8
8
|
"capabilities": [
|
|
9
9
|
"sync@1",
|
|
10
10
|
"rules-sync@1",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"files": [
|
|
23
23
|
{
|
|
24
24
|
"path": ".harness-build.json",
|
|
25
|
-
"sha256": "
|
|
25
|
+
"sha256": "c2205567cb6706c2ad751217362b3f1b440dfae6902fc8583ceea56828d774e7"
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
28
|
"path": "agents/harness-evaluator.md",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
72
|
"path": "harness-apidoc/SKILL.md",
|
|
73
|
-
"sha256": "
|
|
73
|
+
"sha256": "a2806818925823f52e4a86002f361208f77c4efd0a1a9546d2a2b2c202ff8109"
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
76
|
"path": "harness-archive/checklist.md",
|
|
@@ -86,11 +86,11 @@
|
|
|
86
86
|
},
|
|
87
87
|
{
|
|
88
88
|
"path": "harness-archive/SKILL.md",
|
|
89
|
-
"sha256": "
|
|
89
|
+
"sha256": "ab7ebf3e7a9ce2427fa01758df525748bd8b3e97b3db437019f8a915c7b49e15"
|
|
90
90
|
},
|
|
91
91
|
{
|
|
92
92
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
93
|
-
"sha256": "
|
|
93
|
+
"sha256": "6f5198906276a80859e1dc17793113c39dea8fb510c51678e0c1f91e40fddfa0"
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
96
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
},
|
|
107
107
|
{
|
|
108
108
|
"path": "harness-codebase-map/SKILL.md",
|
|
109
|
-
"sha256": "
|
|
109
|
+
"sha256": "a4dc6ca42736d31d9ec1253f6a06c433a83e64ef5e40f3e78c72ccedf995565b"
|
|
110
110
|
},
|
|
111
111
|
{
|
|
112
112
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -166,15 +166,15 @@
|
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
168
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
169
|
-
"sha256": "
|
|
169
|
+
"sha256": "b451ad12a16758b69b6852e0a4348b3889795c05cbe691d49efdeb78a1abecea"
|
|
170
170
|
},
|
|
171
171
|
{
|
|
172
172
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
173
|
-
"sha256": "
|
|
173
|
+
"sha256": "4529eb29d73bc58e565e77351cd1a843fce9174470f517fa5865c2f47ffecaf3"
|
|
174
174
|
},
|
|
175
175
|
{
|
|
176
176
|
"path": "harness-knowledge-query/SKILL.md",
|
|
177
|
-
"sha256": "
|
|
177
|
+
"sha256": "72fee67cba574ba2fd0cfacd7b941cea2a1583d3690ff7bdabba4da97ca67d8b"
|
|
178
178
|
},
|
|
179
179
|
{
|
|
180
180
|
"path": "harness-package/checklist.md",
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
},
|
|
187
187
|
{
|
|
188
188
|
"path": "harness-package/SKILL.md",
|
|
189
|
-
"sha256": "
|
|
189
|
+
"sha256": "22e091f59449a9f64e2cb8f9632a426952287f833bfec3aac5f69765e2f079e1"
|
|
190
190
|
},
|
|
191
191
|
{
|
|
192
192
|
"path": "harness-plan/checklist.md",
|
|
@@ -202,7 +202,7 @@
|
|
|
202
202
|
},
|
|
203
203
|
{
|
|
204
204
|
"path": "harness-plan/SKILL.md",
|
|
205
|
-
"sha256": "
|
|
205
|
+
"sha256": "b52800c10a760a572cdb19ff77c093fc82626201fbb0ba45dc41e5537fd29170"
|
|
206
206
|
},
|
|
207
207
|
{
|
|
208
208
|
"path": "harness-review/checklist.md",
|
|
@@ -214,11 +214,11 @@
|
|
|
214
214
|
},
|
|
215
215
|
{
|
|
216
216
|
"path": "harness-review/reference.md",
|
|
217
|
-
"sha256": "
|
|
217
|
+
"sha256": "94bfb479910abbf393721887c4ce1b7d4259d170a1223c3315330d317ce77510"
|
|
218
218
|
},
|
|
219
219
|
{
|
|
220
220
|
"path": "harness-review/SKILL.md",
|
|
221
|
-
"sha256": "
|
|
221
|
+
"sha256": "ca2a5ed57c670fedb6153c02239d49fbf68f5d7ff8e4481e362377161fe55e6b"
|
|
222
222
|
},
|
|
223
223
|
{
|
|
224
224
|
"path": "harness-run/checklist.md",
|
|
@@ -234,7 +234,7 @@
|
|
|
234
234
|
},
|
|
235
235
|
{
|
|
236
236
|
"path": "harness-run/SKILL.md",
|
|
237
|
-
"sha256": "
|
|
237
|
+
"sha256": "042f105f3edf72c08e7fabfd612b223f099fce49894ade5c6c477918b7200139"
|
|
238
238
|
},
|
|
239
239
|
{
|
|
240
240
|
"path": "harness-submit/checklist.md",
|
|
@@ -246,7 +246,7 @@
|
|
|
246
246
|
},
|
|
247
247
|
{
|
|
248
248
|
"path": "harness-submit/SKILL.md",
|
|
249
|
-
"sha256": "
|
|
249
|
+
"sha256": "a946500f329736018cd72c0975a2c747e80b8c5edb8f71749762be725941ff1d"
|
|
250
250
|
},
|
|
251
251
|
{
|
|
252
252
|
"path": "harness-sync/reference.md",
|
|
@@ -254,7 +254,7 @@
|
|
|
254
254
|
},
|
|
255
255
|
{
|
|
256
256
|
"path": "harness-sync/SKILL.md",
|
|
257
|
-
"sha256": "
|
|
257
|
+
"sha256": "6e232f9eab60d72458b9dad0b1e03a8e66141e022e22d51bec965b4b4c187e11"
|
|
258
258
|
},
|
|
259
259
|
{
|
|
260
260
|
"path": "harness-test/checklist.md",
|
|
@@ -278,7 +278,7 @@
|
|
|
278
278
|
},
|
|
279
279
|
{
|
|
280
280
|
"path": "harness-test/SKILL.md",
|
|
281
|
-
"sha256": "
|
|
281
|
+
"sha256": "88a4f1c2730ade045ebb097b7d534c2c940f6015aa21b9f82ef9d76dd259f589"
|
|
282
282
|
},
|
|
283
283
|
{
|
|
284
284
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -346,7 +346,7 @@
|
|
|
346
346
|
},
|
|
347
347
|
{
|
|
348
348
|
"path": "scripts/harness_archive.py",
|
|
349
|
-
"sha256": "
|
|
349
|
+
"sha256": "d9992c4f1a5e3c777ee4d6a8415b1a127dc28d2921110e4bd9fd2726827c0abb"
|
|
350
350
|
},
|
|
351
351
|
{
|
|
352
352
|
"path": "scripts/harness_change.py",
|
|
@@ -370,19 +370,19 @@
|
|
|
370
370
|
},
|
|
371
371
|
{
|
|
372
372
|
"path": "scripts/harness_events.py",
|
|
373
|
-
"sha256": "
|
|
373
|
+
"sha256": "0d4db19d71d5945837c255192f7c915af447f98e2ac66bf60e25b93f1613b391"
|
|
374
374
|
},
|
|
375
375
|
{
|
|
376
376
|
"path": "scripts/harness_gate.py",
|
|
377
|
-
"sha256": "
|
|
377
|
+
"sha256": "d6085f724ea59f0fcd47a190a7c45ce81c77a21e84fba185e47c6b21b84c054e"
|
|
378
378
|
},
|
|
379
379
|
{
|
|
380
380
|
"path": "scripts/harness_integration.py",
|
|
381
|
-
"sha256": "
|
|
381
|
+
"sha256": "19ff557794609d94af780f0055aa0a50d47cfd6775f97c163d542205d2ab0044"
|
|
382
382
|
},
|
|
383
383
|
{
|
|
384
384
|
"path": "scripts/harness_ledger.py",
|
|
385
|
-
"sha256": "
|
|
385
|
+
"sha256": "3b00ff15958a1cc650ee32f6a3d8807f4585b75c5bce33707fc9e48c9ec71235"
|
|
386
386
|
},
|
|
387
387
|
{
|
|
388
388
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -414,7 +414,7 @@
|
|
|
414
414
|
},
|
|
415
415
|
{
|
|
416
416
|
"path": "scripts/harness_report_model.py",
|
|
417
|
-
"sha256": "
|
|
417
|
+
"sha256": "08b6df8f053ea3381ca24571056817e0756a06cef01edd1aaee6a7eb492426d6"
|
|
418
418
|
},
|
|
419
419
|
{
|
|
420
420
|
"path": "scripts/harness_retry.py",
|
|
@@ -422,7 +422,7 @@
|
|
|
422
422
|
},
|
|
423
423
|
{
|
|
424
424
|
"path": "scripts/harness_review.py",
|
|
425
|
-
"sha256": "
|
|
425
|
+
"sha256": "a493efd57d743f7414617ffa2e8cac59d6ddd102b0e45cab60795492bf442e20"
|
|
426
426
|
},
|
|
427
427
|
{
|
|
428
428
|
"path": "scripts/harness_runtime.py",
|
|
@@ -430,7 +430,7 @@
|
|
|
430
430
|
},
|
|
431
431
|
{
|
|
432
432
|
"path": "scripts/harness_service.py",
|
|
433
|
-
"sha256": "
|
|
433
|
+
"sha256": "a897ccb4ef397d1677e7d45ce55357b37f0083ea7e985685604c40a6da075d12"
|
|
434
434
|
},
|
|
435
435
|
{
|
|
436
436
|
"path": "scripts/harness_state.py",
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "codebuddy",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.29",
|
|
6
6
|
"requires": {
|
|
7
|
-
"minimumCliVersion": "0.2.
|
|
7
|
+
"minimumCliVersion": "0.2.41",
|
|
8
8
|
"capabilities": [
|
|
9
9
|
"sync@1",
|
|
10
10
|
"rules-sync@1",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"files": [
|
|
23
23
|
{
|
|
24
24
|
"path": ".harness-build.json",
|
|
25
|
-
"sha256": "
|
|
25
|
+
"sha256": "d24b7718daaeab882ca672300680d96dbcb1e1c86a84d6dfa89a922721ccc070"
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
28
|
"path": "agents/harness-evaluator.md",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
72
|
"path": "harness-apidoc/SKILL.md",
|
|
73
|
-
"sha256": "
|
|
73
|
+
"sha256": "affcf63db53f3edf3bf13b788f1169c5026fefbc66fb75fe187890fac4d775f9"
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
76
|
"path": "harness-archive/checklist.md",
|
|
@@ -86,11 +86,11 @@
|
|
|
86
86
|
},
|
|
87
87
|
{
|
|
88
88
|
"path": "harness-archive/SKILL.md",
|
|
89
|
-
"sha256": "
|
|
89
|
+
"sha256": "85fc0c49e2dbd2cf14f4add79e30d685a3a764359f3dc5874631b392a6b9932b"
|
|
90
90
|
},
|
|
91
91
|
{
|
|
92
92
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
93
|
-
"sha256": "
|
|
93
|
+
"sha256": "6f5198906276a80859e1dc17793113c39dea8fb510c51678e0c1f91e40fddfa0"
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
96
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
},
|
|
107
107
|
{
|
|
108
108
|
"path": "harness-codebase-map/SKILL.md",
|
|
109
|
-
"sha256": "
|
|
109
|
+
"sha256": "e04a8ef80c11bac1e5669bd84de4a16c2c7e859f541d6e8978a76aa0c6d6fa9e"
|
|
110
110
|
},
|
|
111
111
|
{
|
|
112
112
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -166,15 +166,15 @@
|
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
168
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
169
|
-
"sha256": "
|
|
169
|
+
"sha256": "b451ad12a16758b69b6852e0a4348b3889795c05cbe691d49efdeb78a1abecea"
|
|
170
170
|
},
|
|
171
171
|
{
|
|
172
172
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
173
|
-
"sha256": "
|
|
173
|
+
"sha256": "76ef143a552cd3bb2d63822a78ebbc0b2e3795d8a1ea81ead010d5366ba493ec"
|
|
174
174
|
},
|
|
175
175
|
{
|
|
176
176
|
"path": "harness-knowledge-query/SKILL.md",
|
|
177
|
-
"sha256": "
|
|
177
|
+
"sha256": "aa5a2a8b2d529c895170f9ec0d44fc475180c79896240b6f85790d83ab44b06e"
|
|
178
178
|
},
|
|
179
179
|
{
|
|
180
180
|
"path": "harness-package/checklist.md",
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
},
|
|
187
187
|
{
|
|
188
188
|
"path": "harness-package/SKILL.md",
|
|
189
|
-
"sha256": "
|
|
189
|
+
"sha256": "5333db0d231458c78bb1b59476cf4972e5faa2d15924a7c5b01a08152d81e1ac"
|
|
190
190
|
},
|
|
191
191
|
{
|
|
192
192
|
"path": "harness-plan/checklist.md",
|
|
@@ -202,7 +202,7 @@
|
|
|
202
202
|
},
|
|
203
203
|
{
|
|
204
204
|
"path": "harness-plan/SKILL.md",
|
|
205
|
-
"sha256": "
|
|
205
|
+
"sha256": "85fb650310be555a82d095cb5c4fe5b1bc292a397d2dd53cc49746cbde1eae81"
|
|
206
206
|
},
|
|
207
207
|
{
|
|
208
208
|
"path": "harness-review/checklist.md",
|
|
@@ -214,11 +214,11 @@
|
|
|
214
214
|
},
|
|
215
215
|
{
|
|
216
216
|
"path": "harness-review/reference.md",
|
|
217
|
-
"sha256": "
|
|
217
|
+
"sha256": "94bfb479910abbf393721887c4ce1b7d4259d170a1223c3315330d317ce77510"
|
|
218
218
|
},
|
|
219
219
|
{
|
|
220
220
|
"path": "harness-review/SKILL.md",
|
|
221
|
-
"sha256": "
|
|
221
|
+
"sha256": "9893c3c7746c95c34f6e9a2bad068cb9c0730f6e75bf929d5cd4be6abc53a99f"
|
|
222
222
|
},
|
|
223
223
|
{
|
|
224
224
|
"path": "harness-run/checklist.md",
|
|
@@ -234,7 +234,7 @@
|
|
|
234
234
|
},
|
|
235
235
|
{
|
|
236
236
|
"path": "harness-run/SKILL.md",
|
|
237
|
-
"sha256": "
|
|
237
|
+
"sha256": "ccd00e743988ab2c01925bfea963ced8e401103054ff57a6b9496e78c3ec0c67"
|
|
238
238
|
},
|
|
239
239
|
{
|
|
240
240
|
"path": "harness-submit/checklist.md",
|
|
@@ -246,7 +246,7 @@
|
|
|
246
246
|
},
|
|
247
247
|
{
|
|
248
248
|
"path": "harness-submit/SKILL.md",
|
|
249
|
-
"sha256": "
|
|
249
|
+
"sha256": "4e0b082905c2ebcf68fa9c4c4032ad6157152b1352ce8c60dcba36e5e3316094"
|
|
250
250
|
},
|
|
251
251
|
{
|
|
252
252
|
"path": "harness-sync/reference.md",
|
|
@@ -254,7 +254,7 @@
|
|
|
254
254
|
},
|
|
255
255
|
{
|
|
256
256
|
"path": "harness-sync/SKILL.md",
|
|
257
|
-
"sha256": "
|
|
257
|
+
"sha256": "8fdc15a05078a964a868986b95cebbb8aa2b16bf50000c80efcc13d4bccab567"
|
|
258
258
|
},
|
|
259
259
|
{
|
|
260
260
|
"path": "harness-test/checklist.md",
|
|
@@ -278,7 +278,7 @@
|
|
|
278
278
|
},
|
|
279
279
|
{
|
|
280
280
|
"path": "harness-test/SKILL.md",
|
|
281
|
-
"sha256": "
|
|
281
|
+
"sha256": "1462d5fdb3de04b210b23fee563ad3474f641e67f8a58a81824b48adbffaa6e4"
|
|
282
282
|
},
|
|
283
283
|
{
|
|
284
284
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -346,7 +346,7 @@
|
|
|
346
346
|
},
|
|
347
347
|
{
|
|
348
348
|
"path": "scripts/harness_archive.py",
|
|
349
|
-
"sha256": "
|
|
349
|
+
"sha256": "d9992c4f1a5e3c777ee4d6a8415b1a127dc28d2921110e4bd9fd2726827c0abb"
|
|
350
350
|
},
|
|
351
351
|
{
|
|
352
352
|
"path": "scripts/harness_change.py",
|
|
@@ -370,19 +370,19 @@
|
|
|
370
370
|
},
|
|
371
371
|
{
|
|
372
372
|
"path": "scripts/harness_events.py",
|
|
373
|
-
"sha256": "
|
|
373
|
+
"sha256": "0d4db19d71d5945837c255192f7c915af447f98e2ac66bf60e25b93f1613b391"
|
|
374
374
|
},
|
|
375
375
|
{
|
|
376
376
|
"path": "scripts/harness_gate.py",
|
|
377
|
-
"sha256": "
|
|
377
|
+
"sha256": "d6085f724ea59f0fcd47a190a7c45ce81c77a21e84fba185e47c6b21b84c054e"
|
|
378
378
|
},
|
|
379
379
|
{
|
|
380
380
|
"path": "scripts/harness_integration.py",
|
|
381
|
-
"sha256": "
|
|
381
|
+
"sha256": "19ff557794609d94af780f0055aa0a50d47cfd6775f97c163d542205d2ab0044"
|
|
382
382
|
},
|
|
383
383
|
{
|
|
384
384
|
"path": "scripts/harness_ledger.py",
|
|
385
|
-
"sha256": "
|
|
385
|
+
"sha256": "3b00ff15958a1cc650ee32f6a3d8807f4585b75c5bce33707fc9e48c9ec71235"
|
|
386
386
|
},
|
|
387
387
|
{
|
|
388
388
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -414,7 +414,7 @@
|
|
|
414
414
|
},
|
|
415
415
|
{
|
|
416
416
|
"path": "scripts/harness_report_model.py",
|
|
417
|
-
"sha256": "
|
|
417
|
+
"sha256": "08b6df8f053ea3381ca24571056817e0756a06cef01edd1aaee6a7eb492426d6"
|
|
418
418
|
},
|
|
419
419
|
{
|
|
420
420
|
"path": "scripts/harness_retry.py",
|
|
@@ -422,7 +422,7 @@
|
|
|
422
422
|
},
|
|
423
423
|
{
|
|
424
424
|
"path": "scripts/harness_review.py",
|
|
425
|
-
"sha256": "
|
|
425
|
+
"sha256": "a493efd57d743f7414617ffa2e8cac59d6ddd102b0e45cab60795492bf442e20"
|
|
426
426
|
},
|
|
427
427
|
{
|
|
428
428
|
"path": "scripts/harness_runtime.py",
|
|
@@ -430,7 +430,7 @@
|
|
|
430
430
|
},
|
|
431
431
|
{
|
|
432
432
|
"path": "scripts/harness_service.py",
|
|
433
|
-
"sha256": "
|
|
433
|
+
"sha256": "a897ccb4ef397d1677e7d45ce55357b37f0083ea7e985685604c40a6da075d12"
|
|
434
434
|
},
|
|
435
435
|
{
|
|
436
436
|
"path": "scripts/harness_state.py",
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "codex",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.29",
|
|
6
6
|
"requires": {
|
|
7
|
-
"minimumCliVersion": "0.2.
|
|
7
|
+
"minimumCliVersion": "0.2.41",
|
|
8
8
|
"capabilities": [
|
|
9
9
|
"sync@1",
|
|
10
10
|
"rules-sync@1",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"files": [
|
|
23
23
|
{
|
|
24
24
|
"path": ".harness-build.json",
|
|
25
|
-
"sha256": "
|
|
25
|
+
"sha256": "ba306ea1485634bfe54c7ff7b4575dea247692f65af7eb7219f6c48f7535edac"
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
28
|
"path": "CONTEXT.md",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
60
|
"path": "harness-apidoc/SKILL.md",
|
|
61
|
-
"sha256": "
|
|
61
|
+
"sha256": "33d384fa92a535ac292be64717955d2927677f7b062f48629036867dee50f321"
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
"path": "harness-archive/checklist.md",
|
|
@@ -74,11 +74,11 @@
|
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
76
|
"path": "harness-archive/SKILL.md",
|
|
77
|
-
"sha256": "
|
|
77
|
+
"sha256": "9e4914a51d3a4413a07478fd66e3a0db8aa542f6f90f4c42a5bd3c2efa081dcf"
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
80
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
81
|
-
"sha256": "
|
|
81
|
+
"sha256": "6f5198906276a80859e1dc17793113c39dea8fb510c51678e0c1f91e40fddfa0"
|
|
82
82
|
},
|
|
83
83
|
{
|
|
84
84
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
96
|
"path": "harness-codebase-map/SKILL.md",
|
|
97
|
-
"sha256": "
|
|
97
|
+
"sha256": "9795b7f752694dd56c5f72b5ddba59deec917322a8a13c7b5b041768eab728cd"
|
|
98
98
|
},
|
|
99
99
|
{
|
|
100
100
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -154,15 +154,15 @@
|
|
|
154
154
|
},
|
|
155
155
|
{
|
|
156
156
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
157
|
-
"sha256": "
|
|
157
|
+
"sha256": "b451ad12a16758b69b6852e0a4348b3889795c05cbe691d49efdeb78a1abecea"
|
|
158
158
|
},
|
|
159
159
|
{
|
|
160
160
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
161
|
-
"sha256": "
|
|
161
|
+
"sha256": "90df1ae07332b1b737b6eae2146f73d4f5410d111166086cd797602949369479"
|
|
162
162
|
},
|
|
163
163
|
{
|
|
164
164
|
"path": "harness-knowledge-query/SKILL.md",
|
|
165
|
-
"sha256": "
|
|
165
|
+
"sha256": "b3c70267e1833d456c713c8b19440b46688eb0242dd01bdecdef3de58fd80ba1"
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
168
|
"path": "harness-package/checklist.md",
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
},
|
|
175
175
|
{
|
|
176
176
|
"path": "harness-package/SKILL.md",
|
|
177
|
-
"sha256": "
|
|
177
|
+
"sha256": "db86c56af35edd2a166c393c3b4a924cde49f3db5c7f36769aa0d0083096340f"
|
|
178
178
|
},
|
|
179
179
|
{
|
|
180
180
|
"path": "harness-plan/checklist.md",
|
|
@@ -190,7 +190,7 @@
|
|
|
190
190
|
},
|
|
191
191
|
{
|
|
192
192
|
"path": "harness-plan/SKILL.md",
|
|
193
|
-
"sha256": "
|
|
193
|
+
"sha256": "699b2b5a350867a090ccf774f55fa8e250346b0fd901adc3e3d64f0de152bb8d"
|
|
194
194
|
},
|
|
195
195
|
{
|
|
196
196
|
"path": "harness-review/checklist.md",
|
|
@@ -202,11 +202,11 @@
|
|
|
202
202
|
},
|
|
203
203
|
{
|
|
204
204
|
"path": "harness-review/reference.md",
|
|
205
|
-
"sha256": "
|
|
205
|
+
"sha256": "94bfb479910abbf393721887c4ce1b7d4259d170a1223c3315330d317ce77510"
|
|
206
206
|
},
|
|
207
207
|
{
|
|
208
208
|
"path": "harness-review/SKILL.md",
|
|
209
|
-
"sha256": "
|
|
209
|
+
"sha256": "705098cdfb0e79b759a79af3764f3ebbd06db5e871ca9a323f39e2ab336fd0e1"
|
|
210
210
|
},
|
|
211
211
|
{
|
|
212
212
|
"path": "harness-run/checklist.md",
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
},
|
|
223
223
|
{
|
|
224
224
|
"path": "harness-run/SKILL.md",
|
|
225
|
-
"sha256": "
|
|
225
|
+
"sha256": "2d8e079a61226c8a1fa2018e40d0b203c66a7361180ef9433a143276070e8c06"
|
|
226
226
|
},
|
|
227
227
|
{
|
|
228
228
|
"path": "harness-submit/checklist.md",
|
|
@@ -234,7 +234,7 @@
|
|
|
234
234
|
},
|
|
235
235
|
{
|
|
236
236
|
"path": "harness-submit/SKILL.md",
|
|
237
|
-
"sha256": "
|
|
237
|
+
"sha256": "0c1732b08ec5911ae40e1add99e473fcce445c5658ab5fa16e9b791798bf9508"
|
|
238
238
|
},
|
|
239
239
|
{
|
|
240
240
|
"path": "harness-sync/reference.md",
|
|
@@ -242,7 +242,7 @@
|
|
|
242
242
|
},
|
|
243
243
|
{
|
|
244
244
|
"path": "harness-sync/SKILL.md",
|
|
245
|
-
"sha256": "
|
|
245
|
+
"sha256": "7fafad535bcb2a17f8f679e93ec6d94b2cfb8c9d5af4cec3b80ce0d83d875435"
|
|
246
246
|
},
|
|
247
247
|
{
|
|
248
248
|
"path": "harness-test/checklist.md",
|
|
@@ -266,7 +266,7 @@
|
|
|
266
266
|
},
|
|
267
267
|
{
|
|
268
268
|
"path": "harness-test/SKILL.md",
|
|
269
|
-
"sha256": "
|
|
269
|
+
"sha256": "6629ccdee95b5041806f933572dbedc2f9ba26576adce66beb00b2c4eba9ca11"
|
|
270
270
|
},
|
|
271
271
|
{
|
|
272
272
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -334,7 +334,7 @@
|
|
|
334
334
|
},
|
|
335
335
|
{
|
|
336
336
|
"path": "scripts/harness_archive.py",
|
|
337
|
-
"sha256": "
|
|
337
|
+
"sha256": "d9992c4f1a5e3c777ee4d6a8415b1a127dc28d2921110e4bd9fd2726827c0abb"
|
|
338
338
|
},
|
|
339
339
|
{
|
|
340
340
|
"path": "scripts/harness_change.py",
|
|
@@ -358,19 +358,19 @@
|
|
|
358
358
|
},
|
|
359
359
|
{
|
|
360
360
|
"path": "scripts/harness_events.py",
|
|
361
|
-
"sha256": "
|
|
361
|
+
"sha256": "0d4db19d71d5945837c255192f7c915af447f98e2ac66bf60e25b93f1613b391"
|
|
362
362
|
},
|
|
363
363
|
{
|
|
364
364
|
"path": "scripts/harness_gate.py",
|
|
365
|
-
"sha256": "
|
|
365
|
+
"sha256": "d6085f724ea59f0fcd47a190a7c45ce81c77a21e84fba185e47c6b21b84c054e"
|
|
366
366
|
},
|
|
367
367
|
{
|
|
368
368
|
"path": "scripts/harness_integration.py",
|
|
369
|
-
"sha256": "
|
|
369
|
+
"sha256": "19ff557794609d94af780f0055aa0a50d47cfd6775f97c163d542205d2ab0044"
|
|
370
370
|
},
|
|
371
371
|
{
|
|
372
372
|
"path": "scripts/harness_ledger.py",
|
|
373
|
-
"sha256": "
|
|
373
|
+
"sha256": "3b00ff15958a1cc650ee32f6a3d8807f4585b75c5bce33707fc9e48c9ec71235"
|
|
374
374
|
},
|
|
375
375
|
{
|
|
376
376
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -402,7 +402,7 @@
|
|
|
402
402
|
},
|
|
403
403
|
{
|
|
404
404
|
"path": "scripts/harness_report_model.py",
|
|
405
|
-
"sha256": "
|
|
405
|
+
"sha256": "08b6df8f053ea3381ca24571056817e0756a06cef01edd1aaee6a7eb492426d6"
|
|
406
406
|
},
|
|
407
407
|
{
|
|
408
408
|
"path": "scripts/harness_retry.py",
|
|
@@ -410,7 +410,7 @@
|
|
|
410
410
|
},
|
|
411
411
|
{
|
|
412
412
|
"path": "scripts/harness_review.py",
|
|
413
|
-
"sha256": "
|
|
413
|
+
"sha256": "a493efd57d743f7414617ffa2e8cac59d6ddd102b0e45cab60795492bf442e20"
|
|
414
414
|
},
|
|
415
415
|
{
|
|
416
416
|
"path": "scripts/harness_runtime.py",
|
|
@@ -418,7 +418,7 @@
|
|
|
418
418
|
},
|
|
419
419
|
{
|
|
420
420
|
"path": "scripts/harness_service.py",
|
|
421
|
-
"sha256": "
|
|
421
|
+
"sha256": "a897ccb4ef397d1677e7d45ce55357b37f0083ea7e985685604c40a6da075d12"
|
|
422
422
|
},
|
|
423
423
|
{
|
|
424
424
|
"path": "scripts/harness_state.py",
|