@hunter-harness/workflow-harness 0.2.38 → 0.2.40
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_deploy.py +10 -51
- 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_deploy.py +10 -51
- 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_deploy.py +10 -51
- 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_deploy.py +10 -51
- 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_deploy.py +10 -51
- 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_deploy.py +10 -51
- 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_deploy.py +10 -51
- 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_deploy.py +10 -51
- 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 +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 +27 -27
- package/harness/manifests/java/codebuddy.json +27 -27
- package/harness/manifests/java/codex.json +27 -27
- package/harness/manifests/java/cursor.json +27 -27
- 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": "57228d14f9e628c0d3053956ec5a7025e118947a461bc0089540ffc8c39ce1ba"
|
|
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": "b5e97ef5146614f7ea258bf3c115da2329286cd4d6492e1dc24a0ba74ca9faab"
|
|
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": "1e659143229ad48d2ecf480dacbfd15bf9eef553d917f07ee1ac1197ad7b8dd0"
|
|
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": "4e1765e0b27f89677874107c064e7ef2e07eff1b2aa91395c6409976017a375d"
|
|
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": "d0445657f952156f5f55b7cbbb9302cb202acc58a974b6e8ccc8955012283ab0"
|
|
174
174
|
},
|
|
175
175
|
{
|
|
176
176
|
"path": "harness-knowledge-query/SKILL.md",
|
|
177
|
-
"sha256": "
|
|
177
|
+
"sha256": "10be002b158bb6b0062688d8e37a94150f97416f09bfd4c212081bb060ba0235"
|
|
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": "4a5b7cfca33e8e3e220c5a936ce19927a1f90025fb50e7f156cf5a5869450b69"
|
|
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": "998f732957e252b4e8fb5f168c900e0aef8dfbfdc46043c696e976692e86eda3"
|
|
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": "dc8bc6a3bd96ea878f158248056760c7b42665fa5c39265fe2f1816e140edb9d"
|
|
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": "ef3bd7857b8999dee7ddff419bd5e65190e348b464b8d9ae1ef687e9e802d2b2"
|
|
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": "51426862db6ef952c716b377a5bb53449f44e8b8f3de37158a10535677aaaad7"
|
|
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": "941da3cd0d112fa9865ff9a9b41d49360adab9e6d3b8ef46ccef54a9cf44d7de"
|
|
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": "d6d6e855a78910d4b68b037f62ef3891bcd0a79dc924ed1ff019876fbe58d97c"
|
|
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",
|
|
@@ -362,7 +362,7 @@
|
|
|
362
362
|
},
|
|
363
363
|
{
|
|
364
364
|
"path": "scripts/harness_deploy.py",
|
|
365
|
-
"sha256": "
|
|
365
|
+
"sha256": "fb4290c2dd5c28a09c378da5ee7be491bdefe0410f277ec5dd2af1952cfddbca"
|
|
366
366
|
},
|
|
367
367
|
{
|
|
368
368
|
"path": "scripts/harness_environment.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": "da6b6d09fe18570982f0f8b0995e99851223f7cfe1eb453885522dc772d0f7ac"
|
|
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": "bc91c7042945abf034d68782e36e1f64782f5b40cfd906f0a4ef67195cec45d6"
|
|
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": "4160d3f2dc30236dd7ce43dc6ce55a79695cecda30c000fadccea7c1e9f50021"
|
|
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": "de049010fcbe6a604003b3cb9107bda0cf2383d9b5fbe1a41447663d47a767c6"
|
|
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": "895bd48c41c24a54ee26e148d6aac996d536b66e3bea160e1a84b9e6b867faf3"
|
|
174
174
|
},
|
|
175
175
|
{
|
|
176
176
|
"path": "harness-knowledge-query/SKILL.md",
|
|
177
|
-
"sha256": "
|
|
177
|
+
"sha256": "a79170da85731bb5a372277ec600e06f5356f8b5ce8f09c4e794f47637efc945"
|
|
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": "460b8f644bbc15b829cf00be9980618e1f738a9b7af49ace33cbe3e5832da5ed"
|
|
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": "6ee7e9fb0491a9b18d6e431aa242f953aa9b87a3b4e0e85f7f23198bbb48e2c7"
|
|
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": "89709d73091a7133161d250e0b9e3c0cedc2ed8c1c14b4b505cbf8e2cef676e3"
|
|
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": "c152776aa8a4cdf022ecf32b3033420ff6bad9f0f57c04b174293c3dbbc336b6"
|
|
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": "447979eb1dd73179540ffce06927ec5c45fb07ecba7c2b4a92697b74c0775ec8"
|
|
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": "f4f58ebbd7fa025896336bb231aae20cf4bb4ea8349c413cc2ca010c88466fd8"
|
|
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": "fa783ee27ba8873e449e32702663e9cddceab770763653c4ce29a14a9f8272a0"
|
|
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",
|
|
@@ -362,7 +362,7 @@
|
|
|
362
362
|
},
|
|
363
363
|
{
|
|
364
364
|
"path": "scripts/harness_deploy.py",
|
|
365
|
-
"sha256": "
|
|
365
|
+
"sha256": "fb4290c2dd5c28a09c378da5ee7be491bdefe0410f277ec5dd2af1952cfddbca"
|
|
366
366
|
},
|
|
367
367
|
{
|
|
368
368
|
"path": "scripts/harness_environment.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": "7c1944bf25fded100987b06ad4f6d09ba903601d257be659d72f92f6f62cf7c6"
|
|
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": "f5a55c5839c661bd4e11a025e43b44a5d18d8e72c22b780073b19ff5f36018e4"
|
|
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": "9223a042f9f73fbfe2788e85b7e96a68eb1965c1da64653559cd11259a811218"
|
|
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": "09e0f8fcad951d5fbd7c2e88077b54cd7bfdb3376906a27a77d1e4b8eb07226b"
|
|
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": "619f6869ae313c3273e1df0cfb5208ea1777162c383373f4b22853849b901a02"
|
|
162
162
|
},
|
|
163
163
|
{
|
|
164
164
|
"path": "harness-knowledge-query/SKILL.md",
|
|
165
|
-
"sha256": "
|
|
165
|
+
"sha256": "06eea2e86d871437b7f78e4552db88f46de302f071ed40806ce9b911b401859c"
|
|
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": "efcf3b9e16a565df5fe5fb31d5c150020195de833bebf0dd266d894338b0fb41"
|
|
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": "df435347a668f4cf2caaa5b65b90cdf96cf95adf2676a36dd42a0e8da1db06b7"
|
|
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": "c03a7fb14c23d095c518872b1fbc186aa39c9527cc28704ce61bfd49dd72c869"
|
|
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": "397d3bf47682baad39e133cb8070a13e5a77e6a42306e98fdcd6e195a09974f0"
|
|
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": "d541a25049e4486a0bc40b6bd6d35dda7746db94071614d97370a83a04670099"
|
|
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": "d807506167ce3d5fba2abe0fdb9a814f74d6ddb2877dfb7877716f27e1392dcd"
|
|
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": "84b607720714ff7247a2ca4542f67a7a568fafb7daf1ddab7f9ae7d3eb01a3ec"
|
|
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",
|
|
@@ -350,7 +350,7 @@
|
|
|
350
350
|
},
|
|
351
351
|
{
|
|
352
352
|
"path": "scripts/harness_deploy.py",
|
|
353
|
-
"sha256": "
|
|
353
|
+
"sha256": "fb4290c2dd5c28a09c378da5ee7be491bdefe0410f277ec5dd2af1952cfddbca"
|
|
354
354
|
},
|
|
355
355
|
{
|
|
356
356
|
"path": "scripts/harness_environment.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",
|