@hunter-harness/workflow-harness 0.2.85 → 0.3.0
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 +46 -17
- package/harness/bundles/general/claude-code/harness-archive/SKILL.md +2 -2
- package/harness/bundles/general/claude-code/harness-codebase-map/SKILL.md +2 -2
- package/harness/bundles/general/claude-code/harness-execute/SKILL.md +189 -0
- package/harness/bundles/general/claude-code/harness-knowledge-ingest/SKILL.md +2 -2
- package/harness/bundles/general/claude-code/harness-knowledge-query/SKILL.md +2 -2
- package/harness/bundles/general/claude-code/harness-plan/SKILL.md +10 -9
- package/harness/bundles/general/claude-code/harness-plan/checklist.md +19 -91
- package/harness/bundles/general/claude-code/harness-plan/protocols.md +3 -1
- package/harness/bundles/general/claude-code/harness-plan/reference.md +74 -83
- package/harness/bundles/general/claude-code/harness-pull/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-push/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-review/SKILL.md +3 -3
- package/harness/bundles/general/claude-code/harness-review/protocols.md +1 -1
- package/harness/bundles/general/claude-code/harness-run/SKILL.md +13 -5
- package/harness/bundles/general/claude-code/harness-submit/SKILL.md +2 -2
- 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 +11 -2
- package/harness/bundles/general/claude-code/scripts/harness_adoption_metrics.py +391 -0
- package/harness/bundles/general/claude-code/scripts/harness_archive.py +23 -14
- package/harness/bundles/general/claude-code/scripts/harness_change.py +25 -7
- package/harness/bundles/general/claude-code/scripts/harness_context.py +154 -60
- package/harness/bundles/general/claude-code/scripts/harness_events.py +1 -1
- package/harness/bundles/general/claude-code/scripts/harness_events_sync.py +1 -0
- package/harness/bundles/general/claude-code/scripts/harness_fixback.py +14 -10
- package/harness/bundles/general/claude-code/scripts/harness_gate.py +293 -90
- package/harness/bundles/general/claude-code/scripts/harness_ledger.py +47 -2
- package/harness/bundles/general/claude-code/scripts/harness_paths.py +175 -0
- package/harness/bundles/general/claude-code/scripts/harness_phase.py +65 -23
- package/harness/bundles/general/claude-code/scripts/harness_plan_finalize.py +140 -874
- package/harness/bundles/general/claude-code/scripts/harness_review.py +25 -4
- package/harness/bundles/general/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/general/codebuddy/contracts/workflow-policy.json +46 -17
- package/harness/bundles/general/codebuddy/harness-archive/SKILL.md +2 -2
- package/harness/bundles/general/codebuddy/harness-codebase-map/SKILL.md +2 -2
- package/harness/bundles/general/codebuddy/harness-execute/SKILL.md +170 -0
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/SKILL.md +2 -2
- package/harness/bundles/general/codebuddy/harness-knowledge-query/SKILL.md +2 -2
- package/harness/bundles/general/codebuddy/harness-plan/SKILL.md +10 -9
- package/harness/bundles/general/codebuddy/harness-plan/checklist.md +19 -91
- package/harness/bundles/general/codebuddy/harness-plan/protocols.md +3 -1
- package/harness/bundles/general/codebuddy/harness-plan/reference.md +74 -83
- package/harness/bundles/general/codebuddy/harness-pull/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-push/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-review/SKILL.md +3 -3
- package/harness/bundles/general/codebuddy/harness-review/protocols.md +1 -1
- package/harness/bundles/general/codebuddy/harness-run/SKILL.md +13 -5
- package/harness/bundles/general/codebuddy/harness-submit/SKILL.md +2 -2
- 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 +11 -2
- package/harness/bundles/general/codebuddy/scripts/harness_adoption_metrics.py +391 -0
- package/harness/bundles/general/codebuddy/scripts/harness_archive.py +23 -14
- package/harness/bundles/general/codebuddy/scripts/harness_change.py +25 -7
- package/harness/bundles/general/codebuddy/scripts/harness_context.py +154 -60
- package/harness/bundles/general/codebuddy/scripts/harness_events.py +1 -1
- package/harness/bundles/general/codebuddy/scripts/harness_events_sync.py +1 -0
- package/harness/bundles/general/codebuddy/scripts/harness_fixback.py +14 -10
- package/harness/bundles/general/codebuddy/scripts/harness_gate.py +293 -90
- package/harness/bundles/general/codebuddy/scripts/harness_ledger.py +47 -2
- package/harness/bundles/general/codebuddy/scripts/harness_paths.py +175 -0
- package/harness/bundles/general/codebuddy/scripts/harness_phase.py +65 -23
- package/harness/bundles/general/codebuddy/scripts/harness_plan_finalize.py +140 -874
- package/harness/bundles/general/codebuddy/scripts/harness_review.py +25 -4
- package/harness/bundles/general/codex/.harness-build.json +1 -1
- package/harness/bundles/general/codex/contracts/workflow-policy.json +46 -17
- package/harness/bundles/general/codex/harness-archive/SKILL.md +2 -2
- package/harness/bundles/general/codex/harness-codebase-map/SKILL.md +2 -2
- package/harness/bundles/general/codex/harness-execute/SKILL.md +170 -0
- package/harness/bundles/general/codex/harness-knowledge-ingest/SKILL.md +2 -2
- package/harness/bundles/general/codex/harness-knowledge-query/SKILL.md +2 -2
- package/harness/bundles/general/codex/harness-plan/SKILL.md +10 -9
- package/harness/bundles/general/codex/harness-plan/checklist.md +19 -91
- package/harness/bundles/general/codex/harness-plan/protocols.md +3 -1
- package/harness/bundles/general/codex/harness-plan/reference.md +74 -83
- package/harness/bundles/general/codex/harness-pull/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-push/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-review/SKILL.md +3 -3
- package/harness/bundles/general/codex/harness-review/protocols.md +1 -1
- package/harness/bundles/general/codex/harness-run/SKILL.md +13 -5
- package/harness/bundles/general/codex/harness-submit/SKILL.md +2 -2
- 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 +11 -2
- package/harness/bundles/general/codex/scripts/harness_adoption_metrics.py +391 -0
- package/harness/bundles/general/codex/scripts/harness_archive.py +23 -14
- package/harness/bundles/general/codex/scripts/harness_change.py +25 -7
- package/harness/bundles/general/codex/scripts/harness_context.py +154 -60
- package/harness/bundles/general/codex/scripts/harness_events.py +1 -1
- package/harness/bundles/general/codex/scripts/harness_events_sync.py +1 -0
- package/harness/bundles/general/codex/scripts/harness_fixback.py +14 -10
- package/harness/bundles/general/codex/scripts/harness_gate.py +293 -90
- package/harness/bundles/general/codex/scripts/harness_ledger.py +47 -2
- package/harness/bundles/general/codex/scripts/harness_paths.py +175 -0
- package/harness/bundles/general/codex/scripts/harness_phase.py +65 -23
- package/harness/bundles/general/codex/scripts/harness_plan_finalize.py +140 -874
- package/harness/bundles/general/codex/scripts/harness_review.py +25 -4
- package/harness/bundles/general/cursor/.harness-build.json +1 -1
- package/harness/bundles/general/cursor/contracts/workflow-policy.json +46 -17
- package/harness/bundles/general/cursor/harness-archive/SKILL.md +2 -2
- package/harness/bundles/general/cursor/harness-codebase-map/SKILL.md +2 -2
- package/harness/bundles/general/cursor/harness-execute/SKILL.md +170 -0
- package/harness/bundles/general/cursor/harness-knowledge-ingest/SKILL.md +2 -2
- package/harness/bundles/general/cursor/harness-knowledge-query/SKILL.md +2 -2
- package/harness/bundles/general/cursor/harness-plan/SKILL.md +10 -9
- package/harness/bundles/general/cursor/harness-plan/checklist.md +19 -91
- package/harness/bundles/general/cursor/harness-plan/protocols.md +3 -1
- package/harness/bundles/general/cursor/harness-plan/reference.md +74 -83
- package/harness/bundles/general/cursor/harness-pull/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-push/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-review/SKILL.md +3 -3
- package/harness/bundles/general/cursor/harness-review/protocols.md +1 -1
- package/harness/bundles/general/cursor/harness-run/SKILL.md +13 -5
- package/harness/bundles/general/cursor/harness-submit/SKILL.md +2 -2
- 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 +11 -2
- package/harness/bundles/general/cursor/scripts/harness_adoption_metrics.py +391 -0
- package/harness/bundles/general/cursor/scripts/harness_archive.py +23 -14
- package/harness/bundles/general/cursor/scripts/harness_change.py +25 -7
- package/harness/bundles/general/cursor/scripts/harness_context.py +154 -60
- package/harness/bundles/general/cursor/scripts/harness_events.py +1 -1
- package/harness/bundles/general/cursor/scripts/harness_events_sync.py +1 -0
- package/harness/bundles/general/cursor/scripts/harness_fixback.py +14 -10
- package/harness/bundles/general/cursor/scripts/harness_gate.py +293 -90
- package/harness/bundles/general/cursor/scripts/harness_ledger.py +47 -2
- package/harness/bundles/general/cursor/scripts/harness_paths.py +175 -0
- package/harness/bundles/general/cursor/scripts/harness_phase.py +65 -23
- package/harness/bundles/general/cursor/scripts/harness_plan_finalize.py +140 -874
- package/harness/bundles/general/cursor/scripts/harness_review.py +25 -4
- package/harness/bundles/java/claude-code/.harness-build.json +1 -1
- package/harness/bundles/java/claude-code/contracts/workflow-policy.json +46 -17
- package/harness/bundles/java/claude-code/harness-apidoc/SKILL.md +2 -2
- package/harness/bundles/java/claude-code/harness-archive/SKILL.md +2 -2
- package/harness/bundles/java/claude-code/harness-codebase-map/SKILL.md +2 -2
- package/harness/bundles/java/claude-code/harness-execute/SKILL.md +189 -0
- package/harness/bundles/java/claude-code/harness-knowledge-ingest/SKILL.md +2 -2
- package/harness/bundles/java/claude-code/harness-knowledge-query/SKILL.md +2 -2
- package/harness/bundles/java/claude-code/harness-package/SKILL.md +2 -2
- package/harness/bundles/java/claude-code/harness-plan/SKILL.md +10 -9
- package/harness/bundles/java/claude-code/harness-plan/checklist.md +19 -91
- package/harness/bundles/java/claude-code/harness-plan/protocols.md +3 -1
- package/harness/bundles/java/claude-code/harness-plan/reference.md +74 -83
- package/harness/bundles/java/claude-code/harness-pull/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-push/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-review/SKILL.md +3 -3
- package/harness/bundles/java/claude-code/harness-review/protocols.md +1 -1
- package/harness/bundles/java/claude-code/harness-run/SKILL.md +13 -5
- package/harness/bundles/java/claude-code/harness-submit/SKILL.md +2 -2
- 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 +11 -2
- package/harness/bundles/java/claude-code/scripts/harness_adoption_metrics.py +391 -0
- package/harness/bundles/java/claude-code/scripts/harness_archive.py +23 -14
- package/harness/bundles/java/claude-code/scripts/harness_change.py +25 -7
- package/harness/bundles/java/claude-code/scripts/harness_context.py +154 -60
- package/harness/bundles/java/claude-code/scripts/harness_events.py +1 -1
- package/harness/bundles/java/claude-code/scripts/harness_events_sync.py +1 -0
- package/harness/bundles/java/claude-code/scripts/harness_fixback.py +14 -10
- package/harness/bundles/java/claude-code/scripts/harness_gate.py +293 -90
- package/harness/bundles/java/claude-code/scripts/harness_ledger.py +47 -2
- package/harness/bundles/java/claude-code/scripts/harness_paths.py +175 -0
- package/harness/bundles/java/claude-code/scripts/harness_phase.py +65 -23
- package/harness/bundles/java/claude-code/scripts/harness_plan_finalize.py +140 -874
- package/harness/bundles/java/claude-code/scripts/harness_review.py +25 -4
- package/harness/bundles/java/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/java/codebuddy/contracts/workflow-policy.json +46 -17
- package/harness/bundles/java/codebuddy/harness-apidoc/SKILL.md +2 -2
- package/harness/bundles/java/codebuddy/harness-archive/SKILL.md +2 -2
- package/harness/bundles/java/codebuddy/harness-codebase-map/SKILL.md +2 -2
- package/harness/bundles/java/codebuddy/harness-execute/SKILL.md +170 -0
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/SKILL.md +2 -2
- package/harness/bundles/java/codebuddy/harness-knowledge-query/SKILL.md +2 -2
- package/harness/bundles/java/codebuddy/harness-package/SKILL.md +2 -2
- package/harness/bundles/java/codebuddy/harness-plan/SKILL.md +10 -9
- package/harness/bundles/java/codebuddy/harness-plan/checklist.md +19 -91
- package/harness/bundles/java/codebuddy/harness-plan/protocols.md +3 -1
- package/harness/bundles/java/codebuddy/harness-plan/reference.md +74 -83
- package/harness/bundles/java/codebuddy/harness-pull/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-push/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-review/SKILL.md +3 -3
- package/harness/bundles/java/codebuddy/harness-review/protocols.md +1 -1
- package/harness/bundles/java/codebuddy/harness-run/SKILL.md +13 -5
- package/harness/bundles/java/codebuddy/harness-submit/SKILL.md +2 -2
- 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 +11 -2
- package/harness/bundles/java/codebuddy/scripts/harness_adoption_metrics.py +391 -0
- package/harness/bundles/java/codebuddy/scripts/harness_archive.py +23 -14
- package/harness/bundles/java/codebuddy/scripts/harness_change.py +25 -7
- package/harness/bundles/java/codebuddy/scripts/harness_context.py +154 -60
- package/harness/bundles/java/codebuddy/scripts/harness_events.py +1 -1
- package/harness/bundles/java/codebuddy/scripts/harness_events_sync.py +1 -0
- package/harness/bundles/java/codebuddy/scripts/harness_fixback.py +14 -10
- package/harness/bundles/java/codebuddy/scripts/harness_gate.py +293 -90
- package/harness/bundles/java/codebuddy/scripts/harness_ledger.py +47 -2
- package/harness/bundles/java/codebuddy/scripts/harness_paths.py +175 -0
- package/harness/bundles/java/codebuddy/scripts/harness_phase.py +65 -23
- package/harness/bundles/java/codebuddy/scripts/harness_plan_finalize.py +140 -874
- package/harness/bundles/java/codebuddy/scripts/harness_review.py +25 -4
- package/harness/bundles/java/codex/.harness-build.json +1 -1
- package/harness/bundles/java/codex/contracts/workflow-policy.json +46 -17
- package/harness/bundles/java/codex/harness-apidoc/SKILL.md +2 -2
- package/harness/bundles/java/codex/harness-archive/SKILL.md +2 -2
- package/harness/bundles/java/codex/harness-codebase-map/SKILL.md +2 -2
- package/harness/bundles/java/codex/harness-execute/SKILL.md +170 -0
- package/harness/bundles/java/codex/harness-knowledge-ingest/SKILL.md +2 -2
- package/harness/bundles/java/codex/harness-knowledge-query/SKILL.md +2 -2
- package/harness/bundles/java/codex/harness-package/SKILL.md +2 -2
- package/harness/bundles/java/codex/harness-plan/SKILL.md +10 -9
- package/harness/bundles/java/codex/harness-plan/checklist.md +19 -91
- package/harness/bundles/java/codex/harness-plan/protocols.md +3 -1
- package/harness/bundles/java/codex/harness-plan/reference.md +74 -83
- package/harness/bundles/java/codex/harness-pull/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-push/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-review/SKILL.md +3 -3
- package/harness/bundles/java/codex/harness-review/protocols.md +1 -1
- package/harness/bundles/java/codex/harness-run/SKILL.md +13 -5
- package/harness/bundles/java/codex/harness-submit/SKILL.md +2 -2
- 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 +11 -2
- package/harness/bundles/java/codex/scripts/harness_adoption_metrics.py +391 -0
- package/harness/bundles/java/codex/scripts/harness_archive.py +23 -14
- package/harness/bundles/java/codex/scripts/harness_change.py +25 -7
- package/harness/bundles/java/codex/scripts/harness_context.py +154 -60
- package/harness/bundles/java/codex/scripts/harness_events.py +1 -1
- package/harness/bundles/java/codex/scripts/harness_events_sync.py +1 -0
- package/harness/bundles/java/codex/scripts/harness_fixback.py +14 -10
- package/harness/bundles/java/codex/scripts/harness_gate.py +293 -90
- package/harness/bundles/java/codex/scripts/harness_ledger.py +47 -2
- package/harness/bundles/java/codex/scripts/harness_paths.py +175 -0
- package/harness/bundles/java/codex/scripts/harness_phase.py +65 -23
- package/harness/bundles/java/codex/scripts/harness_plan_finalize.py +140 -874
- package/harness/bundles/java/codex/scripts/harness_review.py +25 -4
- package/harness/bundles/java/cursor/.harness-build.json +1 -1
- package/harness/bundles/java/cursor/contracts/workflow-policy.json +46 -17
- package/harness/bundles/java/cursor/harness-apidoc/SKILL.md +2 -2
- package/harness/bundles/java/cursor/harness-archive/SKILL.md +2 -2
- package/harness/bundles/java/cursor/harness-codebase-map/SKILL.md +2 -2
- package/harness/bundles/java/cursor/harness-execute/SKILL.md +170 -0
- package/harness/bundles/java/cursor/harness-knowledge-ingest/SKILL.md +2 -2
- package/harness/bundles/java/cursor/harness-knowledge-query/SKILL.md +2 -2
- package/harness/bundles/java/cursor/harness-package/SKILL.md +2 -2
- package/harness/bundles/java/cursor/harness-plan/SKILL.md +10 -9
- package/harness/bundles/java/cursor/harness-plan/checklist.md +19 -91
- package/harness/bundles/java/cursor/harness-plan/protocols.md +3 -1
- package/harness/bundles/java/cursor/harness-plan/reference.md +74 -83
- package/harness/bundles/java/cursor/harness-pull/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-push/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-review/SKILL.md +3 -3
- package/harness/bundles/java/cursor/harness-review/protocols.md +1 -1
- package/harness/bundles/java/cursor/harness-run/SKILL.md +13 -5
- package/harness/bundles/java/cursor/harness-submit/SKILL.md +2 -2
- 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 +11 -2
- package/harness/bundles/java/cursor/scripts/harness_adoption_metrics.py +391 -0
- package/harness/bundles/java/cursor/scripts/harness_archive.py +23 -14
- package/harness/bundles/java/cursor/scripts/harness_change.py +25 -7
- package/harness/bundles/java/cursor/scripts/harness_context.py +154 -60
- package/harness/bundles/java/cursor/scripts/harness_events.py +1 -1
- package/harness/bundles/java/cursor/scripts/harness_events_sync.py +1 -0
- package/harness/bundles/java/cursor/scripts/harness_fixback.py +14 -10
- package/harness/bundles/java/cursor/scripts/harness_gate.py +293 -90
- package/harness/bundles/java/cursor/scripts/harness_ledger.py +47 -2
- package/harness/bundles/java/cursor/scripts/harness_paths.py +175 -0
- package/harness/bundles/java/cursor/scripts/harness_phase.py +65 -23
- package/harness/bundles/java/cursor/scripts/harness_plan_finalize.py +140 -874
- package/harness/bundles/java/cursor/scripts/harness_review.py +25 -4
- package/harness/manifests/general/claude-code.json +40 -32
- package/harness/manifests/general/codebuddy.json +40 -32
- package/harness/manifests/general/codex.json +40 -32
- package/harness/manifests/general/cursor.json +40 -32
- package/harness/manifests/java/claude-code.json +42 -34
- package/harness/manifests/java/codebuddy.json +42 -34
- package/harness/manifests/java/codex.json +42 -34
- package/harness/manifests/java/cursor.json +42 -34
- package/hunter-workflow-family.json +4 -4
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"adapter": "claude-code",
|
|
5
5
|
"bundle_version": "0.2.73",
|
|
6
6
|
"requires": {
|
|
7
|
-
"minimumCliVersion": "0.2.
|
|
7
|
+
"minimumCliVersion": "0.2.92",
|
|
8
8
|
"capabilities": [
|
|
9
9
|
"sync@2",
|
|
10
10
|
"rules-sync@1",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"files": [
|
|
26
26
|
{
|
|
27
27
|
"path": ".harness-build.json",
|
|
28
|
-
"sha256": "
|
|
28
|
+
"sha256": "c6a4eb648e118bda3a4082115eb42e573e968d60a7b5ed92b0932a26f9c35fb1"
|
|
29
29
|
},
|
|
30
30
|
{
|
|
31
31
|
"path": "agents/harness-evaluator.md",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
},
|
|
82
82
|
{
|
|
83
83
|
"path": "contracts/workflow-policy.json",
|
|
84
|
-
"sha256": "
|
|
84
|
+
"sha256": "69fec9ed7eb01b5d9f5b4fcc44e0c983f67acb15a25c418c9934d6496f3d75c8"
|
|
85
85
|
},
|
|
86
86
|
{
|
|
87
87
|
"path": "harness-apidoc/checklist.md",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
},
|
|
94
94
|
{
|
|
95
95
|
"path": "harness-apidoc/SKILL.md",
|
|
96
|
-
"sha256": "
|
|
96
|
+
"sha256": "536719971ed4047b021fa85c0f2839db40eadf5c7637e790f3a2f02572c46977"
|
|
97
97
|
},
|
|
98
98
|
{
|
|
99
99
|
"path": "harness-archive/checklist.md",
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
},
|
|
110
110
|
{
|
|
111
111
|
"path": "harness-archive/SKILL.md",
|
|
112
|
-
"sha256": "
|
|
112
|
+
"sha256": "fdca4fcfd6a5de2b36402b16c6e55b5cfe65af93d3732db5475877f5ac9e0532"
|
|
113
113
|
},
|
|
114
114
|
{
|
|
115
115
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
},
|
|
126
126
|
{
|
|
127
127
|
"path": "harness-codebase-map/SKILL.md",
|
|
128
|
-
"sha256": "
|
|
128
|
+
"sha256": "a852100a60ccd65bd5d2f8527db5092f2b79aeff5d0539491f57b09e547d0395"
|
|
129
129
|
},
|
|
130
130
|
{
|
|
131
131
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -163,13 +163,17 @@
|
|
|
163
163
|
"path": "harness-codebase-map/templates/TESTING.md",
|
|
164
164
|
"sha256": "3e19408d0d711a8a9432a17b6f85e025d20e19c31fa385bacb622012e300c015"
|
|
165
165
|
},
|
|
166
|
+
{
|
|
167
|
+
"path": "harness-execute/SKILL.md",
|
|
168
|
+
"sha256": "f6e8cdf6ce4137aafbd74cf9e7258365f63e582b923e6d200a47223daec1e534"
|
|
169
|
+
},
|
|
166
170
|
{
|
|
167
171
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
168
|
-
"sha256": "
|
|
172
|
+
"sha256": "ef54d66c1a484ac0302e6feafadda6ef421316bf458820771ef6dac61a77804a"
|
|
169
173
|
},
|
|
170
174
|
{
|
|
171
175
|
"path": "harness-knowledge-query/SKILL.md",
|
|
172
|
-
"sha256": "
|
|
176
|
+
"sha256": "d54c7aff003c67076a8720931e5ab99599381a794f81df9e3da465b41654de35"
|
|
173
177
|
},
|
|
174
178
|
{
|
|
175
179
|
"path": "harness-package/checklist.md",
|
|
@@ -181,31 +185,31 @@
|
|
|
181
185
|
},
|
|
182
186
|
{
|
|
183
187
|
"path": "harness-package/SKILL.md",
|
|
184
|
-
"sha256": "
|
|
188
|
+
"sha256": "61337737f593278c083c73cf2b862fa4ae4743edaccd187de68a65f23243a21f"
|
|
185
189
|
},
|
|
186
190
|
{
|
|
187
191
|
"path": "harness-plan/checklist.md",
|
|
188
|
-
"sha256": "
|
|
192
|
+
"sha256": "019e3889482cb3583a986e34d6dd9e8f4b0f17b6dbeb07a95ee826b9d161b53e"
|
|
189
193
|
},
|
|
190
194
|
{
|
|
191
195
|
"path": "harness-plan/protocols.md",
|
|
192
|
-
"sha256": "
|
|
196
|
+
"sha256": "ee15618cbe4005ec1efd5ae91b0105920b929a9eedba8dffd29183efadf52485"
|
|
193
197
|
},
|
|
194
198
|
{
|
|
195
199
|
"path": "harness-plan/reference.md",
|
|
196
|
-
"sha256": "
|
|
200
|
+
"sha256": "f1c2442ba4ed31456a878cadb34307923a494bb53b973be4b25e85f3377caa73"
|
|
197
201
|
},
|
|
198
202
|
{
|
|
199
203
|
"path": "harness-plan/SKILL.md",
|
|
200
|
-
"sha256": "
|
|
204
|
+
"sha256": "fc9e8b231ca90afda1ab50577915670f7266447c0e31c68edfc3e789d1a2c849"
|
|
201
205
|
},
|
|
202
206
|
{
|
|
203
207
|
"path": "harness-pull/SKILL.md",
|
|
204
|
-
"sha256": "
|
|
208
|
+
"sha256": "c3ff8dc191317cd69edc0484624fb0e055fce4119d5da840fa1e88b18e71ce4d"
|
|
205
209
|
},
|
|
206
210
|
{
|
|
207
211
|
"path": "harness-push/SKILL.md",
|
|
208
|
-
"sha256": "
|
|
212
|
+
"sha256": "d041aec7cd00b5fb3b3441a59363534c9354f9736be0cee0eb6098a04df62bbf"
|
|
209
213
|
},
|
|
210
214
|
{
|
|
211
215
|
"path": "harness-review/checklist.md",
|
|
@@ -213,7 +217,7 @@
|
|
|
213
217
|
},
|
|
214
218
|
{
|
|
215
219
|
"path": "harness-review/protocols.md",
|
|
216
|
-
"sha256": "
|
|
220
|
+
"sha256": "8eb72639f8c424e3d1d8c8eb72d7fec4cf4f4ded7f02cd6db90808ac7efe46fc"
|
|
217
221
|
},
|
|
218
222
|
{
|
|
219
223
|
"path": "harness-review/reference.md",
|
|
@@ -221,7 +225,7 @@
|
|
|
221
225
|
},
|
|
222
226
|
{
|
|
223
227
|
"path": "harness-review/SKILL.md",
|
|
224
|
-
"sha256": "
|
|
228
|
+
"sha256": "2dd1a93f6037147aba989b067226e4e95ccf6e2e17055fe1a70821eb972305a4"
|
|
225
229
|
},
|
|
226
230
|
{
|
|
227
231
|
"path": "harness-run/checklist.md",
|
|
@@ -237,11 +241,11 @@
|
|
|
237
241
|
},
|
|
238
242
|
{
|
|
239
243
|
"path": "harness-run/SKILL.md",
|
|
240
|
-
"sha256": "
|
|
244
|
+
"sha256": "6fce115e20b563844fb3c9d961795f5c3ffb19ced09f5f018442fadffff13061"
|
|
241
245
|
},
|
|
242
246
|
{
|
|
243
247
|
"path": "harness-submit/checklist.md",
|
|
244
|
-
"sha256": "
|
|
248
|
+
"sha256": "7c8ae24ee908ea50d3c77fc4048b358c0080383d5de5be5e2dee5a094d800385"
|
|
245
249
|
},
|
|
246
250
|
{
|
|
247
251
|
"path": "harness-submit/reference.md",
|
|
@@ -249,7 +253,7 @@
|
|
|
249
253
|
},
|
|
250
254
|
{
|
|
251
255
|
"path": "harness-submit/SKILL.md",
|
|
252
|
-
"sha256": "
|
|
256
|
+
"sha256": "32b161cd7ebd9665f5e7e4b9fcd20cf8cd0c1b8785fde4135014f16d47b1557c"
|
|
253
257
|
},
|
|
254
258
|
{
|
|
255
259
|
"path": "harness-sync/reference.md",
|
|
@@ -257,7 +261,7 @@
|
|
|
257
261
|
},
|
|
258
262
|
{
|
|
259
263
|
"path": "harness-sync/SKILL.md",
|
|
260
|
-
"sha256": "
|
|
264
|
+
"sha256": "2fa8a2d0dc80b57f363cd96933358bd73dc18b6bf10965082917e11268b14350"
|
|
261
265
|
},
|
|
262
266
|
{
|
|
263
267
|
"path": "harness-test/checklist.md",
|
|
@@ -281,7 +285,7 @@
|
|
|
281
285
|
},
|
|
282
286
|
{
|
|
283
287
|
"path": "harness-test/SKILL.md",
|
|
284
|
-
"sha256": "
|
|
288
|
+
"sha256": "052e37218c42e0db9b75bb03aa8e2dffea8e312b693f866c8374566cefa8add5"
|
|
285
289
|
},
|
|
286
290
|
{
|
|
287
291
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -347,17 +351,21 @@
|
|
|
347
351
|
"path": "README.md",
|
|
348
352
|
"sha256": "0037fa52e150adb6ee698c5d12aca8d5b200aca87668608ed36756a39d4113ef"
|
|
349
353
|
},
|
|
354
|
+
{
|
|
355
|
+
"path": "scripts/harness_adoption_metrics.py",
|
|
356
|
+
"sha256": "21e0c2c0708ba6bff1b6261994c6df0f9ff53166cdd30b8a4e6d7efc553a84de"
|
|
357
|
+
},
|
|
350
358
|
{
|
|
351
359
|
"path": "scripts/harness_apidoc.py",
|
|
352
360
|
"sha256": "3fa77ffabf99075a90374d9a4b2ddca3408cc5b90610725d779d9d0dfb70fbbb"
|
|
353
361
|
},
|
|
354
362
|
{
|
|
355
363
|
"path": "scripts/harness_archive.py",
|
|
356
|
-
"sha256": "
|
|
364
|
+
"sha256": "73e6abdc6295a6f75bde0af424a8464d10239292bd444c34a6ab04573e2df3b9"
|
|
357
365
|
},
|
|
358
366
|
{
|
|
359
367
|
"path": "scripts/harness_change.py",
|
|
360
|
-
"sha256": "
|
|
368
|
+
"sha256": "9d35cfb6184028ee03c7d574a6d24b33f8cc437ba5c3dae9a0487d50566bda1f"
|
|
361
369
|
},
|
|
362
370
|
{
|
|
363
371
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -365,7 +373,7 @@
|
|
|
365
373
|
},
|
|
366
374
|
{
|
|
367
375
|
"path": "scripts/harness_context.py",
|
|
368
|
-
"sha256": "
|
|
376
|
+
"sha256": "aea16aa3aa038812de506c6ad2f68f7ece94d1f9ca8fb3cddbb1885a9df5611c"
|
|
369
377
|
},
|
|
370
378
|
{
|
|
371
379
|
"path": "scripts/harness_deploy.py",
|
|
@@ -381,11 +389,11 @@
|
|
|
381
389
|
},
|
|
382
390
|
{
|
|
383
391
|
"path": "scripts/harness_events_sync.py",
|
|
384
|
-
"sha256": "
|
|
392
|
+
"sha256": "581bcfd458ae75358927a1ac1059ed667bfd23a160a9b9554ea0001e6ee8d619"
|
|
385
393
|
},
|
|
386
394
|
{
|
|
387
395
|
"path": "scripts/harness_events.py",
|
|
388
|
-
"sha256": "
|
|
396
|
+
"sha256": "92f457533b441493e98992bd4c26d7afbc93d48d35dbed443f24ac98b341bcbc"
|
|
389
397
|
},
|
|
390
398
|
{
|
|
391
399
|
"path": "scripts/harness_execution_contracts.py",
|
|
@@ -393,11 +401,11 @@
|
|
|
393
401
|
},
|
|
394
402
|
{
|
|
395
403
|
"path": "scripts/harness_fixback.py",
|
|
396
|
-
"sha256": "
|
|
404
|
+
"sha256": "2ba83e62320fe47f2a0a7d46d41d6b6338e3e8a51fcdb70c89605ad82f421d6f"
|
|
397
405
|
},
|
|
398
406
|
{
|
|
399
407
|
"path": "scripts/harness_gate.py",
|
|
400
|
-
"sha256": "
|
|
408
|
+
"sha256": "20f6a9e6e3cb6efbb3bcecc3e6b01a41615140ff383f035ab2c71952022210e4"
|
|
401
409
|
},
|
|
402
410
|
{
|
|
403
411
|
"path": "scripts/harness_headless.py",
|
|
@@ -413,7 +421,7 @@
|
|
|
413
421
|
},
|
|
414
422
|
{
|
|
415
423
|
"path": "scripts/harness_ledger.py",
|
|
416
|
-
"sha256": "
|
|
424
|
+
"sha256": "3952d8af287272b667976e18a61204833ca275e14d21c581a3ff534fb9d95523"
|
|
417
425
|
},
|
|
418
426
|
{
|
|
419
427
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -425,11 +433,11 @@
|
|
|
425
433
|
},
|
|
426
434
|
{
|
|
427
435
|
"path": "scripts/harness_paths.py",
|
|
428
|
-
"sha256": "
|
|
436
|
+
"sha256": "01615e63ef7df250ff9a6a86c3cf2b9dd429696afc494e2f88113e314758bf35"
|
|
429
437
|
},
|
|
430
438
|
{
|
|
431
439
|
"path": "scripts/harness_phase.py",
|
|
432
|
-
"sha256": "
|
|
440
|
+
"sha256": "5216a015903cc0905b98f94be7cb4790adda836891ce4f7c065e2712226cd0b6"
|
|
433
441
|
},
|
|
434
442
|
{
|
|
435
443
|
"path": "scripts/harness_plan_aggregate.py",
|
|
@@ -437,7 +445,7 @@
|
|
|
437
445
|
},
|
|
438
446
|
{
|
|
439
447
|
"path": "scripts/harness_plan_finalize.py",
|
|
440
|
-
"sha256": "
|
|
448
|
+
"sha256": "c045b8c10e936323c1c0de9617283b37ce23b0c70d31521107f78e7e6f7085e7"
|
|
441
449
|
},
|
|
442
450
|
{
|
|
443
451
|
"path": "scripts/harness_preflight.py",
|
|
@@ -461,7 +469,7 @@
|
|
|
461
469
|
},
|
|
462
470
|
{
|
|
463
471
|
"path": "scripts/harness_review.py",
|
|
464
|
-
"sha256": "
|
|
472
|
+
"sha256": "c3c591323846bee24afc13ba0ab4eb275233eff84f57c1bb5d155a453bd127db"
|
|
465
473
|
},
|
|
466
474
|
{
|
|
467
475
|
"path": "scripts/harness_runtime.py",
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"adapter": "codebuddy",
|
|
5
5
|
"bundle_version": "0.2.73",
|
|
6
6
|
"requires": {
|
|
7
|
-
"minimumCliVersion": "0.2.
|
|
7
|
+
"minimumCliVersion": "0.2.92",
|
|
8
8
|
"capabilities": [
|
|
9
9
|
"sync@2",
|
|
10
10
|
"rules-sync@1",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"files": [
|
|
26
26
|
{
|
|
27
27
|
"path": ".harness-build.json",
|
|
28
|
-
"sha256": "
|
|
28
|
+
"sha256": "a5be6a6fa1c408d1182053983524183d9d21c1c8b62ffb41cd789fd87115fefe"
|
|
29
29
|
},
|
|
30
30
|
{
|
|
31
31
|
"path": "agents/harness-evaluator.md",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
},
|
|
82
82
|
{
|
|
83
83
|
"path": "contracts/workflow-policy.json",
|
|
84
|
-
"sha256": "
|
|
84
|
+
"sha256": "69fec9ed7eb01b5d9f5b4fcc44e0c983f67acb15a25c418c9934d6496f3d75c8"
|
|
85
85
|
},
|
|
86
86
|
{
|
|
87
87
|
"path": "harness-apidoc/checklist.md",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
},
|
|
94
94
|
{
|
|
95
95
|
"path": "harness-apidoc/SKILL.md",
|
|
96
|
-
"sha256": "
|
|
96
|
+
"sha256": "890323b3d31facb17f828e4064ca3a0a9e5202ad8b5f26292b79a33937a5d0f2"
|
|
97
97
|
},
|
|
98
98
|
{
|
|
99
99
|
"path": "harness-archive/checklist.md",
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
},
|
|
110
110
|
{
|
|
111
111
|
"path": "harness-archive/SKILL.md",
|
|
112
|
-
"sha256": "
|
|
112
|
+
"sha256": "3fa60c8eea96ce01d9eff6ff7c0473a128937a592a5c8e90e030a8c6c02d3d83"
|
|
113
113
|
},
|
|
114
114
|
{
|
|
115
115
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
},
|
|
126
126
|
{
|
|
127
127
|
"path": "harness-codebase-map/SKILL.md",
|
|
128
|
-
"sha256": "
|
|
128
|
+
"sha256": "0c4d80c68f933c0bcfa06c5dde4c4655c7c4ed1bf06055bc1df3476b63b604a7"
|
|
129
129
|
},
|
|
130
130
|
{
|
|
131
131
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -163,13 +163,17 @@
|
|
|
163
163
|
"path": "harness-codebase-map/templates/TESTING.md",
|
|
164
164
|
"sha256": "3e19408d0d711a8a9432a17b6f85e025d20e19c31fa385bacb622012e300c015"
|
|
165
165
|
},
|
|
166
|
+
{
|
|
167
|
+
"path": "harness-execute/SKILL.md",
|
|
168
|
+
"sha256": "ff1b703dd1dc91e6c944c8181be84c349f0979d1e1578dec6051bf90650fdafe"
|
|
169
|
+
},
|
|
166
170
|
{
|
|
167
171
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
168
|
-
"sha256": "
|
|
172
|
+
"sha256": "f61d8105d96c6bfc55618cb36627567236c792ecbd8a6649bdcd119611575319"
|
|
169
173
|
},
|
|
170
174
|
{
|
|
171
175
|
"path": "harness-knowledge-query/SKILL.md",
|
|
172
|
-
"sha256": "
|
|
176
|
+
"sha256": "9c68c16ea2fed5a29e10711bac8082f7d9d531d4d0e499a2588d7e3508e96e78"
|
|
173
177
|
},
|
|
174
178
|
{
|
|
175
179
|
"path": "harness-package/checklist.md",
|
|
@@ -181,31 +185,31 @@
|
|
|
181
185
|
},
|
|
182
186
|
{
|
|
183
187
|
"path": "harness-package/SKILL.md",
|
|
184
|
-
"sha256": "
|
|
188
|
+
"sha256": "f205a240a6c2523995d34eb37639f3a21a3bc1fcf7fd5a3c32824fdd501d3739"
|
|
185
189
|
},
|
|
186
190
|
{
|
|
187
191
|
"path": "harness-plan/checklist.md",
|
|
188
|
-
"sha256": "
|
|
192
|
+
"sha256": "019e3889482cb3583a986e34d6dd9e8f4b0f17b6dbeb07a95ee826b9d161b53e"
|
|
189
193
|
},
|
|
190
194
|
{
|
|
191
195
|
"path": "harness-plan/protocols.md",
|
|
192
|
-
"sha256": "
|
|
196
|
+
"sha256": "ee15618cbe4005ec1efd5ae91b0105920b929a9eedba8dffd29183efadf52485"
|
|
193
197
|
},
|
|
194
198
|
{
|
|
195
199
|
"path": "harness-plan/reference.md",
|
|
196
|
-
"sha256": "
|
|
200
|
+
"sha256": "f1c2442ba4ed31456a878cadb34307923a494bb53b973be4b25e85f3377caa73"
|
|
197
201
|
},
|
|
198
202
|
{
|
|
199
203
|
"path": "harness-plan/SKILL.md",
|
|
200
|
-
"sha256": "
|
|
204
|
+
"sha256": "72b1d30d247347fcbac2b11db47a7c24079942078075853b77001875d2d41ba7"
|
|
201
205
|
},
|
|
202
206
|
{
|
|
203
207
|
"path": "harness-pull/SKILL.md",
|
|
204
|
-
"sha256": "
|
|
208
|
+
"sha256": "765279315e3af24c76d6f8d466e78fa3ef22c9f37e7e3082445c151b1d958422"
|
|
205
209
|
},
|
|
206
210
|
{
|
|
207
211
|
"path": "harness-push/SKILL.md",
|
|
208
|
-
"sha256": "
|
|
212
|
+
"sha256": "07368b3a61bd6e378fb285e84c257f023dbe0df47f4e3927a2176fe49fddd5dc"
|
|
209
213
|
},
|
|
210
214
|
{
|
|
211
215
|
"path": "harness-review/checklist.md",
|
|
@@ -213,7 +217,7 @@
|
|
|
213
217
|
},
|
|
214
218
|
{
|
|
215
219
|
"path": "harness-review/protocols.md",
|
|
216
|
-
"sha256": "
|
|
220
|
+
"sha256": "8eb72639f8c424e3d1d8c8eb72d7fec4cf4f4ded7f02cd6db90808ac7efe46fc"
|
|
217
221
|
},
|
|
218
222
|
{
|
|
219
223
|
"path": "harness-review/reference.md",
|
|
@@ -221,7 +225,7 @@
|
|
|
221
225
|
},
|
|
222
226
|
{
|
|
223
227
|
"path": "harness-review/SKILL.md",
|
|
224
|
-
"sha256": "
|
|
228
|
+
"sha256": "0072b19d1453858ade13a5b9c32d69b98404fa648c1079cb99bdff734dd1d7d1"
|
|
225
229
|
},
|
|
226
230
|
{
|
|
227
231
|
"path": "harness-run/checklist.md",
|
|
@@ -237,11 +241,11 @@
|
|
|
237
241
|
},
|
|
238
242
|
{
|
|
239
243
|
"path": "harness-run/SKILL.md",
|
|
240
|
-
"sha256": "
|
|
244
|
+
"sha256": "4d925c3ddac0e4b20a61bf8d59e49244c740356482b5920b483ac11cbd87782e"
|
|
241
245
|
},
|
|
242
246
|
{
|
|
243
247
|
"path": "harness-submit/checklist.md",
|
|
244
|
-
"sha256": "
|
|
248
|
+
"sha256": "7c8ae24ee908ea50d3c77fc4048b358c0080383d5de5be5e2dee5a094d800385"
|
|
245
249
|
},
|
|
246
250
|
{
|
|
247
251
|
"path": "harness-submit/reference.md",
|
|
@@ -249,7 +253,7 @@
|
|
|
249
253
|
},
|
|
250
254
|
{
|
|
251
255
|
"path": "harness-submit/SKILL.md",
|
|
252
|
-
"sha256": "
|
|
256
|
+
"sha256": "f140c47f31398f561f6da48bb03a22b292468b7f8099ea09f21cf863b81bec53"
|
|
253
257
|
},
|
|
254
258
|
{
|
|
255
259
|
"path": "harness-sync/reference.md",
|
|
@@ -257,7 +261,7 @@
|
|
|
257
261
|
},
|
|
258
262
|
{
|
|
259
263
|
"path": "harness-sync/SKILL.md",
|
|
260
|
-
"sha256": "
|
|
264
|
+
"sha256": "7b1e4bbced69fbf2c69ec4fae0d2a766ee8cce644ea34d15e1730810a79c6ace"
|
|
261
265
|
},
|
|
262
266
|
{
|
|
263
267
|
"path": "harness-test/checklist.md",
|
|
@@ -281,7 +285,7 @@
|
|
|
281
285
|
},
|
|
282
286
|
{
|
|
283
287
|
"path": "harness-test/SKILL.md",
|
|
284
|
-
"sha256": "
|
|
288
|
+
"sha256": "5b0764c8ff187761c63291bf6fe77e71352a4977bf06502028ba6d920dc9cced"
|
|
285
289
|
},
|
|
286
290
|
{
|
|
287
291
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -347,17 +351,21 @@
|
|
|
347
351
|
"path": "README.md",
|
|
348
352
|
"sha256": "0037fa52e150adb6ee698c5d12aca8d5b200aca87668608ed36756a39d4113ef"
|
|
349
353
|
},
|
|
354
|
+
{
|
|
355
|
+
"path": "scripts/harness_adoption_metrics.py",
|
|
356
|
+
"sha256": "21e0c2c0708ba6bff1b6261994c6df0f9ff53166cdd30b8a4e6d7efc553a84de"
|
|
357
|
+
},
|
|
350
358
|
{
|
|
351
359
|
"path": "scripts/harness_apidoc.py",
|
|
352
360
|
"sha256": "3fa77ffabf99075a90374d9a4b2ddca3408cc5b90610725d779d9d0dfb70fbbb"
|
|
353
361
|
},
|
|
354
362
|
{
|
|
355
363
|
"path": "scripts/harness_archive.py",
|
|
356
|
-
"sha256": "
|
|
364
|
+
"sha256": "73e6abdc6295a6f75bde0af424a8464d10239292bd444c34a6ab04573e2df3b9"
|
|
357
365
|
},
|
|
358
366
|
{
|
|
359
367
|
"path": "scripts/harness_change.py",
|
|
360
|
-
"sha256": "
|
|
368
|
+
"sha256": "9d35cfb6184028ee03c7d574a6d24b33f8cc437ba5c3dae9a0487d50566bda1f"
|
|
361
369
|
},
|
|
362
370
|
{
|
|
363
371
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -365,7 +373,7 @@
|
|
|
365
373
|
},
|
|
366
374
|
{
|
|
367
375
|
"path": "scripts/harness_context.py",
|
|
368
|
-
"sha256": "
|
|
376
|
+
"sha256": "aea16aa3aa038812de506c6ad2f68f7ece94d1f9ca8fb3cddbb1885a9df5611c"
|
|
369
377
|
},
|
|
370
378
|
{
|
|
371
379
|
"path": "scripts/harness_deploy.py",
|
|
@@ -381,11 +389,11 @@
|
|
|
381
389
|
},
|
|
382
390
|
{
|
|
383
391
|
"path": "scripts/harness_events_sync.py",
|
|
384
|
-
"sha256": "
|
|
392
|
+
"sha256": "581bcfd458ae75358927a1ac1059ed667bfd23a160a9b9554ea0001e6ee8d619"
|
|
385
393
|
},
|
|
386
394
|
{
|
|
387
395
|
"path": "scripts/harness_events.py",
|
|
388
|
-
"sha256": "
|
|
396
|
+
"sha256": "92f457533b441493e98992bd4c26d7afbc93d48d35dbed443f24ac98b341bcbc"
|
|
389
397
|
},
|
|
390
398
|
{
|
|
391
399
|
"path": "scripts/harness_execution_contracts.py",
|
|
@@ -393,11 +401,11 @@
|
|
|
393
401
|
},
|
|
394
402
|
{
|
|
395
403
|
"path": "scripts/harness_fixback.py",
|
|
396
|
-
"sha256": "
|
|
404
|
+
"sha256": "2ba83e62320fe47f2a0a7d46d41d6b6338e3e8a51fcdb70c89605ad82f421d6f"
|
|
397
405
|
},
|
|
398
406
|
{
|
|
399
407
|
"path": "scripts/harness_gate.py",
|
|
400
|
-
"sha256": "
|
|
408
|
+
"sha256": "20f6a9e6e3cb6efbb3bcecc3e6b01a41615140ff383f035ab2c71952022210e4"
|
|
401
409
|
},
|
|
402
410
|
{
|
|
403
411
|
"path": "scripts/harness_headless.py",
|
|
@@ -413,7 +421,7 @@
|
|
|
413
421
|
},
|
|
414
422
|
{
|
|
415
423
|
"path": "scripts/harness_ledger.py",
|
|
416
|
-
"sha256": "
|
|
424
|
+
"sha256": "3952d8af287272b667976e18a61204833ca275e14d21c581a3ff534fb9d95523"
|
|
417
425
|
},
|
|
418
426
|
{
|
|
419
427
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -425,11 +433,11 @@
|
|
|
425
433
|
},
|
|
426
434
|
{
|
|
427
435
|
"path": "scripts/harness_paths.py",
|
|
428
|
-
"sha256": "
|
|
436
|
+
"sha256": "01615e63ef7df250ff9a6a86c3cf2b9dd429696afc494e2f88113e314758bf35"
|
|
429
437
|
},
|
|
430
438
|
{
|
|
431
439
|
"path": "scripts/harness_phase.py",
|
|
432
|
-
"sha256": "
|
|
440
|
+
"sha256": "5216a015903cc0905b98f94be7cb4790adda836891ce4f7c065e2712226cd0b6"
|
|
433
441
|
},
|
|
434
442
|
{
|
|
435
443
|
"path": "scripts/harness_plan_aggregate.py",
|
|
@@ -437,7 +445,7 @@
|
|
|
437
445
|
},
|
|
438
446
|
{
|
|
439
447
|
"path": "scripts/harness_plan_finalize.py",
|
|
440
|
-
"sha256": "
|
|
448
|
+
"sha256": "c045b8c10e936323c1c0de9617283b37ce23b0c70d31521107f78e7e6f7085e7"
|
|
441
449
|
},
|
|
442
450
|
{
|
|
443
451
|
"path": "scripts/harness_preflight.py",
|
|
@@ -461,7 +469,7 @@
|
|
|
461
469
|
},
|
|
462
470
|
{
|
|
463
471
|
"path": "scripts/harness_review.py",
|
|
464
|
-
"sha256": "
|
|
472
|
+
"sha256": "c3c591323846bee24afc13ba0ab4eb275233eff84f57c1bb5d155a453bd127db"
|
|
465
473
|
},
|
|
466
474
|
{
|
|
467
475
|
"path": "scripts/harness_runtime.py",
|