@hunter-harness/workflow-harness 0.2.54 → 0.2.56
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/README.md +3 -3
- package/harness/bundles/general/claude-code/contracts/workflow-policy.json +1 -1
- package/harness/bundles/general/claude-code/harness-archive/SKILL.md +21 -33
- package/harness/bundles/general/claude-code/harness-archive/checklist.md +6 -10
- 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-query/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-plan/SKILL.md +7 -3
- package/harness/bundles/general/claude-code/harness-plan/checklist.md +2 -1
- package/harness/bundles/general/claude-code/harness-review/SKILL.md +8 -4
- package/harness/bundles/general/claude-code/harness-run/SKILL.md +9 -7
- package/harness/bundles/general/claude-code/harness-run/checklist.md +1 -1
- package/harness/bundles/general/claude-code/harness-run/reference.md +3 -3
- package/harness/bundles/general/claude-code/harness-submit/SKILL.md +6 -6
- package/harness/bundles/general/claude-code/harness-submit/checklist.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 +8 -6
- package/harness/bundles/general/claude-code/harness-test/checklist.md +1 -1
- package/harness/bundles/general/claude-code/harness-test/reference.md +2 -2
- package/harness/bundles/general/claude-code/protocols/ledger-protocol.md +3 -3
- package/harness/bundles/general/claude-code/scripts/harness_archive.py +322 -74
- package/harness/bundles/general/claude-code/scripts/harness_context.py +236 -63
- package/harness/bundles/general/claude-code/scripts/harness_events.py +86 -5
- package/harness/bundles/general/claude-code/scripts/harness_events_sync.py +201 -17
- package/harness/bundles/general/claude-code/scripts/harness_fixback.py +189 -1
- package/harness/bundles/general/claude-code/scripts/harness_gate.py +353 -3
- package/harness/bundles/general/claude-code/scripts/harness_ledger.py +195 -11
- package/harness/bundles/general/claude-code/scripts/harness_plan_finalize.py +82 -0
- package/harness/bundles/general/claude-code/scripts/harness_test_guard.py +37 -44
- package/harness/bundles/general/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/general/codebuddy/README.md +3 -3
- package/harness/bundles/general/codebuddy/contracts/workflow-policy.json +1 -1
- package/harness/bundles/general/codebuddy/harness-archive/SKILL.md +21 -33
- package/harness/bundles/general/codebuddy/harness-archive/checklist.md +6 -10
- 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-query/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-plan/SKILL.md +7 -3
- package/harness/bundles/general/codebuddy/harness-plan/checklist.md +2 -1
- package/harness/bundles/general/codebuddy/harness-review/SKILL.md +8 -4
- package/harness/bundles/general/codebuddy/harness-run/SKILL.md +9 -7
- package/harness/bundles/general/codebuddy/harness-run/checklist.md +1 -1
- package/harness/bundles/general/codebuddy/harness-run/reference.md +3 -3
- package/harness/bundles/general/codebuddy/harness-submit/SKILL.md +6 -6
- package/harness/bundles/general/codebuddy/harness-submit/checklist.md +1 -1
- package/harness/bundles/general/codebuddy/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-test/SKILL.md +8 -6
- package/harness/bundles/general/codebuddy/harness-test/checklist.md +1 -1
- package/harness/bundles/general/codebuddy/harness-test/reference.md +2 -2
- package/harness/bundles/general/codebuddy/protocols/ledger-protocol.md +3 -3
- package/harness/bundles/general/codebuddy/scripts/harness_archive.py +322 -74
- package/harness/bundles/general/codebuddy/scripts/harness_context.py +236 -63
- package/harness/bundles/general/codebuddy/scripts/harness_events.py +86 -5
- package/harness/bundles/general/codebuddy/scripts/harness_events_sync.py +201 -17
- package/harness/bundles/general/codebuddy/scripts/harness_fixback.py +189 -1
- package/harness/bundles/general/codebuddy/scripts/harness_gate.py +353 -3
- package/harness/bundles/general/codebuddy/scripts/harness_ledger.py +195 -11
- package/harness/bundles/general/codebuddy/scripts/harness_plan_finalize.py +82 -0
- package/harness/bundles/general/codebuddy/scripts/harness_test_guard.py +37 -44
- package/harness/bundles/general/codex/.harness-build.json +1 -1
- package/harness/bundles/general/codex/README.md +3 -3
- package/harness/bundles/general/codex/contracts/workflow-policy.json +1 -1
- package/harness/bundles/general/codex/harness-archive/SKILL.md +21 -33
- package/harness/bundles/general/codex/harness-archive/checklist.md +6 -10
- 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-query/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-plan/SKILL.md +7 -3
- package/harness/bundles/general/codex/harness-plan/checklist.md +2 -1
- package/harness/bundles/general/codex/harness-review/SKILL.md +4 -4
- package/harness/bundles/general/codex/harness-run/SKILL.md +9 -7
- package/harness/bundles/general/codex/harness-run/checklist.md +1 -1
- package/harness/bundles/general/codex/harness-run/reference.md +3 -3
- package/harness/bundles/general/codex/harness-submit/SKILL.md +6 -6
- package/harness/bundles/general/codex/harness-submit/checklist.md +1 -1
- package/harness/bundles/general/codex/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-test/SKILL.md +8 -6
- package/harness/bundles/general/codex/harness-test/checklist.md +1 -1
- package/harness/bundles/general/codex/harness-test/reference.md +2 -2
- package/harness/bundles/general/codex/protocols/ledger-protocol.md +3 -3
- package/harness/bundles/general/codex/scripts/harness_archive.py +322 -74
- package/harness/bundles/general/codex/scripts/harness_context.py +236 -63
- package/harness/bundles/general/codex/scripts/harness_events.py +86 -5
- package/harness/bundles/general/codex/scripts/harness_events_sync.py +201 -17
- package/harness/bundles/general/codex/scripts/harness_fixback.py +189 -1
- package/harness/bundles/general/codex/scripts/harness_gate.py +353 -3
- package/harness/bundles/general/codex/scripts/harness_ledger.py +195 -11
- package/harness/bundles/general/codex/scripts/harness_plan_finalize.py +82 -0
- package/harness/bundles/general/codex/scripts/harness_test_guard.py +37 -44
- package/harness/bundles/general/cursor/.harness-build.json +1 -1
- package/harness/bundles/general/cursor/README.md +3 -3
- package/harness/bundles/general/cursor/contracts/workflow-policy.json +1 -1
- package/harness/bundles/general/cursor/harness-archive/SKILL.md +21 -33
- package/harness/bundles/general/cursor/harness-archive/checklist.md +6 -10
- 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-query/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-plan/SKILL.md +7 -3
- package/harness/bundles/general/cursor/harness-plan/checklist.md +2 -1
- package/harness/bundles/general/cursor/harness-review/SKILL.md +4 -4
- package/harness/bundles/general/cursor/harness-run/SKILL.md +9 -7
- package/harness/bundles/general/cursor/harness-run/checklist.md +1 -1
- package/harness/bundles/general/cursor/harness-run/reference.md +3 -3
- package/harness/bundles/general/cursor/harness-submit/SKILL.md +6 -6
- package/harness/bundles/general/cursor/harness-submit/checklist.md +1 -1
- package/harness/bundles/general/cursor/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-test/SKILL.md +8 -6
- package/harness/bundles/general/cursor/harness-test/checklist.md +1 -1
- package/harness/bundles/general/cursor/harness-test/reference.md +2 -2
- package/harness/bundles/general/cursor/protocols/ledger-protocol.md +3 -3
- package/harness/bundles/general/cursor/scripts/harness_archive.py +322 -74
- package/harness/bundles/general/cursor/scripts/harness_context.py +236 -63
- package/harness/bundles/general/cursor/scripts/harness_events.py +86 -5
- package/harness/bundles/general/cursor/scripts/harness_events_sync.py +201 -17
- package/harness/bundles/general/cursor/scripts/harness_fixback.py +189 -1
- package/harness/bundles/general/cursor/scripts/harness_gate.py +353 -3
- package/harness/bundles/general/cursor/scripts/harness_ledger.py +195 -11
- package/harness/bundles/general/cursor/scripts/harness_plan_finalize.py +82 -0
- package/harness/bundles/general/cursor/scripts/harness_test_guard.py +37 -44
- package/harness/bundles/java/claude-code/.harness-build.json +1 -1
- package/harness/bundles/java/claude-code/README.md +3 -3
- package/harness/bundles/java/claude-code/contracts/workflow-policy.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 +21 -33
- package/harness/bundles/java/claude-code/harness-archive/checklist.md +6 -10
- 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-query/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-package/checklist.md +1 -1
- package/harness/bundles/java/claude-code/harness-plan/SKILL.md +7 -3
- package/harness/bundles/java/claude-code/harness-plan/checklist.md +2 -1
- package/harness/bundles/java/claude-code/harness-review/SKILL.md +8 -4
- package/harness/bundles/java/claude-code/harness-run/SKILL.md +9 -7
- package/harness/bundles/java/claude-code/harness-run/checklist.md +1 -1
- package/harness/bundles/java/claude-code/harness-run/reference.md +2 -2
- package/harness/bundles/java/claude-code/harness-submit/SKILL.md +6 -6
- package/harness/bundles/java/claude-code/harness-submit/checklist.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 +8 -6
- package/harness/bundles/java/claude-code/harness-test/checklist.md +1 -1
- package/harness/bundles/java/claude-code/harness-test/reference.md +1 -1
- package/harness/bundles/java/claude-code/protocols/ledger-protocol.md +3 -3
- package/harness/bundles/java/claude-code/scripts/harness_archive.py +322 -74
- package/harness/bundles/java/claude-code/scripts/harness_context.py +236 -63
- package/harness/bundles/java/claude-code/scripts/harness_events.py +86 -5
- package/harness/bundles/java/claude-code/scripts/harness_events_sync.py +201 -17
- package/harness/bundles/java/claude-code/scripts/harness_fixback.py +189 -1
- package/harness/bundles/java/claude-code/scripts/harness_gate.py +353 -3
- package/harness/bundles/java/claude-code/scripts/harness_ledger.py +195 -11
- package/harness/bundles/java/claude-code/scripts/harness_plan_finalize.py +82 -0
- package/harness/bundles/java/claude-code/scripts/harness_test_guard.py +37 -44
- package/harness/bundles/java/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/java/codebuddy/README.md +3 -3
- package/harness/bundles/java/codebuddy/contracts/workflow-policy.json +1 -1
- package/harness/bundles/java/codebuddy/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-archive/SKILL.md +21 -33
- package/harness/bundles/java/codebuddy/harness-archive/checklist.md +6 -10
- 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-query/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-package/checklist.md +1 -1
- package/harness/bundles/java/codebuddy/harness-plan/SKILL.md +7 -3
- package/harness/bundles/java/codebuddy/harness-plan/checklist.md +2 -1
- package/harness/bundles/java/codebuddy/harness-review/SKILL.md +8 -4
- package/harness/bundles/java/codebuddy/harness-run/SKILL.md +9 -7
- package/harness/bundles/java/codebuddy/harness-run/checklist.md +1 -1
- package/harness/bundles/java/codebuddy/harness-run/reference.md +2 -2
- package/harness/bundles/java/codebuddy/harness-submit/SKILL.md +6 -6
- package/harness/bundles/java/codebuddy/harness-submit/checklist.md +1 -1
- package/harness/bundles/java/codebuddy/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-test/SKILL.md +8 -6
- package/harness/bundles/java/codebuddy/harness-test/checklist.md +1 -1
- package/harness/bundles/java/codebuddy/harness-test/reference.md +1 -1
- package/harness/bundles/java/codebuddy/protocols/ledger-protocol.md +3 -3
- package/harness/bundles/java/codebuddy/scripts/harness_archive.py +322 -74
- package/harness/bundles/java/codebuddy/scripts/harness_context.py +236 -63
- package/harness/bundles/java/codebuddy/scripts/harness_events.py +86 -5
- package/harness/bundles/java/codebuddy/scripts/harness_events_sync.py +201 -17
- package/harness/bundles/java/codebuddy/scripts/harness_fixback.py +189 -1
- package/harness/bundles/java/codebuddy/scripts/harness_gate.py +353 -3
- package/harness/bundles/java/codebuddy/scripts/harness_ledger.py +195 -11
- package/harness/bundles/java/codebuddy/scripts/harness_plan_finalize.py +82 -0
- package/harness/bundles/java/codebuddy/scripts/harness_test_guard.py +37 -44
- package/harness/bundles/java/codex/.harness-build.json +1 -1
- package/harness/bundles/java/codex/README.md +3 -3
- package/harness/bundles/java/codex/contracts/workflow-policy.json +1 -1
- package/harness/bundles/java/codex/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-archive/SKILL.md +21 -33
- package/harness/bundles/java/codex/harness-archive/checklist.md +6 -10
- 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-query/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-package/checklist.md +1 -1
- package/harness/bundles/java/codex/harness-plan/SKILL.md +7 -3
- package/harness/bundles/java/codex/harness-plan/checklist.md +2 -1
- package/harness/bundles/java/codex/harness-review/SKILL.md +4 -4
- package/harness/bundles/java/codex/harness-run/SKILL.md +9 -7
- package/harness/bundles/java/codex/harness-run/checklist.md +1 -1
- package/harness/bundles/java/codex/harness-run/reference.md +2 -2
- package/harness/bundles/java/codex/harness-submit/SKILL.md +6 -6
- package/harness/bundles/java/codex/harness-submit/checklist.md +1 -1
- package/harness/bundles/java/codex/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-test/SKILL.md +8 -6
- package/harness/bundles/java/codex/harness-test/checklist.md +1 -1
- package/harness/bundles/java/codex/harness-test/reference.md +1 -1
- package/harness/bundles/java/codex/protocols/ledger-protocol.md +3 -3
- package/harness/bundles/java/codex/scripts/harness_archive.py +322 -74
- package/harness/bundles/java/codex/scripts/harness_context.py +236 -63
- package/harness/bundles/java/codex/scripts/harness_events.py +86 -5
- package/harness/bundles/java/codex/scripts/harness_events_sync.py +201 -17
- package/harness/bundles/java/codex/scripts/harness_fixback.py +189 -1
- package/harness/bundles/java/codex/scripts/harness_gate.py +353 -3
- package/harness/bundles/java/codex/scripts/harness_ledger.py +195 -11
- package/harness/bundles/java/codex/scripts/harness_plan_finalize.py +82 -0
- package/harness/bundles/java/codex/scripts/harness_test_guard.py +37 -44
- package/harness/bundles/java/cursor/.harness-build.json +1 -1
- package/harness/bundles/java/cursor/README.md +3 -3
- package/harness/bundles/java/cursor/contracts/workflow-policy.json +1 -1
- package/harness/bundles/java/cursor/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-archive/SKILL.md +21 -33
- package/harness/bundles/java/cursor/harness-archive/checklist.md +6 -10
- 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-query/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-package/checklist.md +1 -1
- package/harness/bundles/java/cursor/harness-plan/SKILL.md +7 -3
- package/harness/bundles/java/cursor/harness-plan/checklist.md +2 -1
- package/harness/bundles/java/cursor/harness-review/SKILL.md +4 -4
- package/harness/bundles/java/cursor/harness-run/SKILL.md +9 -7
- package/harness/bundles/java/cursor/harness-run/checklist.md +1 -1
- package/harness/bundles/java/cursor/harness-run/reference.md +2 -2
- package/harness/bundles/java/cursor/harness-submit/SKILL.md +6 -6
- package/harness/bundles/java/cursor/harness-submit/checklist.md +1 -1
- package/harness/bundles/java/cursor/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-test/SKILL.md +8 -6
- package/harness/bundles/java/cursor/harness-test/checklist.md +1 -1
- package/harness/bundles/java/cursor/harness-test/reference.md +1 -1
- package/harness/bundles/java/cursor/protocols/ledger-protocol.md +3 -3
- package/harness/bundles/java/cursor/scripts/harness_archive.py +322 -74
- package/harness/bundles/java/cursor/scripts/harness_context.py +236 -63
- package/harness/bundles/java/cursor/scripts/harness_events.py +86 -5
- package/harness/bundles/java/cursor/scripts/harness_events_sync.py +201 -17
- package/harness/bundles/java/cursor/scripts/harness_fixback.py +189 -1
- package/harness/bundles/java/cursor/scripts/harness_gate.py +353 -3
- package/harness/bundles/java/cursor/scripts/harness_ledger.py +195 -11
- package/harness/bundles/java/cursor/scripts/harness_plan_finalize.py +82 -0
- package/harness/bundles/java/cursor/scripts/harness_test_guard.py +37 -44
- package/harness/manifests/general/claude-code.json +32 -32
- package/harness/manifests/general/codebuddy.json +32 -32
- package/harness/manifests/general/codex.json +32 -32
- package/harness/manifests/general/cursor.json +32 -32
- package/harness/manifests/java/claude-code.json +35 -35
- package/harness/manifests/java/codebuddy.json +35 -35
- package/harness/manifests/java/codex.json +35 -35
- package/harness/manifests/java/cursor.json +35 -35
- package/hunter-workflow-family.json +5 -4
- package/package.json +1 -1
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "codex",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.45",
|
|
6
6
|
"requires": {
|
|
7
|
-
"minimumCliVersion": "0.2.
|
|
7
|
+
"minimumCliVersion": "0.2.62",
|
|
8
8
|
"capabilities": [
|
|
9
9
|
"sync@2",
|
|
10
10
|
"rules-sync@1",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"files": [
|
|
24
24
|
{
|
|
25
25
|
"path": ".harness-build.json",
|
|
26
|
-
"sha256": "
|
|
26
|
+
"sha256": "430033dac6882906cec83e62b1b7c1ec11882acfffa2e9ae0b8aee342ed728cc"
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
29
|
"path": "CONTEXT.md",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
69
|
"path": "contracts/workflow-policy.json",
|
|
70
|
-
"sha256": "
|
|
70
|
+
"sha256": "3da83c2d769d536cb8bf356f1a03f0ad08eb19ff385ac36960bf53b5083b4f32"
|
|
71
71
|
},
|
|
72
72
|
{
|
|
73
73
|
"path": "harness-apidoc/checklist.md",
|
|
@@ -79,11 +79,11 @@
|
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
81
|
"path": "harness-apidoc/SKILL.md",
|
|
82
|
-
"sha256": "
|
|
82
|
+
"sha256": "5e52778e66bda2f1cea0ed13239d6887cb1e2cff28af21711220dc4264adb345"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
85
85
|
"path": "harness-archive/checklist.md",
|
|
86
|
-
"sha256": "
|
|
86
|
+
"sha256": "05d320f6558fd1cd75f75ffc05574c20c2d5737393068cab76185860c9056b9e"
|
|
87
87
|
},
|
|
88
88
|
{
|
|
89
89
|
"path": "harness-archive/reference.md",
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
},
|
|
96
96
|
{
|
|
97
97
|
"path": "harness-archive/SKILL.md",
|
|
98
|
-
"sha256": "
|
|
98
|
+
"sha256": "61a42dd4b265d0b6c31dea4f7285ffa252b9cf7ab396e894c1ee83234e525a07"
|
|
99
99
|
},
|
|
100
100
|
{
|
|
101
101
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
117
|
"path": "harness-codebase-map/SKILL.md",
|
|
118
|
-
"sha256": "
|
|
118
|
+
"sha256": "a3436cdc80a7902b8f9938507437d66fdc174b4e94e09464a818d6487d3c74e9"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
121
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -155,15 +155,15 @@
|
|
|
155
155
|
},
|
|
156
156
|
{
|
|
157
157
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
158
|
-
"sha256": "
|
|
158
|
+
"sha256": "bd1595faf55b33f0838b5a5342f22d7ad9f6519176eb1c85232ea3f8f7c2a458"
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
161
|
"path": "harness-knowledge-query/SKILL.md",
|
|
162
|
-
"sha256": "
|
|
162
|
+
"sha256": "f46639959851ab3b23953cca40f537f1e575655f7ef8a072e5dd0ad26740ee49"
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
165
|
"path": "harness-package/checklist.md",
|
|
166
|
-
"sha256": "
|
|
166
|
+
"sha256": "4a38b72d6b5146b9068d6d19cbbb5a2a51f31135dcf2398f38206e36e7821250"
|
|
167
167
|
},
|
|
168
168
|
{
|
|
169
169
|
"path": "harness-package/reference.md",
|
|
@@ -171,11 +171,11 @@
|
|
|
171
171
|
},
|
|
172
172
|
{
|
|
173
173
|
"path": "harness-package/SKILL.md",
|
|
174
|
-
"sha256": "
|
|
174
|
+
"sha256": "bc3890d5b49858c778006780b1f015c45ae9850f772b6bb6b06ec769e04b5bad"
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
177
|
"path": "harness-plan/checklist.md",
|
|
178
|
-
"sha256": "
|
|
178
|
+
"sha256": "03584061a5d51b9c4349f13cbe66e757dd29bfc64ed6a4510f0bd731afd76568"
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"path": "harness-plan/protocols.md",
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
189
|
"path": "harness-plan/SKILL.md",
|
|
190
|
-
"sha256": "
|
|
190
|
+
"sha256": "3c7f0fd1f863248ff5e2cf5721639f87f91e634c1de76d446d7690e8651d70c1"
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
"path": "harness-review/checklist.md",
|
|
@@ -203,11 +203,11 @@
|
|
|
203
203
|
},
|
|
204
204
|
{
|
|
205
205
|
"path": "harness-review/SKILL.md",
|
|
206
|
-
"sha256": "
|
|
206
|
+
"sha256": "6ced44c834dde53dea7cfcd8f7fd84dc7acd03ca093431cb86e56437d3292ebe"
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
"path": "harness-run/checklist.md",
|
|
210
|
-
"sha256": "
|
|
210
|
+
"sha256": "e5a3dad819f7638b2b8e1930289dc7e8db98ff2266b249e7120fb30d9de9a410"
|
|
211
211
|
},
|
|
212
212
|
{
|
|
213
213
|
"path": "harness-run/protocols.md",
|
|
@@ -215,15 +215,15 @@
|
|
|
215
215
|
},
|
|
216
216
|
{
|
|
217
217
|
"path": "harness-run/reference.md",
|
|
218
|
-
"sha256": "
|
|
218
|
+
"sha256": "cb9c27a489449b8366d1bec7b474319837d552949f7f8adaf68f8f1b80507d50"
|
|
219
219
|
},
|
|
220
220
|
{
|
|
221
221
|
"path": "harness-run/SKILL.md",
|
|
222
|
-
"sha256": "
|
|
222
|
+
"sha256": "6a82cefef01a7602f175b9d2fadc69d8f052b0a88d934af9dfd6c27d813fa17a"
|
|
223
223
|
},
|
|
224
224
|
{
|
|
225
225
|
"path": "harness-submit/checklist.md",
|
|
226
|
-
"sha256": "
|
|
226
|
+
"sha256": "63aded0d06b986c28a54783ec5b5dca55a8b20d7966029a517bc35c5b3cf11a3"
|
|
227
227
|
},
|
|
228
228
|
{
|
|
229
229
|
"path": "harness-submit/reference.md",
|
|
@@ -231,7 +231,7 @@
|
|
|
231
231
|
},
|
|
232
232
|
{
|
|
233
233
|
"path": "harness-submit/SKILL.md",
|
|
234
|
-
"sha256": "
|
|
234
|
+
"sha256": "e2ddd91443a345a5aaf2c1f3b8df0625cf10172f182f92b7029702d0581e380a"
|
|
235
235
|
},
|
|
236
236
|
{
|
|
237
237
|
"path": "harness-sync/reference.md",
|
|
@@ -239,11 +239,11 @@
|
|
|
239
239
|
},
|
|
240
240
|
{
|
|
241
241
|
"path": "harness-sync/SKILL.md",
|
|
242
|
-
"sha256": "
|
|
242
|
+
"sha256": "f885d6c981df771c80cef3f94bc4994ffc16bf3c76b07869f472b357373f3bae"
|
|
243
243
|
},
|
|
244
244
|
{
|
|
245
245
|
"path": "harness-test/checklist.md",
|
|
246
|
-
"sha256": "
|
|
246
|
+
"sha256": "a1c3b325b61b6824a8f2796a2a53f75169ea78f99735f198159c85919e5629e8"
|
|
247
247
|
},
|
|
248
248
|
{
|
|
249
249
|
"path": "harness-test/pitfalls-java.md",
|
|
@@ -255,7 +255,7 @@
|
|
|
255
255
|
},
|
|
256
256
|
{
|
|
257
257
|
"path": "harness-test/reference.md",
|
|
258
|
-
"sha256": "
|
|
258
|
+
"sha256": "af976c3e5dc19862a878ef97be5edded4ac12130118c97b586c9f5b375937129"
|
|
259
259
|
},
|
|
260
260
|
{
|
|
261
261
|
"path": "harness-test/scripts/runtime-helpers.mjs",
|
|
@@ -263,7 +263,7 @@
|
|
|
263
263
|
},
|
|
264
264
|
{
|
|
265
265
|
"path": "harness-test/SKILL.md",
|
|
266
|
-
"sha256": "
|
|
266
|
+
"sha256": "52b4514b59201f26b041f5cdd3dfc107c3e2e17834b9ba979e1acec941e93c6f"
|
|
267
267
|
},
|
|
268
268
|
{
|
|
269
269
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -287,7 +287,7 @@
|
|
|
287
287
|
},
|
|
288
288
|
{
|
|
289
289
|
"path": "protocols/ledger-protocol.md",
|
|
290
|
-
"sha256": "
|
|
290
|
+
"sha256": "bae14e9cb7422bf9e29551929af258948653ddc44624cc28efadefc5d189d358"
|
|
291
291
|
},
|
|
292
292
|
{
|
|
293
293
|
"path": "protocols/memory-closeout-protocol.md",
|
|
@@ -327,7 +327,7 @@
|
|
|
327
327
|
},
|
|
328
328
|
{
|
|
329
329
|
"path": "README.md",
|
|
330
|
-
"sha256": "
|
|
330
|
+
"sha256": "fe2b4a245c7820f3f21886580c17455a95d8411844fcc4e3932d7de0ad491b10"
|
|
331
331
|
},
|
|
332
332
|
{
|
|
333
333
|
"path": "scripts/harness_apidoc.py",
|
|
@@ -335,7 +335,7 @@
|
|
|
335
335
|
},
|
|
336
336
|
{
|
|
337
337
|
"path": "scripts/harness_archive.py",
|
|
338
|
-
"sha256": "
|
|
338
|
+
"sha256": "6ca1f096e69a61b356368c9c8e56859564087ac25b5fedc2edf71c289386d35c"
|
|
339
339
|
},
|
|
340
340
|
{
|
|
341
341
|
"path": "scripts/harness_change.py",
|
|
@@ -347,7 +347,7 @@
|
|
|
347
347
|
},
|
|
348
348
|
{
|
|
349
349
|
"path": "scripts/harness_context.py",
|
|
350
|
-
"sha256": "
|
|
350
|
+
"sha256": "da936a9a2c033b2b84adea124a3990e382cfd24ccc1036b87a5dc48b0c7de82a"
|
|
351
351
|
},
|
|
352
352
|
{
|
|
353
353
|
"path": "scripts/harness_deploy.py",
|
|
@@ -363,11 +363,11 @@
|
|
|
363
363
|
},
|
|
364
364
|
{
|
|
365
365
|
"path": "scripts/harness_events_sync.py",
|
|
366
|
-
"sha256": "
|
|
366
|
+
"sha256": "4f3883f72c656e634b9999ec62272406263474ad3915caf66779d4dbba369f13"
|
|
367
367
|
},
|
|
368
368
|
{
|
|
369
369
|
"path": "scripts/harness_events.py",
|
|
370
|
-
"sha256": "
|
|
370
|
+
"sha256": "e7cbbe346ea9b208d4228219d78857840f862f829e5173ba17f61fb50b3c4794"
|
|
371
371
|
},
|
|
372
372
|
{
|
|
373
373
|
"path": "scripts/harness_execution_contracts.py",
|
|
@@ -375,11 +375,11 @@
|
|
|
375
375
|
},
|
|
376
376
|
{
|
|
377
377
|
"path": "scripts/harness_fixback.py",
|
|
378
|
-
"sha256": "
|
|
378
|
+
"sha256": "68928ccb60b9a3bea112bf277303a90303ea80f024c569a5444eeebe2064aad2"
|
|
379
379
|
},
|
|
380
380
|
{
|
|
381
381
|
"path": "scripts/harness_gate.py",
|
|
382
|
-
"sha256": "
|
|
382
|
+
"sha256": "aaf672fd00aa7bdb85454762cfa9e5297a0c19ae16bf90beea1fcb80a5f842a1"
|
|
383
383
|
},
|
|
384
384
|
{
|
|
385
385
|
"path": "scripts/harness_headless.py",
|
|
@@ -391,7 +391,7 @@
|
|
|
391
391
|
},
|
|
392
392
|
{
|
|
393
393
|
"path": "scripts/harness_ledger.py",
|
|
394
|
-
"sha256": "
|
|
394
|
+
"sha256": "a51f072959e383b18319fd879f55a8a20d6e44495002da4a3a735b4d66e72f27"
|
|
395
395
|
},
|
|
396
396
|
{
|
|
397
397
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -415,7 +415,7 @@
|
|
|
415
415
|
},
|
|
416
416
|
{
|
|
417
417
|
"path": "scripts/harness_plan_finalize.py",
|
|
418
|
-
"sha256": "
|
|
418
|
+
"sha256": "a71a1c7779946e51907bff724c4f6adf37d7be64bcf2a2a0039f0db9b771a09f"
|
|
419
419
|
},
|
|
420
420
|
{
|
|
421
421
|
"path": "scripts/harness_preflight.py",
|
|
@@ -463,7 +463,7 @@
|
|
|
463
463
|
},
|
|
464
464
|
{
|
|
465
465
|
"path": "scripts/harness_test_guard.py",
|
|
466
|
-
"sha256": "
|
|
466
|
+
"sha256": "a6ef4107e6ee32038753262623d2ff01c86cc640b42183c7117ed0da943c5742"
|
|
467
467
|
},
|
|
468
468
|
{
|
|
469
469
|
"path": "scripts/harness_test_runner.py",
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "cursor",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.45",
|
|
6
6
|
"requires": {
|
|
7
|
-
"minimumCliVersion": "0.2.
|
|
7
|
+
"minimumCliVersion": "0.2.62",
|
|
8
8
|
"capabilities": [
|
|
9
9
|
"sync@2",
|
|
10
10
|
"rules-sync@1",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"files": [
|
|
24
24
|
{
|
|
25
25
|
"path": ".harness-build.json",
|
|
26
|
-
"sha256": "
|
|
26
|
+
"sha256": "3ce03b5c15047502823a4ef9f840308020fbb88162fe1884795f4d0e81fb4f52"
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
29
|
"path": "CONTEXT.md",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
69
|
"path": "contracts/workflow-policy.json",
|
|
70
|
-
"sha256": "
|
|
70
|
+
"sha256": "3da83c2d769d536cb8bf356f1a03f0ad08eb19ff385ac36960bf53b5083b4f32"
|
|
71
71
|
},
|
|
72
72
|
{
|
|
73
73
|
"path": "harness-apidoc/checklist.md",
|
|
@@ -79,11 +79,11 @@
|
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
81
|
"path": "harness-apidoc/SKILL.md",
|
|
82
|
-
"sha256": "
|
|
82
|
+
"sha256": "19b05850b64bbf32a9832f4d75b224fe0a24710dac2d92e0505fb3cb6ecc7fc6"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
85
85
|
"path": "harness-archive/checklist.md",
|
|
86
|
-
"sha256": "
|
|
86
|
+
"sha256": "05d320f6558fd1cd75f75ffc05574c20c2d5737393068cab76185860c9056b9e"
|
|
87
87
|
},
|
|
88
88
|
{
|
|
89
89
|
"path": "harness-archive/reference.md",
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
},
|
|
96
96
|
{
|
|
97
97
|
"path": "harness-archive/SKILL.md",
|
|
98
|
-
"sha256": "
|
|
98
|
+
"sha256": "3b753f9087fbef2135a2da151833c63ab2e3764c2857135ba6b17ea1e58369cc"
|
|
99
99
|
},
|
|
100
100
|
{
|
|
101
101
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
117
|
"path": "harness-codebase-map/SKILL.md",
|
|
118
|
-
"sha256": "
|
|
118
|
+
"sha256": "e522b3fd55cbd7ad219884821e5b2365d0c67f7ead1c265510f516fd1fd08787"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
121
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -155,15 +155,15 @@
|
|
|
155
155
|
},
|
|
156
156
|
{
|
|
157
157
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
158
|
-
"sha256": "
|
|
158
|
+
"sha256": "49efe103fa8a5ef4dead67e63d5584b28c7c3d9d0204840bc540c31eff4bfc29"
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
161
|
"path": "harness-knowledge-query/SKILL.md",
|
|
162
|
-
"sha256": "
|
|
162
|
+
"sha256": "baeecf98c80f10444aa5c7f425a8b02ac881c49ea390c03b6a64d159344d78cc"
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
165
|
"path": "harness-package/checklist.md",
|
|
166
|
-
"sha256": "
|
|
166
|
+
"sha256": "4a38b72d6b5146b9068d6d19cbbb5a2a51f31135dcf2398f38206e36e7821250"
|
|
167
167
|
},
|
|
168
168
|
{
|
|
169
169
|
"path": "harness-package/reference.md",
|
|
@@ -171,11 +171,11 @@
|
|
|
171
171
|
},
|
|
172
172
|
{
|
|
173
173
|
"path": "harness-package/SKILL.md",
|
|
174
|
-
"sha256": "
|
|
174
|
+
"sha256": "9b9bc9edea23543906f38ee20bdce793eb7fbb63d2224264275cc5537b9d7d8d"
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
177
|
"path": "harness-plan/checklist.md",
|
|
178
|
-
"sha256": "
|
|
178
|
+
"sha256": "03584061a5d51b9c4349f13cbe66e757dd29bfc64ed6a4510f0bd731afd76568"
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"path": "harness-plan/protocols.md",
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
189
|
"path": "harness-plan/SKILL.md",
|
|
190
|
-
"sha256": "
|
|
190
|
+
"sha256": "372edfc72de25e8a74a5a95600b7b203d5b187e56d84dbd916c3a3b72b567c9e"
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
"path": "harness-review/checklist.md",
|
|
@@ -203,11 +203,11 @@
|
|
|
203
203
|
},
|
|
204
204
|
{
|
|
205
205
|
"path": "harness-review/SKILL.md",
|
|
206
|
-
"sha256": "
|
|
206
|
+
"sha256": "fd1ecae39af4071d0fbf0f91d90a74ebd956ffd2be7a41466173678818c960f7"
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
"path": "harness-run/checklist.md",
|
|
210
|
-
"sha256": "
|
|
210
|
+
"sha256": "e5a3dad819f7638b2b8e1930289dc7e8db98ff2266b249e7120fb30d9de9a410"
|
|
211
211
|
},
|
|
212
212
|
{
|
|
213
213
|
"path": "harness-run/protocols.md",
|
|
@@ -215,15 +215,15 @@
|
|
|
215
215
|
},
|
|
216
216
|
{
|
|
217
217
|
"path": "harness-run/reference.md",
|
|
218
|
-
"sha256": "
|
|
218
|
+
"sha256": "cb9c27a489449b8366d1bec7b474319837d552949f7f8adaf68f8f1b80507d50"
|
|
219
219
|
},
|
|
220
220
|
{
|
|
221
221
|
"path": "harness-run/SKILL.md",
|
|
222
|
-
"sha256": "
|
|
222
|
+
"sha256": "5350f31d19650bb114e077668d049cb52207e90fdfc1af0c727c48580221f97c"
|
|
223
223
|
},
|
|
224
224
|
{
|
|
225
225
|
"path": "harness-submit/checklist.md",
|
|
226
|
-
"sha256": "
|
|
226
|
+
"sha256": "63aded0d06b986c28a54783ec5b5dca55a8b20d7966029a517bc35c5b3cf11a3"
|
|
227
227
|
},
|
|
228
228
|
{
|
|
229
229
|
"path": "harness-submit/reference.md",
|
|
@@ -231,7 +231,7 @@
|
|
|
231
231
|
},
|
|
232
232
|
{
|
|
233
233
|
"path": "harness-submit/SKILL.md",
|
|
234
|
-
"sha256": "
|
|
234
|
+
"sha256": "4af5171a8f1d7572f8e6c0eb8336f564b30541f795d85bf3407475e54101ab14"
|
|
235
235
|
},
|
|
236
236
|
{
|
|
237
237
|
"path": "harness-sync/reference.md",
|
|
@@ -239,11 +239,11 @@
|
|
|
239
239
|
},
|
|
240
240
|
{
|
|
241
241
|
"path": "harness-sync/SKILL.md",
|
|
242
|
-
"sha256": "
|
|
242
|
+
"sha256": "42c6febd36108ae9226c81610c9d56bc74ae4fafde802d45bddd3c84be08e8c2"
|
|
243
243
|
},
|
|
244
244
|
{
|
|
245
245
|
"path": "harness-test/checklist.md",
|
|
246
|
-
"sha256": "
|
|
246
|
+
"sha256": "a1c3b325b61b6824a8f2796a2a53f75169ea78f99735f198159c85919e5629e8"
|
|
247
247
|
},
|
|
248
248
|
{
|
|
249
249
|
"path": "harness-test/pitfalls-java.md",
|
|
@@ -255,7 +255,7 @@
|
|
|
255
255
|
},
|
|
256
256
|
{
|
|
257
257
|
"path": "harness-test/reference.md",
|
|
258
|
-
"sha256": "
|
|
258
|
+
"sha256": "af976c3e5dc19862a878ef97be5edded4ac12130118c97b586c9f5b375937129"
|
|
259
259
|
},
|
|
260
260
|
{
|
|
261
261
|
"path": "harness-test/scripts/runtime-helpers.mjs",
|
|
@@ -263,7 +263,7 @@
|
|
|
263
263
|
},
|
|
264
264
|
{
|
|
265
265
|
"path": "harness-test/SKILL.md",
|
|
266
|
-
"sha256": "
|
|
266
|
+
"sha256": "a9e847f8ea3918be56e51ccc0e6df447917888f8bda4ce3288f4c3dae0a9e487"
|
|
267
267
|
},
|
|
268
268
|
{
|
|
269
269
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -287,7 +287,7 @@
|
|
|
287
287
|
},
|
|
288
288
|
{
|
|
289
289
|
"path": "protocols/ledger-protocol.md",
|
|
290
|
-
"sha256": "
|
|
290
|
+
"sha256": "bae14e9cb7422bf9e29551929af258948653ddc44624cc28efadefc5d189d358"
|
|
291
291
|
},
|
|
292
292
|
{
|
|
293
293
|
"path": "protocols/memory-closeout-protocol.md",
|
|
@@ -327,7 +327,7 @@
|
|
|
327
327
|
},
|
|
328
328
|
{
|
|
329
329
|
"path": "README.md",
|
|
330
|
-
"sha256": "
|
|
330
|
+
"sha256": "fe2b4a245c7820f3f21886580c17455a95d8411844fcc4e3932d7de0ad491b10"
|
|
331
331
|
},
|
|
332
332
|
{
|
|
333
333
|
"path": "scripts/harness_apidoc.py",
|
|
@@ -335,7 +335,7 @@
|
|
|
335
335
|
},
|
|
336
336
|
{
|
|
337
337
|
"path": "scripts/harness_archive.py",
|
|
338
|
-
"sha256": "
|
|
338
|
+
"sha256": "6ca1f096e69a61b356368c9c8e56859564087ac25b5fedc2edf71c289386d35c"
|
|
339
339
|
},
|
|
340
340
|
{
|
|
341
341
|
"path": "scripts/harness_change.py",
|
|
@@ -347,7 +347,7 @@
|
|
|
347
347
|
},
|
|
348
348
|
{
|
|
349
349
|
"path": "scripts/harness_context.py",
|
|
350
|
-
"sha256": "
|
|
350
|
+
"sha256": "da936a9a2c033b2b84adea124a3990e382cfd24ccc1036b87a5dc48b0c7de82a"
|
|
351
351
|
},
|
|
352
352
|
{
|
|
353
353
|
"path": "scripts/harness_deploy.py",
|
|
@@ -363,11 +363,11 @@
|
|
|
363
363
|
},
|
|
364
364
|
{
|
|
365
365
|
"path": "scripts/harness_events_sync.py",
|
|
366
|
-
"sha256": "
|
|
366
|
+
"sha256": "4f3883f72c656e634b9999ec62272406263474ad3915caf66779d4dbba369f13"
|
|
367
367
|
},
|
|
368
368
|
{
|
|
369
369
|
"path": "scripts/harness_events.py",
|
|
370
|
-
"sha256": "
|
|
370
|
+
"sha256": "e7cbbe346ea9b208d4228219d78857840f862f829e5173ba17f61fb50b3c4794"
|
|
371
371
|
},
|
|
372
372
|
{
|
|
373
373
|
"path": "scripts/harness_execution_contracts.py",
|
|
@@ -375,11 +375,11 @@
|
|
|
375
375
|
},
|
|
376
376
|
{
|
|
377
377
|
"path": "scripts/harness_fixback.py",
|
|
378
|
-
"sha256": "
|
|
378
|
+
"sha256": "68928ccb60b9a3bea112bf277303a90303ea80f024c569a5444eeebe2064aad2"
|
|
379
379
|
},
|
|
380
380
|
{
|
|
381
381
|
"path": "scripts/harness_gate.py",
|
|
382
|
-
"sha256": "
|
|
382
|
+
"sha256": "aaf672fd00aa7bdb85454762cfa9e5297a0c19ae16bf90beea1fcb80a5f842a1"
|
|
383
383
|
},
|
|
384
384
|
{
|
|
385
385
|
"path": "scripts/harness_headless.py",
|
|
@@ -391,7 +391,7 @@
|
|
|
391
391
|
},
|
|
392
392
|
{
|
|
393
393
|
"path": "scripts/harness_ledger.py",
|
|
394
|
-
"sha256": "
|
|
394
|
+
"sha256": "a51f072959e383b18319fd879f55a8a20d6e44495002da4a3a735b4d66e72f27"
|
|
395
395
|
},
|
|
396
396
|
{
|
|
397
397
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -415,7 +415,7 @@
|
|
|
415
415
|
},
|
|
416
416
|
{
|
|
417
417
|
"path": "scripts/harness_plan_finalize.py",
|
|
418
|
-
"sha256": "
|
|
418
|
+
"sha256": "a71a1c7779946e51907bff724c4f6adf37d7be64bcf2a2a0039f0db9b771a09f"
|
|
419
419
|
},
|
|
420
420
|
{
|
|
421
421
|
"path": "scripts/harness_preflight.py",
|
|
@@ -463,7 +463,7 @@
|
|
|
463
463
|
},
|
|
464
464
|
{
|
|
465
465
|
"path": "scripts/harness_test_guard.py",
|
|
466
|
-
"sha256": "
|
|
466
|
+
"sha256": "a6ef4107e6ee32038753262623d2ff01c86cc640b42183c7117ed0da943c5742"
|
|
467
467
|
},
|
|
468
468
|
{
|
|
469
469
|
"path": "scripts/harness_test_runner.py",
|
|
@@ -6,9 +6,10 @@
|
|
|
6
6
|
"general",
|
|
7
7
|
"java"
|
|
8
8
|
],
|
|
9
|
-
"bundle_version": "0.2.
|
|
10
|
-
"content_sha256": "sha256:
|
|
11
|
-
"minimumCliVersion": "0.2.
|
|
9
|
+
"bundle_version": "0.2.45",
|
|
10
|
+
"content_sha256": "sha256:664d1bad314bff3eeb074ffe39690b4af9ffc7347d244f2c45a1f4e03892b70c",
|
|
11
|
+
"minimumCliVersion": "0.2.62",
|
|
12
|
+
"workflowPackageVersion": "0.2.56",
|
|
12
13
|
"capabilities": [
|
|
13
14
|
"sync@2",
|
|
14
15
|
"rules-sync@1",
|
|
@@ -23,7 +24,7 @@
|
|
|
23
24
|
"registry-governance@1"
|
|
24
25
|
],
|
|
25
26
|
"requires": {
|
|
26
|
-
"minimumCliVersion": "0.2.
|
|
27
|
+
"minimumCliVersion": "0.2.62",
|
|
27
28
|
"capabilities": [
|
|
28
29
|
"sync@2",
|
|
29
30
|
"rules-sync@1",
|