@hunter-harness/workflow-harness 0.2.27 → 0.2.29
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/contracts/workflow-policy.json +34 -2
- 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 +26 -2
- package/harness/bundles/general/claude-code/harness-test/checklist.md +15 -0
- package/harness/bundles/general/claude-code/harness-test/reference.md +28 -4
- 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/claude-code/scripts/harness_test_runner.py +974 -0
- package/harness/bundles/general/claude-code/scripts/harness_workflow_policy.py +87 -0
- package/harness/bundles/general/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/general/codebuddy/contracts/workflow-policy.json +34 -2
- 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 +26 -2
- package/harness/bundles/general/codebuddy/harness-test/checklist.md +15 -0
- package/harness/bundles/general/codebuddy/harness-test/reference.md +28 -4
- 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/codebuddy/scripts/harness_test_runner.py +974 -0
- package/harness/bundles/general/codebuddy/scripts/harness_workflow_policy.py +87 -0
- package/harness/bundles/general/codex/.harness-build.json +1 -1
- package/harness/bundles/general/codex/contracts/workflow-policy.json +34 -2
- 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 +26 -2
- package/harness/bundles/general/codex/harness-test/checklist.md +15 -0
- package/harness/bundles/general/codex/harness-test/reference.md +28 -4
- 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/codex/scripts/harness_test_runner.py +974 -0
- package/harness/bundles/general/codex/scripts/harness_workflow_policy.py +87 -0
- package/harness/bundles/general/cursor/.harness-build.json +1 -1
- package/harness/bundles/general/cursor/contracts/workflow-policy.json +34 -2
- 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 +26 -2
- package/harness/bundles/general/cursor/harness-test/checklist.md +15 -0
- package/harness/bundles/general/cursor/harness-test/reference.md +28 -4
- 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/general/cursor/scripts/harness_test_runner.py +974 -0
- package/harness/bundles/general/cursor/scripts/harness_workflow_policy.py +87 -0
- package/harness/bundles/java/claude-code/.harness-build.json +1 -1
- package/harness/bundles/java/claude-code/contracts/workflow-policy.json +34 -2
- 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 +26 -2
- 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/claude-code/scripts/harness_test_runner.py +974 -0
- package/harness/bundles/java/claude-code/scripts/harness_workflow_policy.py +87 -0
- package/harness/bundles/java/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/java/codebuddy/contracts/workflow-policy.json +34 -2
- 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 +26 -2
- 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/codebuddy/scripts/harness_test_runner.py +974 -0
- package/harness/bundles/java/codebuddy/scripts/harness_workflow_policy.py +87 -0
- package/harness/bundles/java/codex/.harness-build.json +1 -1
- package/harness/bundles/java/codex/contracts/workflow-policy.json +34 -2
- 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 +26 -2
- 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/codex/scripts/harness_test_runner.py +974 -0
- package/harness/bundles/java/codex/scripts/harness_workflow_policy.py +87 -0
- package/harness/bundles/java/cursor/.harness-build.json +1 -1
- package/harness/bundles/java/cursor/contracts/workflow-policy.json +34 -2
- 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 +26 -2
- 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/bundles/java/cursor/scripts/harness_test_runner.py +974 -0
- package/harness/bundles/java/cursor/scripts/harness_workflow_policy.py +87 -0
- package/harness/manifests/general/claude-code.json +34 -26
- package/harness/manifests/general/codebuddy.json +34 -26
- package/harness/manifests/general/codex.json +34 -26
- package/harness/manifests/general/cursor.json +34 -26
- package/harness/manifests/java/claude-code.json +34 -26
- package/harness/manifests/java/codebuddy.json +34 -26
- package/harness/manifests/java/codex.json +34 -26
- package/harness/manifests/java/cursor.json +34 -26
- 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": "codex",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.21",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "1d968792b476999f85660f85cddbfa8c63e38eddbd1747cfff43e4324d954e71"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "CONTEXT.md",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
{
|
|
21
21
|
"path": "contracts/workflow-policy.json",
|
|
22
|
-
"sha256": "
|
|
22
|
+
"sha256": "92574af8d7252527be8cd2871675fc02ab7c3df95a72dab93228f6f884844971"
|
|
23
23
|
},
|
|
24
24
|
{
|
|
25
25
|
"path": "harness-archive/checklist.md",
|
|
@@ -35,15 +35,15 @@
|
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
37
|
"path": "harness-archive/SKILL.md",
|
|
38
|
-
"sha256": "
|
|
38
|
+
"sha256": "b2b3c432a63e29add45551a2dc315254bd4b29d506162732e289856c87ef9d2c"
|
|
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": "6c524e488ca8ea2e95585992ba5b99b84076d367839637252fcead8e0733ba3f"
|
|
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": "64694f9ea73af8cedf994e9cddd9cb5c0e4fe815d1329154cdc94621ddeb7dbd"
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
125
|
"path": "harness-knowledge-query/SKILL.md",
|
|
126
|
-
"sha256": "
|
|
126
|
+
"sha256": "e037be5c8163dad31cf09c6d75c6fb1f121d73670ed4f579d19685ceae0d55ce"
|
|
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": "1c414d9abad09610600cce16b6c4f41696f34558c85f0c4c244b4ad8e5eeb11e"
|
|
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": "ae885be70ce9e98427673fedf749f7e624e1b15f5e540a3d896969e198908041"
|
|
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": "f386ce2a07fc682fdd3f446601b5d385ddfe9788c3fdd09b9410f7ef2e52856c"
|
|
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": "6a0949ac49deb421681cb4268d0d4a1abdfcf6d67430c821553f1f7c1eec9424"
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
189
|
"path": "harness-sync/reference.md",
|
|
@@ -191,11 +191,11 @@
|
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
"path": "harness-sync/SKILL.md",
|
|
194
|
-
"sha256": "
|
|
194
|
+
"sha256": "01ab7f26ecf4b359e50e470156a068bc7f2c557eca7560d7d54616b206a3b3a5"
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
197
|
"path": "harness-test/checklist.md",
|
|
198
|
-
"sha256": "
|
|
198
|
+
"sha256": "f974457a7aa094e1fbdb7d3039b0e8f3cacb777638603366e63a0aaf9a514aad"
|
|
199
199
|
},
|
|
200
200
|
{
|
|
201
201
|
"path": "harness-test/pitfalls-java.md",
|
|
@@ -207,7 +207,7 @@
|
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
"path": "harness-test/reference.md",
|
|
210
|
-
"sha256": "
|
|
210
|
+
"sha256": "b7cbfc91cff9ed7fef7b9cbee79f81e8cc588ffd956b531570eabef98ad24125"
|
|
211
211
|
},
|
|
212
212
|
{
|
|
213
213
|
"path": "harness-test/scripts/runtime-helpers.mjs",
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
},
|
|
216
216
|
{
|
|
217
217
|
"path": "harness-test/SKILL.md",
|
|
218
|
-
"sha256": "
|
|
218
|
+
"sha256": "1c4f4dfbb5212cad1bd13db73cc7508ae4bfa798ff48bfebe624eb21539b73f0"
|
|
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,11 +351,15 @@
|
|
|
347
351
|
},
|
|
348
352
|
{
|
|
349
353
|
"path": "scripts/harness_test_guard.py",
|
|
350
|
-
"sha256": "
|
|
354
|
+
"sha256": "426fd0002f643fc4b473f04f0c1164330de8a0c622cde7e07aad78d6a5e64df5"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"path": "scripts/harness_test_runner.py",
|
|
358
|
+
"sha256": "ba8b8b5628728593a1bcdab464b80b2a90536a909c0ce7df6a832f8ab16f08d1"
|
|
351
359
|
},
|
|
352
360
|
{
|
|
353
361
|
"path": "scripts/harness_workflow_policy.py",
|
|
354
|
-
"sha256": "
|
|
362
|
+
"sha256": "3c05971bccef2422217f88bf0d0a2e346248e46964474f20d383b95acec185da"
|
|
355
363
|
}
|
|
356
364
|
]
|
|
357
365
|
}
|
|
@@ -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.21",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "03f7c1d87174ba9ac801960bf8c873953d41b2ba4666a1c62149de29d3fec40b"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "CONTEXT.md",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
{
|
|
21
21
|
"path": "contracts/workflow-policy.json",
|
|
22
|
-
"sha256": "
|
|
22
|
+
"sha256": "92574af8d7252527be8cd2871675fc02ab7c3df95a72dab93228f6f884844971"
|
|
23
23
|
},
|
|
24
24
|
{
|
|
25
25
|
"path": "harness-archive/checklist.md",
|
|
@@ -35,15 +35,15 @@
|
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
37
|
"path": "harness-archive/SKILL.md",
|
|
38
|
-
"sha256": "
|
|
38
|
+
"sha256": "49c46d7d28b004b7666c0a718ab05f7631b0fc727d0957bab936428993435e16"
|
|
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": "366120626dad7573485bb0c0ee281dcf60003430f84cb6a93858a6b58a14d230"
|
|
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": "cfefe4419b0da08e05fd7397a22ecca0ce6b80f332e04c6ac70750e72fa5a8bd"
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
125
|
"path": "harness-knowledge-query/SKILL.md",
|
|
126
|
-
"sha256": "
|
|
126
|
+
"sha256": "1acd7d7a75de561f234987f5dcaef518ff94615bcae90bdf8740de30c0ca7f50"
|
|
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": "bdc9de05df1ba14ed86bbf7c6796588cf356ed425cfd10b4a0489b2c152b4573"
|
|
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": "3c50f7ea07c3a4db8845ff117682b34dc9edda008dcccbb3a86a0db3dedf4a9d"
|
|
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": "a3f0dbe45af197aa188159196afe40faaaf2dff1edd57f2bff242bbae4c2aeff"
|
|
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": "70dba54d6ded2404dae165c44c895fb36db59eca8e457df4f4bd5faf5320eb7b"
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
189
|
"path": "harness-sync/reference.md",
|
|
@@ -191,11 +191,11 @@
|
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
"path": "harness-sync/SKILL.md",
|
|
194
|
-
"sha256": "
|
|
194
|
+
"sha256": "41601b2de5b582c900afd3fb3db429a51a5514ac8b7dbf30df415053d0306eeb"
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
197
|
"path": "harness-test/checklist.md",
|
|
198
|
-
"sha256": "
|
|
198
|
+
"sha256": "f974457a7aa094e1fbdb7d3039b0e8f3cacb777638603366e63a0aaf9a514aad"
|
|
199
199
|
},
|
|
200
200
|
{
|
|
201
201
|
"path": "harness-test/pitfalls-java.md",
|
|
@@ -207,7 +207,7 @@
|
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
"path": "harness-test/reference.md",
|
|
210
|
-
"sha256": "
|
|
210
|
+
"sha256": "b7cbfc91cff9ed7fef7b9cbee79f81e8cc588ffd956b531570eabef98ad24125"
|
|
211
211
|
},
|
|
212
212
|
{
|
|
213
213
|
"path": "harness-test/scripts/runtime-helpers.mjs",
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
},
|
|
216
216
|
{
|
|
217
217
|
"path": "harness-test/SKILL.md",
|
|
218
|
-
"sha256": "
|
|
218
|
+
"sha256": "4fccced621bf0cf4b880d4c7ecf66c1532109d4dabee28e33a790bd7662f53cc"
|
|
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,11 +351,15 @@
|
|
|
347
351
|
},
|
|
348
352
|
{
|
|
349
353
|
"path": "scripts/harness_test_guard.py",
|
|
350
|
-
"sha256": "
|
|
354
|
+
"sha256": "426fd0002f643fc4b473f04f0c1164330de8a0c622cde7e07aad78d6a5e64df5"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"path": "scripts/harness_test_runner.py",
|
|
358
|
+
"sha256": "ba8b8b5628728593a1bcdab464b80b2a90536a909c0ce7df6a832f8ab16f08d1"
|
|
351
359
|
},
|
|
352
360
|
{
|
|
353
361
|
"path": "scripts/harness_workflow_policy.py",
|
|
354
|
-
"sha256": "
|
|
362
|
+
"sha256": "3c05971bccef2422217f88bf0d0a2e346248e46964474f20d383b95acec185da"
|
|
355
363
|
}
|
|
356
364
|
]
|
|
357
365
|
}
|
|
@@ -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.21",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "15a5e4fe53f1c136d6f399813554b5df8cf6b4c48790e0382716909060303531"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "agents/harness-evaluator.md",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
33
|
"path": "contracts/workflow-policy.json",
|
|
34
|
-
"sha256": "
|
|
34
|
+
"sha256": "92574af8d7252527be8cd2871675fc02ab7c3df95a72dab93228f6f884844971"
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
37
|
"path": "harness-apidoc/checklist.md",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
"path": "harness-apidoc/SKILL.md",
|
|
46
|
-
"sha256": "
|
|
46
|
+
"sha256": "19739262d5d87d48169e514bb197f035c3e1e839897bc2103ce3b70c29d3f8a3"
|
|
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": "b1d5e5c7388a0613a496eac9d8eea781d93e679aa017c62b39839595dff3f7d2"
|
|
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": "960fd20baa44615da8074a9be3c3b42c6811315ce101ecba499f6b35ca74aed6"
|
|
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": "590f3bdd2b4dc5d5eb020e00a0c4a1cf997bd94659f90ac180b737eebbbdbf9b"
|
|
147
147
|
},
|
|
148
148
|
{
|
|
149
149
|
"path": "harness-knowledge-query/SKILL.md",
|
|
150
|
-
"sha256": "
|
|
150
|
+
"sha256": "dd0415403f622e14673cf643d590eeaaba049d8e18264cf20dd3442a3244db9b"
|
|
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": "be77c43b5bb90a0a34041d18df373cbe3a23cc389703384b8c56bb0a2549198d"
|
|
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": "5e34ab246f7f268e6601c11449ddf88d41f6fd09b4b25458287dad1d8550d724"
|
|
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": "d5632ed04c37b5647904429202460a604a37bb6c7ed9d3f1a7b5f9232ce0fc29"
|
|
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": "b26daab01cc858de6bbfd92f67227a62c3114ad38282a814fcb7213370b961cf"
|
|
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": "9d7f88a6633a3000958124dff8ce00738698bd809756fb9bcf1ddef9c825d27d"
|
|
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": "113ff65364784ae01cc6ca5ec898441257e4ed1b947902143028c4504ae07ee1"
|
|
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": "128f79dba2a7ed98384093ccf2793cc3eab65f5f39fcaefdcd8293b230b10374"
|
|
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,11 +387,15 @@
|
|
|
383
387
|
},
|
|
384
388
|
{
|
|
385
389
|
"path": "scripts/harness_test_guard.py",
|
|
386
|
-
"sha256": "
|
|
390
|
+
"sha256": "426fd0002f643fc4b473f04f0c1164330de8a0c622cde7e07aad78d6a5e64df5"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"path": "scripts/harness_test_runner.py",
|
|
394
|
+
"sha256": "ba8b8b5628728593a1bcdab464b80b2a90536a909c0ce7df6a832f8ab16f08d1"
|
|
387
395
|
},
|
|
388
396
|
{
|
|
389
397
|
"path": "scripts/harness_workflow_policy.py",
|
|
390
|
-
"sha256": "
|
|
398
|
+
"sha256": "3c05971bccef2422217f88bf0d0a2e346248e46964474f20d383b95acec185da"
|
|
391
399
|
}
|
|
392
400
|
]
|
|
393
401
|
}
|