@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": "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": "12a328c404e37e81e943627befd019445e0bc861cc56817b29ef26637bb051ea"
|
|
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": "9fc3f588a9447a03b0923b32ab79f29e2be1b12aa2e684ec08b335e61437dad3"
|
|
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": "f2316c444860ccbffd349ec6aac2bb84b2920633f3ee4c52cb64f31d87b22bac"
|
|
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": "1f8d4981291de927e77446a96c30825078bb0299e6e3a8076e5c8b46d4848844"
|
|
162
162
|
},
|
|
163
163
|
{
|
|
164
164
|
"path": "harness-knowledge-query/SKILL.md",
|
|
165
|
-
"sha256": "
|
|
165
|
+
"sha256": "2aac0ad5400395cab085b0cb8c3342212be9bec96323cb2c9a297ce8fd70b9be"
|
|
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": "4f9175aa2451cb73e0009a694f65117d1981a5a02199299a2d776005aaa3d887"
|
|
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": "3ad38ea6b4e8d6671fe5c69095e3e190fec7e4cb1db04f656de5eb57dc9235bb"
|
|
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": "670861be8622cfa27c9f7c5952df292b6372231545b1919943b7e8a662f49eec"
|
|
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": "3b6ca7fc06fbb306685322a09c760fe8b3ae36c8a039294361894d8c2701fd92"
|
|
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": "5ab58ab05ed68620b24f4e21eff715fbe23293ff89fb60122ed91464e3f61468"
|
|
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": "310bceed2fb069e47f1074d618464fe09318c89c4d5d282750b5b4f228e49df5"
|
|
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",
|
|
@@ -338,7 +338,7 @@
|
|
|
338
338
|
},
|
|
339
339
|
{
|
|
340
340
|
"path": "scripts/harness_deploy.py",
|
|
341
|
-
"sha256": "
|
|
341
|
+
"sha256": "fb4290c2dd5c28a09c378da5ee7be491bdefe0410f277ec5dd2af1952cfddbca"
|
|
342
342
|
},
|
|
343
343
|
{
|
|
344
344
|
"path": "scripts/harness_environment.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": "979fbb4567f5e37ea52657de143074a6981f1ee4e1c36bdcc7b2fd03858f13c5"
|
|
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": "7da852b64c2c7237ae137286f8a6f513f2bc9567d4d372b43707457bbb280393"
|
|
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": "628e201bfb6178e6ecaa1e1c9b7e344e1fc0ba9624485c842052b2985fb4f6a1"
|
|
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": "07154966fdb797ab795251ac1bc4f608fc4c13932c475c37b0272c301f755970"
|
|
150
150
|
},
|
|
151
151
|
{
|
|
152
152
|
"path": "harness-knowledge-query/SKILL.md",
|
|
153
|
-
"sha256": "
|
|
153
|
+
"sha256": "582bfcd7138936ee7cb5c7059cbfef923a46912fecd0507bdf508154aa315aa1"
|
|
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": "f4ddbda17963003d36105407eaa8448190da7dada740dc3ba63305db86a39d4e"
|
|
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": "cbfc050179ac23be8cfd54fc48c52322eb165f4bd14a6fd534f234f598a7a5ca"
|
|
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": "8579e6d12297335731bb9b36521ada2dc590620a06c70d5469f52dec86d86e60"
|
|
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": "32174912939e7cd6431f6f4214463bcf819d725911e4ec3d19c246b70868b8c3"
|
|
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": "cb4f9ca08d24d8f1fbdf163e3affd1ebdb75a80690db9b0538afecca7643fc65"
|
|
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": "53920deda2c99750dfbcbde4eb9c3d988ad406adae9c2d525f36a91ce94c1689"
|
|
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",
|
|
@@ -326,7 +326,7 @@
|
|
|
326
326
|
},
|
|
327
327
|
{
|
|
328
328
|
"path": "scripts/harness_deploy.py",
|
|
329
|
-
"sha256": "
|
|
329
|
+
"sha256": "fb4290c2dd5c28a09c378da5ee7be491bdefe0410f277ec5dd2af1952cfddbca"
|
|
330
330
|
},
|
|
331
331
|
{
|
|
332
332
|
"path": "scripts/harness_environment.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": "1ef42ebaccbb7e576969d339bf598d484f5c3b5090e02cd73e6a331509203234"
|
|
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": "c14c9bb30a29d680651ff80789d015e9d0cdcf379148f79690974f0c800127a8"
|
|
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": "ceb254e3613786193b5990529900e08572d8381fd57afdcc0760d7e49a7e65dd"
|
|
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": "e6ec5675609de49c83f2b1ead5be5708c4e53e5b9da99c5318efb48970cf2a15"
|
|
150
150
|
},
|
|
151
151
|
{
|
|
152
152
|
"path": "harness-knowledge-query/SKILL.md",
|
|
153
|
-
"sha256": "
|
|
153
|
+
"sha256": "2e1e8675d1341cbab6e738ae260e782d29d8f8efa968f2a472b21800c8e648ac"
|
|
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": "5cfbb383761aa2230e8030c86e667fff0f111bf63d4b99f06ffe92199a14dc21"
|
|
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": "808a2bb155580f7d71f7c0bc03044269a391f0b12305bea8081bb658798cbe23"
|
|
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": "5eaa10bfccff044735e03c26dcf85b49d72c2af28946f698857069c1916e100c"
|
|
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": "b6e07f0979621fc5e079357ca3e79413bbb2b1ca0b261d01a2b220c0d9081b27"
|
|
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": "22e323d87853c3607b26850eb73f0e44b63b663e5a9dfdd65f86414b1f2cb134"
|
|
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": "86a3a19564a1a25f26f75c0691bf77b64488f934cf1268616f4b0d90b22091ab"
|
|
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",
|
|
@@ -326,7 +326,7 @@
|
|
|
326
326
|
},
|
|
327
327
|
{
|
|
328
328
|
"path": "scripts/harness_deploy.py",
|
|
329
|
-
"sha256": "
|
|
329
|
+
"sha256": "fb4290c2dd5c28a09c378da5ee7be491bdefe0410f277ec5dd2af1952cfddbca"
|
|
330
330
|
},
|
|
331
331
|
{
|
|
332
332
|
"path": "scripts/harness_environment.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",
|