@hunter-harness/workflow-harness 0.2.27 → 0.2.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/harness/bundles/general/claude-code/.harness-build.json +1 -1
- package/harness/bundles/general/claude-code/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-archive/templates/render-summary.mjs +25 -6
- package/harness/bundles/general/claude-code/harness-archive/templates/summary-data-template.json +44 -0
- 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 +493 -74
- package/harness/bundles/general/claude-code/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-plan/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-review/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-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 +2061 -187
- package/harness/bundles/general/claude-code/scripts/harness_events.py +43 -9
- package/harness/bundles/general/claude-code/scripts/harness_gate.py +491 -7
- package/harness/bundles/general/claude-code/scripts/harness_integration.py +232 -0
- package/harness/bundles/general/claude-code/scripts/harness_phase.py +758 -1
- package/harness/bundles/general/claude-code/scripts/harness_plan_finalize.py +74 -0
- package/harness/bundles/general/claude-code/scripts/harness_retry.py +175 -0
- package/harness/bundles/general/claude-code/scripts/harness_test_guard.py +702 -22
- package/harness/bundles/general/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/general/codebuddy/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-archive/templates/render-summary.mjs +25 -6
- package/harness/bundles/general/codebuddy/harness-archive/templates/summary-data-template.json +44 -0
- 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 +493 -74
- package/harness/bundles/general/codebuddy/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-plan/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-review/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-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 +2061 -187
- package/harness/bundles/general/codebuddy/scripts/harness_events.py +43 -9
- package/harness/bundles/general/codebuddy/scripts/harness_gate.py +491 -7
- package/harness/bundles/general/codebuddy/scripts/harness_integration.py +232 -0
- package/harness/bundles/general/codebuddy/scripts/harness_phase.py +758 -1
- package/harness/bundles/general/codebuddy/scripts/harness_plan_finalize.py +74 -0
- package/harness/bundles/general/codebuddy/scripts/harness_retry.py +175 -0
- package/harness/bundles/general/codebuddy/scripts/harness_test_guard.py +702 -22
- package/harness/bundles/general/codex/.harness-build.json +1 -1
- package/harness/bundles/general/codex/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-archive/templates/render-summary.mjs +25 -6
- package/harness/bundles/general/codex/harness-archive/templates/summary-data-template.json +44 -0
- 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 +493 -74
- package/harness/bundles/general/codex/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-plan/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-review/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-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 +2061 -187
- package/harness/bundles/general/codex/scripts/harness_events.py +43 -9
- package/harness/bundles/general/codex/scripts/harness_gate.py +491 -7
- package/harness/bundles/general/codex/scripts/harness_integration.py +232 -0
- package/harness/bundles/general/codex/scripts/harness_phase.py +758 -1
- package/harness/bundles/general/codex/scripts/harness_plan_finalize.py +74 -0
- package/harness/bundles/general/codex/scripts/harness_retry.py +175 -0
- package/harness/bundles/general/codex/scripts/harness_test_guard.py +702 -22
- package/harness/bundles/general/cursor/.harness-build.json +1 -1
- package/harness/bundles/general/cursor/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-archive/templates/render-summary.mjs +25 -6
- package/harness/bundles/general/cursor/harness-archive/templates/summary-data-template.json +44 -0
- 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 +493 -74
- package/harness/bundles/general/cursor/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-plan/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-review/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-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 +2061 -187
- package/harness/bundles/general/cursor/scripts/harness_events.py +43 -9
- package/harness/bundles/general/cursor/scripts/harness_gate.py +491 -7
- package/harness/bundles/general/cursor/scripts/harness_integration.py +232 -0
- package/harness/bundles/general/cursor/scripts/harness_phase.py +758 -1
- package/harness/bundles/general/cursor/scripts/harness_plan_finalize.py +74 -0
- package/harness/bundles/general/cursor/scripts/harness_retry.py +175 -0
- package/harness/bundles/general/cursor/scripts/harness_test_guard.py +702 -22
- package/harness/bundles/java/claude-code/.harness-build.json +1 -1
- package/harness/bundles/java/claude-code/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-archive/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-archive/templates/render-summary.mjs +25 -6
- package/harness/bundles/java/claude-code/harness-archive/templates/summary-data-template.json +44 -0
- 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 +493 -74
- package/harness/bundles/java/claude-code/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-plan/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-review/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-submit/SKILL.md +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 +2061 -187
- package/harness/bundles/java/claude-code/scripts/harness_events.py +43 -9
- package/harness/bundles/java/claude-code/scripts/harness_gate.py +491 -7
- package/harness/bundles/java/claude-code/scripts/harness_integration.py +232 -0
- package/harness/bundles/java/claude-code/scripts/harness_phase.py +758 -1
- package/harness/bundles/java/claude-code/scripts/harness_plan_finalize.py +74 -0
- package/harness/bundles/java/claude-code/scripts/harness_retry.py +175 -0
- package/harness/bundles/java/claude-code/scripts/harness_test_guard.py +702 -22
- package/harness/bundles/java/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/java/codebuddy/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-archive/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-archive/templates/render-summary.mjs +25 -6
- package/harness/bundles/java/codebuddy/harness-archive/templates/summary-data-template.json +44 -0
- 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 +493 -74
- package/harness/bundles/java/codebuddy/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-plan/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-review/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-submit/SKILL.md +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 +2061 -187
- package/harness/bundles/java/codebuddy/scripts/harness_events.py +43 -9
- package/harness/bundles/java/codebuddy/scripts/harness_gate.py +491 -7
- package/harness/bundles/java/codebuddy/scripts/harness_integration.py +232 -0
- package/harness/bundles/java/codebuddy/scripts/harness_phase.py +758 -1
- package/harness/bundles/java/codebuddy/scripts/harness_plan_finalize.py +74 -0
- package/harness/bundles/java/codebuddy/scripts/harness_retry.py +175 -0
- package/harness/bundles/java/codebuddy/scripts/harness_test_guard.py +702 -22
- package/harness/bundles/java/codex/.harness-build.json +1 -1
- package/harness/bundles/java/codex/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-archive/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-archive/templates/render-summary.mjs +25 -6
- package/harness/bundles/java/codex/harness-archive/templates/summary-data-template.json +44 -0
- 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 +493 -74
- package/harness/bundles/java/codex/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-plan/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-review/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-submit/SKILL.md +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 +2061 -187
- package/harness/bundles/java/codex/scripts/harness_events.py +43 -9
- package/harness/bundles/java/codex/scripts/harness_gate.py +491 -7
- package/harness/bundles/java/codex/scripts/harness_integration.py +232 -0
- package/harness/bundles/java/codex/scripts/harness_phase.py +758 -1
- package/harness/bundles/java/codex/scripts/harness_plan_finalize.py +74 -0
- package/harness/bundles/java/codex/scripts/harness_retry.py +175 -0
- package/harness/bundles/java/codex/scripts/harness_test_guard.py +702 -22
- package/harness/bundles/java/cursor/.harness-build.json +1 -1
- package/harness/bundles/java/cursor/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-archive/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-archive/templates/render-summary.mjs +25 -6
- package/harness/bundles/java/cursor/harness-archive/templates/summary-data-template.json +44 -0
- 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 +493 -74
- package/harness/bundles/java/cursor/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-plan/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-review/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-submit/SKILL.md +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 +2061 -187
- package/harness/bundles/java/cursor/scripts/harness_events.py +43 -9
- package/harness/bundles/java/cursor/scripts/harness_gate.py +491 -7
- package/harness/bundles/java/cursor/scripts/harness_integration.py +232 -0
- package/harness/bundles/java/cursor/scripts/harness_phase.py +758 -1
- package/harness/bundles/java/cursor/scripts/harness_plan_finalize.py +74 -0
- package/harness/bundles/java/cursor/scripts/harness_retry.py +175 -0
- package/harness/bundles/java/cursor/scripts/harness_test_guard.py +702 -22
- package/harness/manifests/general/claude-code.json +26 -22
- package/harness/manifests/general/codebuddy.json +26 -22
- package/harness/manifests/general/codex.json +26 -22
- package/harness/manifests/general/cursor.json +26 -22
- package/harness/manifests/java/claude-code.json +28 -24
- package/harness/manifests/java/codebuddy.json +28 -24
- package/harness/manifests/java/codex.json +28 -24
- package/harness/manifests/java/cursor.json +28 -24
- package/hunter-workflow-family.json +2 -2
- package/package.json +1 -1
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "general",
|
|
4
4
|
"adapter": "cursor",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.20",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "a359bd6961315dcb8f806eeea514500a6e8e2c32e84b0d472f8f59667c6e56cc"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "CONTEXT.md",
|
|
@@ -35,15 +35,15 @@
|
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
37
|
"path": "harness-archive/SKILL.md",
|
|
38
|
-
"sha256": "
|
|
38
|
+
"sha256": "6c7afe3d42cc63130c032ec5dcd71e374f97fd746924905f7ca58d2f2578fa5d"
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
42
|
-
"sha256": "
|
|
42
|
+
"sha256": "9e027c4c26dc5d076c35bb485fc618929d425b1f2b0ac097d45caad9817b29b4"
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
46
|
-
"sha256": "
|
|
46
|
+
"sha256": "9f20b313d0810bb7e787aec0fe4a632ab6a598245bfe7b075973026340b8c81f"
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
"path": "harness-codebase-map/checklist.md",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
57
|
"path": "harness-codebase-map/SKILL.md",
|
|
58
|
-
"sha256": "
|
|
58
|
+
"sha256": "2cc91fe769ad4434960a79e7ccbfba672b17e5542e9a6410df74ed71a9974fc5"
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
61
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -115,15 +115,15 @@
|
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
117
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
118
|
-
"sha256": "
|
|
118
|
+
"sha256": "c7278af0c041f36e466d1730349cc27377729fc772d70f513e171c7152149a20"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
121
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
122
|
-
"sha256": "
|
|
122
|
+
"sha256": "9ab5edbbeed4c4c3f0581d8b0336c5e7827920bf9758824a4234fa0b6bdb9220"
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
125
|
"path": "harness-knowledge-query/SKILL.md",
|
|
126
|
-
"sha256": "
|
|
126
|
+
"sha256": "15230a3dc8fe0d3606849ec975f21ddd08286065158f4c99c2422ed8d9f6e425"
|
|
127
127
|
},
|
|
128
128
|
{
|
|
129
129
|
"path": "harness-plan/checklist.md",
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
},
|
|
140
140
|
{
|
|
141
141
|
"path": "harness-plan/SKILL.md",
|
|
142
|
-
"sha256": "
|
|
142
|
+
"sha256": "d586ab33d399983f95996d6d0ad91887826cc8b1adcccbea6ed5787b38b0a8e1"
|
|
143
143
|
},
|
|
144
144
|
{
|
|
145
145
|
"path": "harness-review/checklist.md",
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
},
|
|
156
156
|
{
|
|
157
157
|
"path": "harness-review/SKILL.md",
|
|
158
|
-
"sha256": "
|
|
158
|
+
"sha256": "02167dfc7f9799f0af1f91f9bb4b006c1cfac9f8114c8b55495a9367ccc29b93"
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
161
|
"path": "harness-run/checklist.md",
|
|
@@ -171,7 +171,7 @@
|
|
|
171
171
|
},
|
|
172
172
|
{
|
|
173
173
|
"path": "harness-run/SKILL.md",
|
|
174
|
-
"sha256": "
|
|
174
|
+
"sha256": "6f91e8c5f42f28a3d3b2c460b6c49d10442aa855ee976e365157ea61e3d9957f"
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
177
|
"path": "harness-submit/checklist.md",
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
},
|
|
184
184
|
{
|
|
185
185
|
"path": "harness-submit/SKILL.md",
|
|
186
|
-
"sha256": "
|
|
186
|
+
"sha256": "35c522d94219ea9d449a6e4c7c1b4f2f82f6fb3016f2cce6d103abcdc3c971d0"
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
189
|
"path": "harness-sync/reference.md",
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
"path": "harness-sync/SKILL.md",
|
|
194
|
-
"sha256": "
|
|
194
|
+
"sha256": "096dd43819d82b4d9571a5aef195fa346204e51b37eb605608a82d8e6645d92e"
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
197
|
"path": "harness-test/checklist.md",
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
},
|
|
216
216
|
{
|
|
217
217
|
"path": "harness-test/SKILL.md",
|
|
218
|
-
"sha256": "
|
|
218
|
+
"sha256": "b9062812467a6e2c0251537a1d0bad77214a2eae473994ec085dce29e01b89d7"
|
|
219
219
|
},
|
|
220
220
|
{
|
|
221
221
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -263,7 +263,7 @@
|
|
|
263
263
|
},
|
|
264
264
|
{
|
|
265
265
|
"path": "scripts/harness_archive.py",
|
|
266
|
-
"sha256": "
|
|
266
|
+
"sha256": "97f94770d4adada904732fd7529d5b90bd457e131a6077c3dd2c3906ee01fcd8"
|
|
267
267
|
},
|
|
268
268
|
{
|
|
269
269
|
"path": "scripts/harness_change.py",
|
|
@@ -283,15 +283,15 @@
|
|
|
283
283
|
},
|
|
284
284
|
{
|
|
285
285
|
"path": "scripts/harness_events.py",
|
|
286
|
-
"sha256": "
|
|
286
|
+
"sha256": "7f5e9e316c422f7532fe0fcf52beb809125f757af7ccfbdf85fa519c2de4e66d"
|
|
287
287
|
},
|
|
288
288
|
{
|
|
289
289
|
"path": "scripts/harness_gate.py",
|
|
290
|
-
"sha256": "
|
|
290
|
+
"sha256": "29de8510a9377a2651410b4d0a3be1b9eeb44d8e0d7d4becb44e1734c95dd953"
|
|
291
291
|
},
|
|
292
292
|
{
|
|
293
293
|
"path": "scripts/harness_integration.py",
|
|
294
|
-
"sha256": "
|
|
294
|
+
"sha256": "88d0a6ffbdec74ce8c3a994c1ec80e5a0c550b3cccad8d46fb8c355ced1a7721"
|
|
295
295
|
},
|
|
296
296
|
{
|
|
297
297
|
"path": "scripts/harness_ledger.py",
|
|
@@ -307,11 +307,11 @@
|
|
|
307
307
|
},
|
|
308
308
|
{
|
|
309
309
|
"path": "scripts/harness_phase.py",
|
|
310
|
-
"sha256": "
|
|
310
|
+
"sha256": "8143e5b97ff14ba46a508ce346d7a51af0122ef8aeff0543852994fbaca97cba"
|
|
311
311
|
},
|
|
312
312
|
{
|
|
313
313
|
"path": "scripts/harness_plan_finalize.py",
|
|
314
|
-
"sha256": "
|
|
314
|
+
"sha256": "1e96a642df48722bf7de1ae2aa53f9c87d641150d939e47686a0b36b5c4547e5"
|
|
315
315
|
},
|
|
316
316
|
{
|
|
317
317
|
"path": "scripts/harness_preflight.py",
|
|
@@ -321,6 +321,10 @@
|
|
|
321
321
|
"path": "scripts/harness_profile.py",
|
|
322
322
|
"sha256": "d8f6a07455c27c9167df44b33eb20ef7c6c65530462cd4958794db1063d5ac04"
|
|
323
323
|
},
|
|
324
|
+
{
|
|
325
|
+
"path": "scripts/harness_retry.py",
|
|
326
|
+
"sha256": "250a6f7fb564fb537ba8680a3385a50ec3dff6625aa4d1488d5c4e09393d20b5"
|
|
327
|
+
},
|
|
324
328
|
{
|
|
325
329
|
"path": "scripts/harness_review.py",
|
|
326
330
|
"sha256": "a741a63f62993d72889e78f540feb57a95e713b4d7a98fa61ff208b2ce914ca7"
|
|
@@ -347,7 +351,7 @@
|
|
|
347
351
|
},
|
|
348
352
|
{
|
|
349
353
|
"path": "scripts/harness_test_guard.py",
|
|
350
|
-
"sha256": "
|
|
354
|
+
"sha256": "426fd0002f643fc4b473f04f0c1164330de8a0c622cde7e07aad78d6a5e64df5"
|
|
351
355
|
},
|
|
352
356
|
{
|
|
353
357
|
"path": "scripts/harness_workflow_policy.py",
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "claude-code",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.20",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "a30f33f37f9da330177553697c35a2b2aae1b46815c3b6fa4c7ca8bc92851223"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "agents/harness-evaluator.md",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
"path": "harness-apidoc/SKILL.md",
|
|
46
|
-
"sha256": "
|
|
46
|
+
"sha256": "22b60302b1990c1c6ba4dfc53f5791298b33d6295dee2f38b62f241de68b4532"
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
"path": "harness-archive/checklist.md",
|
|
@@ -59,15 +59,15 @@
|
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
61
|
"path": "harness-archive/SKILL.md",
|
|
62
|
-
"sha256": "
|
|
62
|
+
"sha256": "0b00c64c47b9b0f5750fba34bb026416a8cbb95b4de7eec305074c73f2db4595"
|
|
63
63
|
},
|
|
64
64
|
{
|
|
65
65
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
66
|
-
"sha256": "
|
|
66
|
+
"sha256": "9e027c4c26dc5d076c35bb485fc618929d425b1f2b0ac097d45caad9817b29b4"
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
69
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
70
|
-
"sha256": "
|
|
70
|
+
"sha256": "9f20b313d0810bb7e787aec0fe4a632ab6a598245bfe7b075973026340b8c81f"
|
|
71
71
|
},
|
|
72
72
|
{
|
|
73
73
|
"path": "harness-codebase-map/checklist.md",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
81
|
"path": "harness-codebase-map/SKILL.md",
|
|
82
|
-
"sha256": "
|
|
82
|
+
"sha256": "cd2fd0b906cf83a0c91a220c4176d7061240511f247b64075e39751fa99a357d"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
85
85
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -139,15 +139,15 @@
|
|
|
139
139
|
},
|
|
140
140
|
{
|
|
141
141
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
142
|
-
"sha256": "
|
|
142
|
+
"sha256": "c7278af0c041f36e466d1730349cc27377729fc772d70f513e171c7152149a20"
|
|
143
143
|
},
|
|
144
144
|
{
|
|
145
145
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
146
|
-
"sha256": "
|
|
146
|
+
"sha256": "e077ab73f2280c29a3058239eb16fab55b225291de58f3479477942001045c8a"
|
|
147
147
|
},
|
|
148
148
|
{
|
|
149
149
|
"path": "harness-knowledge-query/SKILL.md",
|
|
150
|
-
"sha256": "
|
|
150
|
+
"sha256": "919fc6d157a74236cd1f735bde633e5c1cd96deb922195b335ec7e0ba47a0d47"
|
|
151
151
|
},
|
|
152
152
|
{
|
|
153
153
|
"path": "harness-package/checklist.md",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
161
|
"path": "harness-package/SKILL.md",
|
|
162
|
-
"sha256": "
|
|
162
|
+
"sha256": "8e9f864ec0a508e20f993fc5bda61087e21be3c885cd7f30eb63d60ee63df686"
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
165
|
"path": "harness-plan/checklist.md",
|
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
177
|
"path": "harness-plan/SKILL.md",
|
|
178
|
-
"sha256": "
|
|
178
|
+
"sha256": "ec89775711ab31353dbbba5fa9a9f24017dfa694f48dfc5bd868a4440df129ed"
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"path": "harness-review/checklist.md",
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
"path": "harness-review/SKILL.md",
|
|
194
|
-
"sha256": "
|
|
194
|
+
"sha256": "ffcbdd4bc832efdda56767477abce3b1f90ed09a8bc9a57e5d9079f9b60dbf76"
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
197
|
"path": "harness-run/checklist.md",
|
|
@@ -207,7 +207,7 @@
|
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
"path": "harness-run/SKILL.md",
|
|
210
|
-
"sha256": "
|
|
210
|
+
"sha256": "fcf68fdf869af4b4b12882eefbd5d0ec6502fc6684a9dbe9d03ad37d08e2b0f3"
|
|
211
211
|
},
|
|
212
212
|
{
|
|
213
213
|
"path": "harness-submit/checklist.md",
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
},
|
|
220
220
|
{
|
|
221
221
|
"path": "harness-submit/SKILL.md",
|
|
222
|
-
"sha256": "
|
|
222
|
+
"sha256": "771afe145e5a4ceee9d96fa725c1e629d9945a7af38f24b12a101f5ee5a2df7b"
|
|
223
223
|
},
|
|
224
224
|
{
|
|
225
225
|
"path": "harness-sync/reference.md",
|
|
@@ -227,7 +227,7 @@
|
|
|
227
227
|
},
|
|
228
228
|
{
|
|
229
229
|
"path": "harness-sync/SKILL.md",
|
|
230
|
-
"sha256": "
|
|
230
|
+
"sha256": "8f1b1cddbf7d900e13289f94b7cdd389d83e870b644e61c7dc6121c6103916cf"
|
|
231
231
|
},
|
|
232
232
|
{
|
|
233
233
|
"path": "harness-test/checklist.md",
|
|
@@ -251,7 +251,7 @@
|
|
|
251
251
|
},
|
|
252
252
|
{
|
|
253
253
|
"path": "harness-test/SKILL.md",
|
|
254
|
-
"sha256": "
|
|
254
|
+
"sha256": "4056f81994d90df4047ca5f49841c97cd2e16ad0f55d2436a50aaca89d7055dd"
|
|
255
255
|
},
|
|
256
256
|
{
|
|
257
257
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -299,7 +299,7 @@
|
|
|
299
299
|
},
|
|
300
300
|
{
|
|
301
301
|
"path": "scripts/harness_archive.py",
|
|
302
|
-
"sha256": "
|
|
302
|
+
"sha256": "97f94770d4adada904732fd7529d5b90bd457e131a6077c3dd2c3906ee01fcd8"
|
|
303
303
|
},
|
|
304
304
|
{
|
|
305
305
|
"path": "scripts/harness_change.py",
|
|
@@ -319,15 +319,15 @@
|
|
|
319
319
|
},
|
|
320
320
|
{
|
|
321
321
|
"path": "scripts/harness_events.py",
|
|
322
|
-
"sha256": "
|
|
322
|
+
"sha256": "7f5e9e316c422f7532fe0fcf52beb809125f757af7ccfbdf85fa519c2de4e66d"
|
|
323
323
|
},
|
|
324
324
|
{
|
|
325
325
|
"path": "scripts/harness_gate.py",
|
|
326
|
-
"sha256": "
|
|
326
|
+
"sha256": "29de8510a9377a2651410b4d0a3be1b9eeb44d8e0d7d4becb44e1734c95dd953"
|
|
327
327
|
},
|
|
328
328
|
{
|
|
329
329
|
"path": "scripts/harness_integration.py",
|
|
330
|
-
"sha256": "
|
|
330
|
+
"sha256": "88d0a6ffbdec74ce8c3a994c1ec80e5a0c550b3cccad8d46fb8c355ced1a7721"
|
|
331
331
|
},
|
|
332
332
|
{
|
|
333
333
|
"path": "scripts/harness_ledger.py",
|
|
@@ -343,11 +343,11 @@
|
|
|
343
343
|
},
|
|
344
344
|
{
|
|
345
345
|
"path": "scripts/harness_phase.py",
|
|
346
|
-
"sha256": "
|
|
346
|
+
"sha256": "8143e5b97ff14ba46a508ce346d7a51af0122ef8aeff0543852994fbaca97cba"
|
|
347
347
|
},
|
|
348
348
|
{
|
|
349
349
|
"path": "scripts/harness_plan_finalize.py",
|
|
350
|
-
"sha256": "
|
|
350
|
+
"sha256": "1e96a642df48722bf7de1ae2aa53f9c87d641150d939e47686a0b36b5c4547e5"
|
|
351
351
|
},
|
|
352
352
|
{
|
|
353
353
|
"path": "scripts/harness_preflight.py",
|
|
@@ -357,6 +357,10 @@
|
|
|
357
357
|
"path": "scripts/harness_profile.py",
|
|
358
358
|
"sha256": "d8f6a07455c27c9167df44b33eb20ef7c6c65530462cd4958794db1063d5ac04"
|
|
359
359
|
},
|
|
360
|
+
{
|
|
361
|
+
"path": "scripts/harness_retry.py",
|
|
362
|
+
"sha256": "250a6f7fb564fb537ba8680a3385a50ec3dff6625aa4d1488d5c4e09393d20b5"
|
|
363
|
+
},
|
|
360
364
|
{
|
|
361
365
|
"path": "scripts/harness_review.py",
|
|
362
366
|
"sha256": "a741a63f62993d72889e78f540feb57a95e713b4d7a98fa61ff208b2ce914ca7"
|
|
@@ -383,7 +387,7 @@
|
|
|
383
387
|
},
|
|
384
388
|
{
|
|
385
389
|
"path": "scripts/harness_test_guard.py",
|
|
386
|
-
"sha256": "
|
|
390
|
+
"sha256": "426fd0002f643fc4b473f04f0c1164330de8a0c622cde7e07aad78d6a5e64df5"
|
|
387
391
|
},
|
|
388
392
|
{
|
|
389
393
|
"path": "scripts/harness_workflow_policy.py",
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "codebuddy",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.20",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "b99a2ee15ce5a6b370b7f0283bcd28e74664fa3bfa161d07b8111978f37b5830"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "agents/harness-evaluator.md",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
"path": "harness-apidoc/SKILL.md",
|
|
46
|
-
"sha256": "
|
|
46
|
+
"sha256": "d143c86931661ef4c804e4ad57285ecc74d333c0bd5193db9d7a29de2e0346e6"
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
"path": "harness-archive/checklist.md",
|
|
@@ -59,15 +59,15 @@
|
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
61
|
"path": "harness-archive/SKILL.md",
|
|
62
|
-
"sha256": "
|
|
62
|
+
"sha256": "97e05f3c63b8465a64a50e7c01b104b36c35d883a92bae2d99b3a20e56420680"
|
|
63
63
|
},
|
|
64
64
|
{
|
|
65
65
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
66
|
-
"sha256": "
|
|
66
|
+
"sha256": "9e027c4c26dc5d076c35bb485fc618929d425b1f2b0ac097d45caad9817b29b4"
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
69
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
70
|
-
"sha256": "
|
|
70
|
+
"sha256": "9f20b313d0810bb7e787aec0fe4a632ab6a598245bfe7b075973026340b8c81f"
|
|
71
71
|
},
|
|
72
72
|
{
|
|
73
73
|
"path": "harness-codebase-map/checklist.md",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
81
|
"path": "harness-codebase-map/SKILL.md",
|
|
82
|
-
"sha256": "
|
|
82
|
+
"sha256": "d708ffc113ec8ef0ce26aba123056a8260a9b7cfab2c4f3a7f7059ec15262610"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
85
85
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -139,15 +139,15 @@
|
|
|
139
139
|
},
|
|
140
140
|
{
|
|
141
141
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
142
|
-
"sha256": "
|
|
142
|
+
"sha256": "c7278af0c041f36e466d1730349cc27377729fc772d70f513e171c7152149a20"
|
|
143
143
|
},
|
|
144
144
|
{
|
|
145
145
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
146
|
-
"sha256": "
|
|
146
|
+
"sha256": "5920715887c894176ddcf70565a1361afabb42cd72744b5486ec91299126cedd"
|
|
147
147
|
},
|
|
148
148
|
{
|
|
149
149
|
"path": "harness-knowledge-query/SKILL.md",
|
|
150
|
-
"sha256": "
|
|
150
|
+
"sha256": "f717eecb4df85df3a89cd85e8cab6a0f61f8d9b2dec762032a9dc53810555a00"
|
|
151
151
|
},
|
|
152
152
|
{
|
|
153
153
|
"path": "harness-package/checklist.md",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
161
|
"path": "harness-package/SKILL.md",
|
|
162
|
-
"sha256": "
|
|
162
|
+
"sha256": "4a52228fab2a79646cabf9a1cb9e4d71ac0c9c5e6bd00cc685a9088e1fd9a5b2"
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
165
|
"path": "harness-plan/checklist.md",
|
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
177
|
"path": "harness-plan/SKILL.md",
|
|
178
|
-
"sha256": "
|
|
178
|
+
"sha256": "ddf484ba78dec2af7add5a476de6533f6225fd8f809d5d932d0f95c04878103c"
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"path": "harness-review/checklist.md",
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
"path": "harness-review/SKILL.md",
|
|
194
|
-
"sha256": "
|
|
194
|
+
"sha256": "740b573244d46a2f00ac18c447e3e226bbc0e5b94314fc49207d5e59a37e6431"
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
197
|
"path": "harness-run/checklist.md",
|
|
@@ -207,7 +207,7 @@
|
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
"path": "harness-run/SKILL.md",
|
|
210
|
-
"sha256": "
|
|
210
|
+
"sha256": "bba0c6fbc5d7da8c54c6dfc198f2314690df70eb584849191ba0df764e43c0cb"
|
|
211
211
|
},
|
|
212
212
|
{
|
|
213
213
|
"path": "harness-submit/checklist.md",
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
},
|
|
220
220
|
{
|
|
221
221
|
"path": "harness-submit/SKILL.md",
|
|
222
|
-
"sha256": "
|
|
222
|
+
"sha256": "50ab42572af72632876256aa59e22ce2464919196ab2a41d1daa87d90890e46c"
|
|
223
223
|
},
|
|
224
224
|
{
|
|
225
225
|
"path": "harness-sync/reference.md",
|
|
@@ -227,7 +227,7 @@
|
|
|
227
227
|
},
|
|
228
228
|
{
|
|
229
229
|
"path": "harness-sync/SKILL.md",
|
|
230
|
-
"sha256": "
|
|
230
|
+
"sha256": "90b13576fc3509a1de7fff52fe2580c63e435c74df9759428ae1c9b8b8ca7e20"
|
|
231
231
|
},
|
|
232
232
|
{
|
|
233
233
|
"path": "harness-test/checklist.md",
|
|
@@ -251,7 +251,7 @@
|
|
|
251
251
|
},
|
|
252
252
|
{
|
|
253
253
|
"path": "harness-test/SKILL.md",
|
|
254
|
-
"sha256": "
|
|
254
|
+
"sha256": "0bde53b082d8c28b5903e7b2386f52967a1635311580e8566925550ee4c60d0f"
|
|
255
255
|
},
|
|
256
256
|
{
|
|
257
257
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -299,7 +299,7 @@
|
|
|
299
299
|
},
|
|
300
300
|
{
|
|
301
301
|
"path": "scripts/harness_archive.py",
|
|
302
|
-
"sha256": "
|
|
302
|
+
"sha256": "97f94770d4adada904732fd7529d5b90bd457e131a6077c3dd2c3906ee01fcd8"
|
|
303
303
|
},
|
|
304
304
|
{
|
|
305
305
|
"path": "scripts/harness_change.py",
|
|
@@ -319,15 +319,15 @@
|
|
|
319
319
|
},
|
|
320
320
|
{
|
|
321
321
|
"path": "scripts/harness_events.py",
|
|
322
|
-
"sha256": "
|
|
322
|
+
"sha256": "7f5e9e316c422f7532fe0fcf52beb809125f757af7ccfbdf85fa519c2de4e66d"
|
|
323
323
|
},
|
|
324
324
|
{
|
|
325
325
|
"path": "scripts/harness_gate.py",
|
|
326
|
-
"sha256": "
|
|
326
|
+
"sha256": "29de8510a9377a2651410b4d0a3be1b9eeb44d8e0d7d4becb44e1734c95dd953"
|
|
327
327
|
},
|
|
328
328
|
{
|
|
329
329
|
"path": "scripts/harness_integration.py",
|
|
330
|
-
"sha256": "
|
|
330
|
+
"sha256": "88d0a6ffbdec74ce8c3a994c1ec80e5a0c550b3cccad8d46fb8c355ced1a7721"
|
|
331
331
|
},
|
|
332
332
|
{
|
|
333
333
|
"path": "scripts/harness_ledger.py",
|
|
@@ -343,11 +343,11 @@
|
|
|
343
343
|
},
|
|
344
344
|
{
|
|
345
345
|
"path": "scripts/harness_phase.py",
|
|
346
|
-
"sha256": "
|
|
346
|
+
"sha256": "8143e5b97ff14ba46a508ce346d7a51af0122ef8aeff0543852994fbaca97cba"
|
|
347
347
|
},
|
|
348
348
|
{
|
|
349
349
|
"path": "scripts/harness_plan_finalize.py",
|
|
350
|
-
"sha256": "
|
|
350
|
+
"sha256": "1e96a642df48722bf7de1ae2aa53f9c87d641150d939e47686a0b36b5c4547e5"
|
|
351
351
|
},
|
|
352
352
|
{
|
|
353
353
|
"path": "scripts/harness_preflight.py",
|
|
@@ -357,6 +357,10 @@
|
|
|
357
357
|
"path": "scripts/harness_profile.py",
|
|
358
358
|
"sha256": "d8f6a07455c27c9167df44b33eb20ef7c6c65530462cd4958794db1063d5ac04"
|
|
359
359
|
},
|
|
360
|
+
{
|
|
361
|
+
"path": "scripts/harness_retry.py",
|
|
362
|
+
"sha256": "250a6f7fb564fb537ba8680a3385a50ec3dff6625aa4d1488d5c4e09393d20b5"
|
|
363
|
+
},
|
|
360
364
|
{
|
|
361
365
|
"path": "scripts/harness_review.py",
|
|
362
366
|
"sha256": "a741a63f62993d72889e78f540feb57a95e713b4d7a98fa61ff208b2ce914ca7"
|
|
@@ -383,7 +387,7 @@
|
|
|
383
387
|
},
|
|
384
388
|
{
|
|
385
389
|
"path": "scripts/harness_test_guard.py",
|
|
386
|
-
"sha256": "
|
|
390
|
+
"sha256": "426fd0002f643fc4b473f04f0c1164330de8a0c622cde7e07aad78d6a5e64df5"
|
|
387
391
|
},
|
|
388
392
|
{
|
|
389
393
|
"path": "scripts/harness_workflow_policy.py",
|