@hunter-harness/workflow-harness 0.2.37 → 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": "general",
|
|
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": "7f0527a47cd1450ceca015d16bf4a427a4ddab04fa4fc7110268700ffefb0d56"
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
28
|
"path": "agents/harness-evaluator.md",
|
|
@@ -74,11 +74,11 @@
|
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
76
|
"path": "harness-archive/SKILL.md",
|
|
77
|
-
"sha256": "
|
|
77
|
+
"sha256": "3da23c542cbded752be2915313ba91d18fdcadbe325b232617f971fd8a240bb7"
|
|
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": "62f137740976bfaece82a0c4110bbc6bd601fc79fd9a7cfc0ff2876195135d4c"
|
|
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": "5cf57f72656a117d4c85ce903dae0dc53c199fefeaef63a697fec3653c6eaaeb"
|
|
162
162
|
},
|
|
163
163
|
{
|
|
164
164
|
"path": "harness-knowledge-query/SKILL.md",
|
|
165
|
-
"sha256": "
|
|
165
|
+
"sha256": "75f201391a75aa0f225e05c8998058a3876a0efa1728206a675b1c40b0889a24"
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
168
|
"path": "harness-plan/checklist.md",
|
|
@@ -178,7 +178,7 @@
|
|
|
178
178
|
},
|
|
179
179
|
{
|
|
180
180
|
"path": "harness-plan/SKILL.md",
|
|
181
|
-
"sha256": "
|
|
181
|
+
"sha256": "4cc24f123979982ee3e51a67ec7fbb265707ab0b5e58547e8f617328debe1634"
|
|
182
182
|
},
|
|
183
183
|
{
|
|
184
184
|
"path": "harness-review/checklist.md",
|
|
@@ -190,11 +190,11 @@
|
|
|
190
190
|
},
|
|
191
191
|
{
|
|
192
192
|
"path": "harness-review/reference.md",
|
|
193
|
-
"sha256": "
|
|
193
|
+
"sha256": "94bfb479910abbf393721887c4ce1b7d4259d170a1223c3315330d317ce77510"
|
|
194
194
|
},
|
|
195
195
|
{
|
|
196
196
|
"path": "harness-review/SKILL.md",
|
|
197
|
-
"sha256": "
|
|
197
|
+
"sha256": "f3f1d1958c801f5aeb4af317127d6b3271a6d5c677191e2744f7a763ad55015d"
|
|
198
198
|
},
|
|
199
199
|
{
|
|
200
200
|
"path": "harness-run/checklist.md",
|
|
@@ -210,7 +210,7 @@
|
|
|
210
210
|
},
|
|
211
211
|
{
|
|
212
212
|
"path": "harness-run/SKILL.md",
|
|
213
|
-
"sha256": "
|
|
213
|
+
"sha256": "f965ed74d04a965ad5a73c3070e16a86f83b40dfdfaa780b203ae163919ff6c6"
|
|
214
214
|
},
|
|
215
215
|
{
|
|
216
216
|
"path": "harness-submit/checklist.md",
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
},
|
|
223
223
|
{
|
|
224
224
|
"path": "harness-submit/SKILL.md",
|
|
225
|
-
"sha256": "
|
|
225
|
+
"sha256": "dbd7a585e7ea12d5530e66a813e890087a462998f3b2ce2bf0457bbc8821c39e"
|
|
226
226
|
},
|
|
227
227
|
{
|
|
228
228
|
"path": "harness-sync/reference.md",
|
|
@@ -230,7 +230,7 @@
|
|
|
230
230
|
},
|
|
231
231
|
{
|
|
232
232
|
"path": "harness-sync/SKILL.md",
|
|
233
|
-
"sha256": "
|
|
233
|
+
"sha256": "b4a0a9447e7cb8d9a241cb4fe49048f701e0b2c7b799e7921d5f5a5e3f8ceb80"
|
|
234
234
|
},
|
|
235
235
|
{
|
|
236
236
|
"path": "harness-test/checklist.md",
|
|
@@ -254,7 +254,7 @@
|
|
|
254
254
|
},
|
|
255
255
|
{
|
|
256
256
|
"path": "harness-test/SKILL.md",
|
|
257
|
-
"sha256": "
|
|
257
|
+
"sha256": "49ad5cb19a5ce5bc01a54a37777211f89c99eaa9f867ab7e3b1c6a288fe9377c"
|
|
258
258
|
},
|
|
259
259
|
{
|
|
260
260
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -322,7 +322,7 @@
|
|
|
322
322
|
},
|
|
323
323
|
{
|
|
324
324
|
"path": "scripts/harness_archive.py",
|
|
325
|
-
"sha256": "
|
|
325
|
+
"sha256": "d9992c4f1a5e3c777ee4d6a8415b1a127dc28d2921110e4bd9fd2726827c0abb"
|
|
326
326
|
},
|
|
327
327
|
{
|
|
328
328
|
"path": "scripts/harness_change.py",
|
|
@@ -346,19 +346,19 @@
|
|
|
346
346
|
},
|
|
347
347
|
{
|
|
348
348
|
"path": "scripts/harness_events.py",
|
|
349
|
-
"sha256": "
|
|
349
|
+
"sha256": "0d4db19d71d5945837c255192f7c915af447f98e2ac66bf60e25b93f1613b391"
|
|
350
350
|
},
|
|
351
351
|
{
|
|
352
352
|
"path": "scripts/harness_gate.py",
|
|
353
|
-
"sha256": "
|
|
353
|
+
"sha256": "d6085f724ea59f0fcd47a190a7c45ce81c77a21e84fba185e47c6b21b84c054e"
|
|
354
354
|
},
|
|
355
355
|
{
|
|
356
356
|
"path": "scripts/harness_integration.py",
|
|
357
|
-
"sha256": "
|
|
357
|
+
"sha256": "19ff557794609d94af780f0055aa0a50d47cfd6775f97c163d542205d2ab0044"
|
|
358
358
|
},
|
|
359
359
|
{
|
|
360
360
|
"path": "scripts/harness_ledger.py",
|
|
361
|
-
"sha256": "
|
|
361
|
+
"sha256": "3b00ff15958a1cc650ee32f6a3d8807f4585b75c5bce33707fc9e48c9ec71235"
|
|
362
362
|
},
|
|
363
363
|
{
|
|
364
364
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
},
|
|
391
391
|
{
|
|
392
392
|
"path": "scripts/harness_report_model.py",
|
|
393
|
-
"sha256": "
|
|
393
|
+
"sha256": "08b6df8f053ea3381ca24571056817e0756a06cef01edd1aaee6a7eb492426d6"
|
|
394
394
|
},
|
|
395
395
|
{
|
|
396
396
|
"path": "scripts/harness_retry.py",
|
|
@@ -398,7 +398,7 @@
|
|
|
398
398
|
},
|
|
399
399
|
{
|
|
400
400
|
"path": "scripts/harness_review.py",
|
|
401
|
-
"sha256": "
|
|
401
|
+
"sha256": "a493efd57d743f7414617ffa2e8cac59d6ddd102b0e45cab60795492bf442e20"
|
|
402
402
|
},
|
|
403
403
|
{
|
|
404
404
|
"path": "scripts/harness_runtime.py",
|
|
@@ -406,7 +406,7 @@
|
|
|
406
406
|
},
|
|
407
407
|
{
|
|
408
408
|
"path": "scripts/harness_service.py",
|
|
409
|
-
"sha256": "
|
|
409
|
+
"sha256": "a897ccb4ef397d1677e7d45ce55357b37f0083ea7e985685604c40a6da075d12"
|
|
410
410
|
},
|
|
411
411
|
{
|
|
412
412
|
"path": "scripts/harness_state.py",
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "general",
|
|
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": "74e5e5dab467749eda70405b517ade82575153a961d79879eef3062ff87ce0b9"
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
28
|
"path": "CONTEXT.md",
|
|
@@ -62,11 +62,11 @@
|
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
"path": "harness-archive/SKILL.md",
|
|
65
|
-
"sha256": "
|
|
65
|
+
"sha256": "e2d8b79c8883b66d89ab90a5c99173798cec345017eaab1663744a14c95fb763"
|
|
66
66
|
},
|
|
67
67
|
{
|
|
68
68
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
69
|
-
"sha256": "
|
|
69
|
+
"sha256": "6f5198906276a80859e1dc17793113c39dea8fb510c51678e0c1f91e40fddfa0"
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
72
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
},
|
|
83
83
|
{
|
|
84
84
|
"path": "harness-codebase-map/SKILL.md",
|
|
85
|
-
"sha256": "
|
|
85
|
+
"sha256": "e22652239e395d62fe60f26dfbfc3fda313a11de76dca8b79fe1d5bd5b4296d6"
|
|
86
86
|
},
|
|
87
87
|
{
|
|
88
88
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -142,15 +142,15 @@
|
|
|
142
142
|
},
|
|
143
143
|
{
|
|
144
144
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
145
|
-
"sha256": "
|
|
145
|
+
"sha256": "b451ad12a16758b69b6852e0a4348b3889795c05cbe691d49efdeb78a1abecea"
|
|
146
146
|
},
|
|
147
147
|
{
|
|
148
148
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
149
|
-
"sha256": "
|
|
149
|
+
"sha256": "eb4eaf6b53249cc68ddcb16965cd5dfbc175639303fd3b41f6323c780a818966"
|
|
150
150
|
},
|
|
151
151
|
{
|
|
152
152
|
"path": "harness-knowledge-query/SKILL.md",
|
|
153
|
-
"sha256": "
|
|
153
|
+
"sha256": "1ce40108e340c607193e783da5e3444cd0c32dca0c91e5d55b540c80c092195a"
|
|
154
154
|
},
|
|
155
155
|
{
|
|
156
156
|
"path": "harness-plan/checklist.md",
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
168
|
"path": "harness-plan/SKILL.md",
|
|
169
|
-
"sha256": "
|
|
169
|
+
"sha256": "77d62a060dc32b66b738548a72ea39b65fd3f202617cd00d7cf63bd0f0d3c6d6"
|
|
170
170
|
},
|
|
171
171
|
{
|
|
172
172
|
"path": "harness-review/checklist.md",
|
|
@@ -178,11 +178,11 @@
|
|
|
178
178
|
},
|
|
179
179
|
{
|
|
180
180
|
"path": "harness-review/reference.md",
|
|
181
|
-
"sha256": "
|
|
181
|
+
"sha256": "94bfb479910abbf393721887c4ce1b7d4259d170a1223c3315330d317ce77510"
|
|
182
182
|
},
|
|
183
183
|
{
|
|
184
184
|
"path": "harness-review/SKILL.md",
|
|
185
|
-
"sha256": "
|
|
185
|
+
"sha256": "e74c68d2d52d0608ed55bbef09f86fffc19380ffbbefddabee63979f244eeaed"
|
|
186
186
|
},
|
|
187
187
|
{
|
|
188
188
|
"path": "harness-run/checklist.md",
|
|
@@ -198,7 +198,7 @@
|
|
|
198
198
|
},
|
|
199
199
|
{
|
|
200
200
|
"path": "harness-run/SKILL.md",
|
|
201
|
-
"sha256": "
|
|
201
|
+
"sha256": "57f3e1245960e9f8853f5441d8a8c46ea49ae8633a1a40d0909dfcbfec6deff9"
|
|
202
202
|
},
|
|
203
203
|
{
|
|
204
204
|
"path": "harness-submit/checklist.md",
|
|
@@ -210,7 +210,7 @@
|
|
|
210
210
|
},
|
|
211
211
|
{
|
|
212
212
|
"path": "harness-submit/SKILL.md",
|
|
213
|
-
"sha256": "
|
|
213
|
+
"sha256": "2e833404fc26096357ba24753fe772a93516807bad51b398d12bc707f3d19836"
|
|
214
214
|
},
|
|
215
215
|
{
|
|
216
216
|
"path": "harness-sync/reference.md",
|
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
},
|
|
219
219
|
{
|
|
220
220
|
"path": "harness-sync/SKILL.md",
|
|
221
|
-
"sha256": "
|
|
221
|
+
"sha256": "368f6447c03a5257bc4179e1fd2d4aeb6168086455da11f683fcbd8b235d366c"
|
|
222
222
|
},
|
|
223
223
|
{
|
|
224
224
|
"path": "harness-test/checklist.md",
|
|
@@ -242,7 +242,7 @@
|
|
|
242
242
|
},
|
|
243
243
|
{
|
|
244
244
|
"path": "harness-test/SKILL.md",
|
|
245
|
-
"sha256": "
|
|
245
|
+
"sha256": "74dd76afb067d116b5296a8c80db696a16c80d153b1400c692b2cb26d7f2eda9"
|
|
246
246
|
},
|
|
247
247
|
{
|
|
248
248
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -310,7 +310,7 @@
|
|
|
310
310
|
},
|
|
311
311
|
{
|
|
312
312
|
"path": "scripts/harness_archive.py",
|
|
313
|
-
"sha256": "
|
|
313
|
+
"sha256": "d9992c4f1a5e3c777ee4d6a8415b1a127dc28d2921110e4bd9fd2726827c0abb"
|
|
314
314
|
},
|
|
315
315
|
{
|
|
316
316
|
"path": "scripts/harness_change.py",
|
|
@@ -334,19 +334,19 @@
|
|
|
334
334
|
},
|
|
335
335
|
{
|
|
336
336
|
"path": "scripts/harness_events.py",
|
|
337
|
-
"sha256": "
|
|
337
|
+
"sha256": "0d4db19d71d5945837c255192f7c915af447f98e2ac66bf60e25b93f1613b391"
|
|
338
338
|
},
|
|
339
339
|
{
|
|
340
340
|
"path": "scripts/harness_gate.py",
|
|
341
|
-
"sha256": "
|
|
341
|
+
"sha256": "d6085f724ea59f0fcd47a190a7c45ce81c77a21e84fba185e47c6b21b84c054e"
|
|
342
342
|
},
|
|
343
343
|
{
|
|
344
344
|
"path": "scripts/harness_integration.py",
|
|
345
|
-
"sha256": "
|
|
345
|
+
"sha256": "19ff557794609d94af780f0055aa0a50d47cfd6775f97c163d542205d2ab0044"
|
|
346
346
|
},
|
|
347
347
|
{
|
|
348
348
|
"path": "scripts/harness_ledger.py",
|
|
349
|
-
"sha256": "
|
|
349
|
+
"sha256": "3b00ff15958a1cc650ee32f6a3d8807f4585b75c5bce33707fc9e48c9ec71235"
|
|
350
350
|
},
|
|
351
351
|
{
|
|
352
352
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -378,7 +378,7 @@
|
|
|
378
378
|
},
|
|
379
379
|
{
|
|
380
380
|
"path": "scripts/harness_report_model.py",
|
|
381
|
-
"sha256": "
|
|
381
|
+
"sha256": "08b6df8f053ea3381ca24571056817e0756a06cef01edd1aaee6a7eb492426d6"
|
|
382
382
|
},
|
|
383
383
|
{
|
|
384
384
|
"path": "scripts/harness_retry.py",
|
|
@@ -386,7 +386,7 @@
|
|
|
386
386
|
},
|
|
387
387
|
{
|
|
388
388
|
"path": "scripts/harness_review.py",
|
|
389
|
-
"sha256": "
|
|
389
|
+
"sha256": "a493efd57d743f7414617ffa2e8cac59d6ddd102b0e45cab60795492bf442e20"
|
|
390
390
|
},
|
|
391
391
|
{
|
|
392
392
|
"path": "scripts/harness_runtime.py",
|
|
@@ -394,7 +394,7 @@
|
|
|
394
394
|
},
|
|
395
395
|
{
|
|
396
396
|
"path": "scripts/harness_service.py",
|
|
397
|
-
"sha256": "
|
|
397
|
+
"sha256": "a897ccb4ef397d1677e7d45ce55357b37f0083ea7e985685604c40a6da075d12"
|
|
398
398
|
},
|
|
399
399
|
{
|
|
400
400
|
"path": "scripts/harness_state.py",
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "general",
|
|
4
4
|
"adapter": "cursor",
|
|
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": "4ed55b66cf1d7f39444da743cafbe44211de6eac9b151f8931be2e628fd6a273"
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
28
|
"path": "CONTEXT.md",
|
|
@@ -62,11 +62,11 @@
|
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
"path": "harness-archive/SKILL.md",
|
|
65
|
-
"sha256": "
|
|
65
|
+
"sha256": "6b7b45d90ad64cab7eaebb861b4aff764cebf926137de63f68314c52f560af63"
|
|
66
66
|
},
|
|
67
67
|
{
|
|
68
68
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
69
|
-
"sha256": "
|
|
69
|
+
"sha256": "6f5198906276a80859e1dc17793113c39dea8fb510c51678e0c1f91e40fddfa0"
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
72
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
},
|
|
83
83
|
{
|
|
84
84
|
"path": "harness-codebase-map/SKILL.md",
|
|
85
|
-
"sha256": "
|
|
85
|
+
"sha256": "57bdafbd4e2cfa5087bf9428d3e35c42be273e219d881d18548f06a257068719"
|
|
86
86
|
},
|
|
87
87
|
{
|
|
88
88
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -142,15 +142,15 @@
|
|
|
142
142
|
},
|
|
143
143
|
{
|
|
144
144
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
145
|
-
"sha256": "
|
|
145
|
+
"sha256": "b451ad12a16758b69b6852e0a4348b3889795c05cbe691d49efdeb78a1abecea"
|
|
146
146
|
},
|
|
147
147
|
{
|
|
148
148
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
149
|
-
"sha256": "
|
|
149
|
+
"sha256": "f16ad931750ef715bb73e48ea9e57c8fc45acc38d68d636e8e415bbd580f8475"
|
|
150
150
|
},
|
|
151
151
|
{
|
|
152
152
|
"path": "harness-knowledge-query/SKILL.md",
|
|
153
|
-
"sha256": "
|
|
153
|
+
"sha256": "61fb264642b24ce8faf0f44cffae00708c1a55257298ef6695649921c780c25e"
|
|
154
154
|
},
|
|
155
155
|
{
|
|
156
156
|
"path": "harness-plan/checklist.md",
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
168
|
"path": "harness-plan/SKILL.md",
|
|
169
|
-
"sha256": "
|
|
169
|
+
"sha256": "0e7c7fb3b40053493358c43c1d695a980a856f80cf6af6b1fc1c2d4f08eb6fd0"
|
|
170
170
|
},
|
|
171
171
|
{
|
|
172
172
|
"path": "harness-review/checklist.md",
|
|
@@ -178,11 +178,11 @@
|
|
|
178
178
|
},
|
|
179
179
|
{
|
|
180
180
|
"path": "harness-review/reference.md",
|
|
181
|
-
"sha256": "
|
|
181
|
+
"sha256": "94bfb479910abbf393721887c4ce1b7d4259d170a1223c3315330d317ce77510"
|
|
182
182
|
},
|
|
183
183
|
{
|
|
184
184
|
"path": "harness-review/SKILL.md",
|
|
185
|
-
"sha256": "
|
|
185
|
+
"sha256": "849aa209e53aed086abeb8797d19c34852567d01edfd87c54c3206e397a4fcda"
|
|
186
186
|
},
|
|
187
187
|
{
|
|
188
188
|
"path": "harness-run/checklist.md",
|
|
@@ -198,7 +198,7 @@
|
|
|
198
198
|
},
|
|
199
199
|
{
|
|
200
200
|
"path": "harness-run/SKILL.md",
|
|
201
|
-
"sha256": "
|
|
201
|
+
"sha256": "e42b90b15e66abec8a1d2402107b241455022640811df52587372fbab196de6b"
|
|
202
202
|
},
|
|
203
203
|
{
|
|
204
204
|
"path": "harness-submit/checklist.md",
|
|
@@ -210,7 +210,7 @@
|
|
|
210
210
|
},
|
|
211
211
|
{
|
|
212
212
|
"path": "harness-submit/SKILL.md",
|
|
213
|
-
"sha256": "
|
|
213
|
+
"sha256": "e979538548bd22582a447443859e2303bb675f180983f912f2eea46b1b3f22d5"
|
|
214
214
|
},
|
|
215
215
|
{
|
|
216
216
|
"path": "harness-sync/reference.md",
|
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
},
|
|
219
219
|
{
|
|
220
220
|
"path": "harness-sync/SKILL.md",
|
|
221
|
-
"sha256": "
|
|
221
|
+
"sha256": "3b7f0ccd65e70d1198055d27a01469098a4c30eb511d31a6d0de2aaec5dde565"
|
|
222
222
|
},
|
|
223
223
|
{
|
|
224
224
|
"path": "harness-test/checklist.md",
|
|
@@ -242,7 +242,7 @@
|
|
|
242
242
|
},
|
|
243
243
|
{
|
|
244
244
|
"path": "harness-test/SKILL.md",
|
|
245
|
-
"sha256": "
|
|
245
|
+
"sha256": "d6cda419556cf77df93bbcbd89cb6d09ab22304ba7637519f4836c2d66f612c8"
|
|
246
246
|
},
|
|
247
247
|
{
|
|
248
248
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -310,7 +310,7 @@
|
|
|
310
310
|
},
|
|
311
311
|
{
|
|
312
312
|
"path": "scripts/harness_archive.py",
|
|
313
|
-
"sha256": "
|
|
313
|
+
"sha256": "d9992c4f1a5e3c777ee4d6a8415b1a127dc28d2921110e4bd9fd2726827c0abb"
|
|
314
314
|
},
|
|
315
315
|
{
|
|
316
316
|
"path": "scripts/harness_change.py",
|
|
@@ -334,19 +334,19 @@
|
|
|
334
334
|
},
|
|
335
335
|
{
|
|
336
336
|
"path": "scripts/harness_events.py",
|
|
337
|
-
"sha256": "
|
|
337
|
+
"sha256": "0d4db19d71d5945837c255192f7c915af447f98e2ac66bf60e25b93f1613b391"
|
|
338
338
|
},
|
|
339
339
|
{
|
|
340
340
|
"path": "scripts/harness_gate.py",
|
|
341
|
-
"sha256": "
|
|
341
|
+
"sha256": "d6085f724ea59f0fcd47a190a7c45ce81c77a21e84fba185e47c6b21b84c054e"
|
|
342
342
|
},
|
|
343
343
|
{
|
|
344
344
|
"path": "scripts/harness_integration.py",
|
|
345
|
-
"sha256": "
|
|
345
|
+
"sha256": "19ff557794609d94af780f0055aa0a50d47cfd6775f97c163d542205d2ab0044"
|
|
346
346
|
},
|
|
347
347
|
{
|
|
348
348
|
"path": "scripts/harness_ledger.py",
|
|
349
|
-
"sha256": "
|
|
349
|
+
"sha256": "3b00ff15958a1cc650ee32f6a3d8807f4585b75c5bce33707fc9e48c9ec71235"
|
|
350
350
|
},
|
|
351
351
|
{
|
|
352
352
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -378,7 +378,7 @@
|
|
|
378
378
|
},
|
|
379
379
|
{
|
|
380
380
|
"path": "scripts/harness_report_model.py",
|
|
381
|
-
"sha256": "
|
|
381
|
+
"sha256": "08b6df8f053ea3381ca24571056817e0756a06cef01edd1aaee6a7eb492426d6"
|
|
382
382
|
},
|
|
383
383
|
{
|
|
384
384
|
"path": "scripts/harness_retry.py",
|
|
@@ -386,7 +386,7 @@
|
|
|
386
386
|
},
|
|
387
387
|
{
|
|
388
388
|
"path": "scripts/harness_review.py",
|
|
389
|
-
"sha256": "
|
|
389
|
+
"sha256": "a493efd57d743f7414617ffa2e8cac59d6ddd102b0e45cab60795492bf442e20"
|
|
390
390
|
},
|
|
391
391
|
{
|
|
392
392
|
"path": "scripts/harness_runtime.py",
|
|
@@ -394,7 +394,7 @@
|
|
|
394
394
|
},
|
|
395
395
|
{
|
|
396
396
|
"path": "scripts/harness_service.py",
|
|
397
|
-
"sha256": "
|
|
397
|
+
"sha256": "a897ccb4ef397d1677e7d45ce55357b37f0083ea7e985685604c40a6da075d12"
|
|
398
398
|
},
|
|
399
399
|
{
|
|
400
400
|
"path": "scripts/harness_state.py",
|