@hunter-harness/workflow-harness 0.2.1 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/harness/bundles/general/claude-code/.harness-build.json +1 -1
- package/harness/bundles/general/claude-code/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-archive/reference.md +2 -8
- package/harness/bundles/general/claude-code/harness-codebase-map/SKILL.md +2 -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 +474 -122
- package/harness/bundles/general/claude-code/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-plan/SKILL.md +2 -1
- package/harness/bundles/general/claude-code/harness-review/SKILL.md +5 -1
- package/harness/bundles/general/claude-code/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-run/checklist.md +1 -1
- package/harness/bundles/general/claude-code/harness-submit/SKILL.md +2 -2
- package/harness/bundles/general/claude-code/harness-submit/checklist.md +30 -6
- package/harness/bundles/general/claude-code/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-test/SKILL.md +2 -2
- package/harness/bundles/general/claude-code/harness-test/checklist.md +1 -1
- package/harness/bundles/general/claude-code/harness-test/pitfalls.md +16 -0
- package/harness/bundles/general/claude-code/harness-test/scripts/runtime-helpers.mjs +216 -0
- package/harness/bundles/general/claude-code/protocols/archive-report-protocol.md +1 -1
- package/harness/bundles/general/claude-code/protocols/ledger-protocol.md +55 -2
- package/harness/bundles/general/claude-code/protocols/report-pipeline-protocol.md +1 -8
- package/harness/bundles/general/claude-code/protocols/sensitive-info-protocol.md +13 -0
- package/harness/bundles/general/claude-code/protocols/state-layout-protocol.md +24 -0
- package/harness/bundles/general/claude-code/scripts/harness_archive.py +31 -14
- package/harness/bundles/general/claude-code/scripts/harness_check_gate.py +111 -0
- package/harness/bundles/general/claude-code/scripts/harness_deploy.py +179 -4
- package/harness/bundles/general/claude-code/scripts/harness_ledger.py +269 -3
- package/harness/bundles/general/claude-code/scripts/harness_preflight.py +72 -382
- package/harness/bundles/general/claude-code/scripts/harness_profile.py +742 -0
- package/harness/bundles/general/claude-code/scripts/harness_service.py +99 -2
- package/harness/bundles/general/claude-code/scripts/harness_state.py +179 -0
- package/harness/bundles/general/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/general/codebuddy/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-archive/reference.md +2 -8
- package/harness/bundles/general/codebuddy/harness-codebase-map/SKILL.md +2 -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 +474 -122
- package/harness/bundles/general/codebuddy/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-plan/SKILL.md +2 -1
- package/harness/bundles/general/codebuddy/harness-review/SKILL.md +5 -1
- package/harness/bundles/general/codebuddy/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-run/checklist.md +1 -1
- package/harness/bundles/general/codebuddy/harness-submit/SKILL.md +2 -2
- package/harness/bundles/general/codebuddy/harness-submit/checklist.md +30 -6
- package/harness/bundles/general/codebuddy/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-test/SKILL.md +2 -2
- package/harness/bundles/general/codebuddy/harness-test/checklist.md +1 -1
- package/harness/bundles/general/codebuddy/harness-test/pitfalls.md +16 -0
- package/harness/bundles/general/codebuddy/harness-test/scripts/runtime-helpers.mjs +216 -0
- package/harness/bundles/general/codebuddy/protocols/archive-report-protocol.md +1 -1
- package/harness/bundles/general/codebuddy/protocols/ledger-protocol.md +55 -2
- package/harness/bundles/general/codebuddy/protocols/report-pipeline-protocol.md +1 -8
- package/harness/bundles/general/codebuddy/protocols/sensitive-info-protocol.md +13 -0
- package/harness/bundles/general/codebuddy/protocols/state-layout-protocol.md +24 -0
- package/harness/bundles/general/codebuddy/scripts/harness_archive.py +31 -14
- package/harness/bundles/general/codebuddy/scripts/harness_check_gate.py +111 -0
- package/harness/bundles/general/codebuddy/scripts/harness_deploy.py +179 -4
- package/harness/bundles/general/codebuddy/scripts/harness_ledger.py +269 -3
- package/harness/bundles/general/codebuddy/scripts/harness_preflight.py +72 -382
- package/harness/bundles/general/codebuddy/scripts/harness_profile.py +742 -0
- package/harness/bundles/general/codebuddy/scripts/harness_service.py +99 -2
- package/harness/bundles/general/codebuddy/scripts/harness_state.py +179 -0
- package/harness/bundles/general/codex/.harness-build.json +1 -1
- package/harness/bundles/general/codex/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-archive/reference.md +2 -8
- package/harness/bundles/general/codex/harness-codebase-map/SKILL.md +2 -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 +474 -122
- package/harness/bundles/general/codex/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-plan/SKILL.md +2 -1
- package/harness/bundles/general/codex/harness-review/SKILL.md +5 -1
- package/harness/bundles/general/codex/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-run/checklist.md +1 -1
- package/harness/bundles/general/codex/harness-submit/SKILL.md +2 -2
- package/harness/bundles/general/codex/harness-submit/checklist.md +30 -6
- package/harness/bundles/general/codex/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-test/SKILL.md +2 -2
- package/harness/bundles/general/codex/harness-test/checklist.md +1 -1
- package/harness/bundles/general/codex/harness-test/pitfalls.md +16 -0
- package/harness/bundles/general/codex/harness-test/scripts/runtime-helpers.mjs +216 -0
- package/harness/bundles/general/codex/protocols/archive-report-protocol.md +1 -1
- package/harness/bundles/general/codex/protocols/ledger-protocol.md +55 -2
- package/harness/bundles/general/codex/protocols/report-pipeline-protocol.md +1 -8
- package/harness/bundles/general/codex/protocols/sensitive-info-protocol.md +13 -0
- package/harness/bundles/general/codex/protocols/state-layout-protocol.md +24 -0
- package/harness/bundles/general/codex/scripts/harness_archive.py +31 -14
- package/harness/bundles/general/codex/scripts/harness_check_gate.py +111 -0
- package/harness/bundles/general/codex/scripts/harness_deploy.py +179 -4
- package/harness/bundles/general/codex/scripts/harness_ledger.py +269 -3
- package/harness/bundles/general/codex/scripts/harness_preflight.py +72 -382
- package/harness/bundles/general/codex/scripts/harness_profile.py +742 -0
- package/harness/bundles/general/codex/scripts/harness_service.py +99 -2
- package/harness/bundles/general/codex/scripts/harness_state.py +179 -0
- package/harness/bundles/general/cursor/.harness-build.json +1 -1
- package/harness/bundles/general/cursor/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-archive/reference.md +2 -8
- package/harness/bundles/general/cursor/harness-codebase-map/SKILL.md +2 -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 +474 -122
- package/harness/bundles/general/cursor/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-plan/SKILL.md +2 -1
- package/harness/bundles/general/cursor/harness-review/SKILL.md +5 -1
- package/harness/bundles/general/cursor/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-run/checklist.md +1 -1
- package/harness/bundles/general/cursor/harness-submit/SKILL.md +2 -2
- package/harness/bundles/general/cursor/harness-submit/checklist.md +30 -6
- package/harness/bundles/general/cursor/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-test/SKILL.md +2 -2
- package/harness/bundles/general/cursor/harness-test/checklist.md +1 -1
- package/harness/bundles/general/cursor/harness-test/pitfalls.md +16 -0
- package/harness/bundles/general/cursor/harness-test/scripts/runtime-helpers.mjs +216 -0
- package/harness/bundles/general/cursor/protocols/archive-report-protocol.md +1 -1
- package/harness/bundles/general/cursor/protocols/ledger-protocol.md +55 -2
- package/harness/bundles/general/cursor/protocols/report-pipeline-protocol.md +1 -8
- package/harness/bundles/general/cursor/protocols/sensitive-info-protocol.md +13 -0
- package/harness/bundles/general/cursor/protocols/state-layout-protocol.md +24 -0
- package/harness/bundles/general/cursor/scripts/harness_archive.py +31 -14
- package/harness/bundles/general/cursor/scripts/harness_check_gate.py +111 -0
- package/harness/bundles/general/cursor/scripts/harness_deploy.py +179 -4
- package/harness/bundles/general/cursor/scripts/harness_ledger.py +269 -3
- package/harness/bundles/general/cursor/scripts/harness_preflight.py +72 -382
- package/harness/bundles/general/cursor/scripts/harness_profile.py +742 -0
- package/harness/bundles/general/cursor/scripts/harness_service.py +99 -2
- package/harness/bundles/general/cursor/scripts/harness_state.py +179 -0
- package/harness/bundles/java/claude-code/.harness-build.json +1 -1
- package/harness/bundles/java/claude-code/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-archive/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-archive/reference.md +2 -8
- package/harness/bundles/java/claude-code/harness-codebase-map/SKILL.md +2 -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 +474 -122
- package/harness/bundles/java/claude-code/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-package/SKILL.md +3 -3
- package/harness/bundles/java/claude-code/harness-plan/SKILL.md +2 -1
- package/harness/bundles/java/claude-code/harness-review/SKILL.md +5 -1
- package/harness/bundles/java/claude-code/harness-run/SKILL.md +4 -4
- package/harness/bundles/java/claude-code/harness-run/checklist.md +3 -1
- package/harness/bundles/java/claude-code/harness-run/reference.md +6 -0
- package/harness/bundles/java/claude-code/harness-submit/SKILL.md +3 -3
- package/harness/bundles/java/claude-code/harness-submit/checklist.md +30 -6
- package/harness/bundles/java/claude-code/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-test/SKILL.md +5 -5
- package/harness/bundles/java/claude-code/harness-test/checklist.md +3 -1
- package/harness/bundles/java/claude-code/harness-test/pitfalls.md +16 -0
- package/harness/bundles/java/claude-code/harness-test/reference.md +2 -0
- package/harness/bundles/java/claude-code/harness-test/scripts/runtime-helpers.mjs +216 -0
- package/harness/bundles/java/claude-code/protocols/archive-report-protocol.md +1 -1
- package/harness/bundles/java/claude-code/protocols/ledger-protocol.md +55 -2
- package/harness/bundles/java/claude-code/protocols/report-pipeline-protocol.md +1 -8
- package/harness/bundles/java/claude-code/protocols/sensitive-info-protocol.md +13 -0
- package/harness/bundles/java/claude-code/protocols/state-layout-protocol.md +24 -0
- package/harness/bundles/java/claude-code/scripts/harness_archive.py +31 -14
- package/harness/bundles/java/claude-code/scripts/harness_check_gate.py +111 -0
- package/harness/bundles/java/claude-code/scripts/harness_deploy.py +179 -4
- package/harness/bundles/java/claude-code/scripts/harness_ledger.py +269 -3
- package/harness/bundles/java/claude-code/scripts/harness_preflight.py +72 -382
- package/harness/bundles/java/claude-code/scripts/harness_profile.py +742 -0
- package/harness/bundles/java/claude-code/scripts/harness_service.py +99 -2
- package/harness/bundles/java/claude-code/scripts/harness_state.py +179 -0
- package/harness/bundles/java/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/java/codebuddy/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-archive/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-archive/reference.md +2 -8
- package/harness/bundles/java/codebuddy/harness-codebase-map/SKILL.md +2 -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 +474 -122
- package/harness/bundles/java/codebuddy/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-package/SKILL.md +3 -3
- package/harness/bundles/java/codebuddy/harness-plan/SKILL.md +2 -1
- package/harness/bundles/java/codebuddy/harness-review/SKILL.md +5 -1
- package/harness/bundles/java/codebuddy/harness-run/SKILL.md +4 -4
- package/harness/bundles/java/codebuddy/harness-run/checklist.md +3 -1
- package/harness/bundles/java/codebuddy/harness-run/reference.md +6 -0
- package/harness/bundles/java/codebuddy/harness-submit/SKILL.md +3 -3
- package/harness/bundles/java/codebuddy/harness-submit/checklist.md +30 -6
- package/harness/bundles/java/codebuddy/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-test/SKILL.md +5 -5
- package/harness/bundles/java/codebuddy/harness-test/checklist.md +3 -1
- package/harness/bundles/java/codebuddy/harness-test/pitfalls.md +16 -0
- package/harness/bundles/java/codebuddy/harness-test/reference.md +2 -0
- package/harness/bundles/java/codebuddy/harness-test/scripts/runtime-helpers.mjs +216 -0
- package/harness/bundles/java/codebuddy/protocols/archive-report-protocol.md +1 -1
- package/harness/bundles/java/codebuddy/protocols/ledger-protocol.md +55 -2
- package/harness/bundles/java/codebuddy/protocols/report-pipeline-protocol.md +1 -8
- package/harness/bundles/java/codebuddy/protocols/sensitive-info-protocol.md +13 -0
- package/harness/bundles/java/codebuddy/protocols/state-layout-protocol.md +24 -0
- package/harness/bundles/java/codebuddy/scripts/harness_archive.py +31 -14
- package/harness/bundles/java/codebuddy/scripts/harness_check_gate.py +111 -0
- package/harness/bundles/java/codebuddy/scripts/harness_deploy.py +179 -4
- package/harness/bundles/java/codebuddy/scripts/harness_ledger.py +269 -3
- package/harness/bundles/java/codebuddy/scripts/harness_preflight.py +72 -382
- package/harness/bundles/java/codebuddy/scripts/harness_profile.py +742 -0
- package/harness/bundles/java/codebuddy/scripts/harness_service.py +99 -2
- package/harness/bundles/java/codebuddy/scripts/harness_state.py +179 -0
- package/harness/bundles/java/codex/.harness-build.json +1 -1
- package/harness/bundles/java/codex/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-archive/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-archive/reference.md +2 -8
- package/harness/bundles/java/codex/harness-codebase-map/SKILL.md +2 -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 +474 -122
- package/harness/bundles/java/codex/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-package/SKILL.md +3 -3
- package/harness/bundles/java/codex/harness-plan/SKILL.md +2 -1
- package/harness/bundles/java/codex/harness-review/SKILL.md +5 -1
- package/harness/bundles/java/codex/harness-run/SKILL.md +4 -4
- package/harness/bundles/java/codex/harness-run/checklist.md +3 -1
- package/harness/bundles/java/codex/harness-run/reference.md +6 -0
- package/harness/bundles/java/codex/harness-submit/SKILL.md +3 -3
- package/harness/bundles/java/codex/harness-submit/checklist.md +30 -6
- package/harness/bundles/java/codex/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-test/SKILL.md +5 -5
- package/harness/bundles/java/codex/harness-test/checklist.md +3 -1
- package/harness/bundles/java/codex/harness-test/pitfalls.md +16 -0
- package/harness/bundles/java/codex/harness-test/reference.md +2 -0
- package/harness/bundles/java/codex/harness-test/scripts/runtime-helpers.mjs +216 -0
- package/harness/bundles/java/codex/protocols/archive-report-protocol.md +1 -1
- package/harness/bundles/java/codex/protocols/ledger-protocol.md +55 -2
- package/harness/bundles/java/codex/protocols/report-pipeline-protocol.md +1 -8
- package/harness/bundles/java/codex/protocols/sensitive-info-protocol.md +13 -0
- package/harness/bundles/java/codex/protocols/state-layout-protocol.md +24 -0
- package/harness/bundles/java/codex/scripts/harness_archive.py +31 -14
- package/harness/bundles/java/codex/scripts/harness_check_gate.py +111 -0
- package/harness/bundles/java/codex/scripts/harness_deploy.py +179 -4
- package/harness/bundles/java/codex/scripts/harness_ledger.py +269 -3
- package/harness/bundles/java/codex/scripts/harness_preflight.py +72 -382
- package/harness/bundles/java/codex/scripts/harness_profile.py +742 -0
- package/harness/bundles/java/codex/scripts/harness_service.py +99 -2
- package/harness/bundles/java/codex/scripts/harness_state.py +179 -0
- package/harness/bundles/java/cursor/.harness-build.json +1 -1
- package/harness/bundles/java/cursor/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-archive/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-archive/reference.md +2 -8
- package/harness/bundles/java/cursor/harness-codebase-map/SKILL.md +2 -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 +474 -122
- package/harness/bundles/java/cursor/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-package/SKILL.md +3 -3
- package/harness/bundles/java/cursor/harness-plan/SKILL.md +2 -1
- package/harness/bundles/java/cursor/harness-review/SKILL.md +5 -1
- package/harness/bundles/java/cursor/harness-run/SKILL.md +4 -4
- package/harness/bundles/java/cursor/harness-run/checklist.md +3 -1
- package/harness/bundles/java/cursor/harness-run/reference.md +6 -0
- package/harness/bundles/java/cursor/harness-submit/SKILL.md +3 -3
- package/harness/bundles/java/cursor/harness-submit/checklist.md +30 -6
- package/harness/bundles/java/cursor/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-test/SKILL.md +5 -5
- package/harness/bundles/java/cursor/harness-test/checklist.md +3 -1
- package/harness/bundles/java/cursor/harness-test/pitfalls.md +16 -0
- package/harness/bundles/java/cursor/harness-test/reference.md +2 -0
- package/harness/bundles/java/cursor/harness-test/scripts/runtime-helpers.mjs +216 -0
- package/harness/bundles/java/cursor/protocols/archive-report-protocol.md +1 -1
- package/harness/bundles/java/cursor/protocols/ledger-protocol.md +55 -2
- package/harness/bundles/java/cursor/protocols/report-pipeline-protocol.md +1 -8
- package/harness/bundles/java/cursor/protocols/sensitive-info-protocol.md +13 -0
- package/harness/bundles/java/cursor/protocols/state-layout-protocol.md +24 -0
- package/harness/bundles/java/cursor/scripts/harness_archive.py +31 -14
- package/harness/bundles/java/cursor/scripts/harness_check_gate.py +111 -0
- package/harness/bundles/java/cursor/scripts/harness_deploy.py +179 -4
- package/harness/bundles/java/cursor/scripts/harness_ledger.py +269 -3
- package/harness/bundles/java/cursor/scripts/harness_preflight.py +72 -382
- package/harness/bundles/java/cursor/scripts/harness_profile.py +742 -0
- package/harness/bundles/java/cursor/scripts/harness_service.py +99 -2
- package/harness/bundles/java/cursor/scripts/harness_state.py +179 -0
- package/harness/manifests/general/claude-code.json +44 -28
- package/harness/manifests/general/codebuddy.json +44 -28
- package/harness/manifests/general/codex.json +44 -28
- package/harness/manifests/general/cursor.json +44 -28
- package/harness/manifests/java/claude-code.json +48 -32
- package/harness/manifests/java/codebuddy.json +48 -32
- package/harness/manifests/java/codex.json +48 -32
- package/harness/manifests/java/cursor.json +48 -32
- 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": "codebuddy",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.3",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "7eb0b859d0d22a15f4729ffa7bbfb5c4417f59ad216ad662915e1588fcdb15ad"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "agents/harness-evaluator.md",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
33
|
"path": "harness-archive/reference.md",
|
|
34
|
-
"sha256": "
|
|
34
|
+
"sha256": "06c031d728c7f56c31be3b72004d3f82febfed4cd9c7ce5d046e7549ae8c994a"
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
37
|
"path": "harness-archive/scripts/gen-manifest.ps1",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"path": "harness-archive/SKILL.md",
|
|
42
|
-
"sha256": "
|
|
42
|
+
"sha256": "c6af13a6065cd2059b1e1d88392b9c9405f8b6401feca129de9e922d7a6078d7"
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
61
|
"path": "harness-codebase-map/SKILL.md",
|
|
62
|
-
"sha256": "
|
|
62
|
+
"sha256": "df375387d945c5d18aaba1c6018bb684f966d9a758e8cbf716ed050f2342459c"
|
|
63
63
|
},
|
|
64
64
|
{
|
|
65
65
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -119,15 +119,15 @@
|
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
121
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
122
|
-
"sha256": "
|
|
122
|
+
"sha256": "6ec4851ed5fd99975b9dc192e826d0b20c24df638da4f428773476d29f7db7de"
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
125
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
126
|
-
"sha256": "
|
|
126
|
+
"sha256": "6df316bfecad55bf25ab8cfa22408e258fee2ea7ed3d1b2d910549051dc019e3"
|
|
127
127
|
},
|
|
128
128
|
{
|
|
129
129
|
"path": "harness-knowledge-query/SKILL.md",
|
|
130
|
-
"sha256": "
|
|
130
|
+
"sha256": "6cff193da81056671e57fa88fd5aea81818fb69e921f2e03bba2296c7c808d60"
|
|
131
131
|
},
|
|
132
132
|
{
|
|
133
133
|
"path": "harness-plan/checklist.md",
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
},
|
|
144
144
|
{
|
|
145
145
|
"path": "harness-plan/SKILL.md",
|
|
146
|
-
"sha256": "
|
|
146
|
+
"sha256": "8285c7d1a1f652d2b95fb250fedb71240f49398ab52f29fa3ef0c82066429ed6"
|
|
147
147
|
},
|
|
148
148
|
{
|
|
149
149
|
"path": "harness-review/checklist.md",
|
|
@@ -159,11 +159,11 @@
|
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
161
|
"path": "harness-review/SKILL.md",
|
|
162
|
-
"sha256": "
|
|
162
|
+
"sha256": "c122f453e7b16c014d8c57750ab0a3e8dbe9d211f697c778b302866a579841e8"
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
165
|
"path": "harness-run/checklist.md",
|
|
166
|
-
"sha256": "
|
|
166
|
+
"sha256": "6804247fa8fcb0dd234b1dbb7f7cfbe93d7b8d1f4bf3486246e808725a5dae99"
|
|
167
167
|
},
|
|
168
168
|
{
|
|
169
169
|
"path": "harness-run/protocols.md",
|
|
@@ -175,11 +175,11 @@
|
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
177
|
"path": "harness-run/SKILL.md",
|
|
178
|
-
"sha256": "
|
|
178
|
+
"sha256": "23bf2d8eb5c5c36daa8608584458931531141398143846cac91ea2ca3e9a8b1e"
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"path": "harness-submit/checklist.md",
|
|
182
|
-
"sha256": "
|
|
182
|
+
"sha256": "fed0521d7bbcb66a71534030fdb99a31d8e5ca4e950e7b56438084c8722af996"
|
|
183
183
|
},
|
|
184
184
|
{
|
|
185
185
|
"path": "harness-submit/reference.md",
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
189
|
"path": "harness-submit/SKILL.md",
|
|
190
|
-
"sha256": "
|
|
190
|
+
"sha256": "3e1822b3cde8f75163da743849209ddab05707f27c4634daa6ce9fb9d8d06dbd"
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
"path": "harness-sync/reference.md",
|
|
@@ -195,27 +195,31 @@
|
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
197
|
"path": "harness-sync/SKILL.md",
|
|
198
|
-
"sha256": "
|
|
198
|
+
"sha256": "47e6ffbb80460468a13e1c1d4fd1877adc65f54134612593c907b87f46016c47"
|
|
199
199
|
},
|
|
200
200
|
{
|
|
201
201
|
"path": "harness-test/checklist.md",
|
|
202
|
-
"sha256": "
|
|
202
|
+
"sha256": "e4f27ba243fae50b69588bd327d164c8e1e1596dc2c111574ec5f43f1605f4a2"
|
|
203
203
|
},
|
|
204
204
|
{
|
|
205
205
|
"path": "harness-test/pitfalls.md",
|
|
206
|
-
"sha256": "
|
|
206
|
+
"sha256": "074ee0b2fb710840b6a323c4d677f14ac89e5cc77c36466bc89f9772a8443842"
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
"path": "harness-test/reference.md",
|
|
210
210
|
"sha256": "add958d6c55037ed12b4c51ba5af77ef72eb89a5835249ea092d7f6d93031760"
|
|
211
211
|
},
|
|
212
|
+
{
|
|
213
|
+
"path": "harness-test/scripts/runtime-helpers.mjs",
|
|
214
|
+
"sha256": "349fcdfb48bfbe4b16fcd4c349e14cd25dd6be0414d959a633eac9a06e5773c2"
|
|
215
|
+
},
|
|
212
216
|
{
|
|
213
217
|
"path": "harness-test/SKILL.md",
|
|
214
|
-
"sha256": "
|
|
218
|
+
"sha256": "5dfece7f804c00f2e0b2baeb407fcb5ffd94707dd4fd5d061b825ddebd278bfe"
|
|
215
219
|
},
|
|
216
220
|
{
|
|
217
221
|
"path": "protocols/archive-report-protocol.md",
|
|
218
|
-
"sha256": "
|
|
222
|
+
"sha256": "e529e9e231f700e26b392105d290543e1347cb57e1ee940059a96a67a0ae9666"
|
|
219
223
|
},
|
|
220
224
|
{
|
|
221
225
|
"path": "protocols/evidence-based-reporting-protocol.md",
|
|
@@ -223,7 +227,7 @@
|
|
|
223
227
|
},
|
|
224
228
|
{
|
|
225
229
|
"path": "protocols/ledger-protocol.md",
|
|
226
|
-
"sha256": "
|
|
230
|
+
"sha256": "1971153eac12051f434af08416593fa63fb03eb4b2348c059daa6a4855e4af99"
|
|
227
231
|
},
|
|
228
232
|
{
|
|
229
233
|
"path": "protocols/powershell-protocol.md",
|
|
@@ -231,15 +235,15 @@
|
|
|
231
235
|
},
|
|
232
236
|
{
|
|
233
237
|
"path": "protocols/report-pipeline-protocol.md",
|
|
234
|
-
"sha256": "
|
|
238
|
+
"sha256": "988a311db58b8ce88544d28919cf7858fe1fa225af70fb604ae715805ac76d9e"
|
|
235
239
|
},
|
|
236
240
|
{
|
|
237
241
|
"path": "protocols/sensitive-info-protocol.md",
|
|
238
|
-
"sha256": "
|
|
242
|
+
"sha256": "152f87e3218c2eee89362c0ca00fea624e6e37e15c56ca7e28ad2202ef76acec"
|
|
239
243
|
},
|
|
240
244
|
{
|
|
241
245
|
"path": "protocols/state-layout-protocol.md",
|
|
242
|
-
"sha256": "
|
|
246
|
+
"sha256": "73fcaa67efb89714fd62896a7ce6b4e2932ea24cfcbf5c4e1faea5a451c97076"
|
|
243
247
|
},
|
|
244
248
|
{
|
|
245
249
|
"path": "protocols/submit-protocol.md",
|
|
@@ -251,11 +255,15 @@
|
|
|
251
255
|
},
|
|
252
256
|
{
|
|
253
257
|
"path": "scripts/harness_archive.py",
|
|
254
|
-
"sha256": "
|
|
258
|
+
"sha256": "ada5f736cd692eab1531288fecdf57ce36ff760b55dd470c4e0553a2c73608c4"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"path": "scripts/harness_check_gate.py",
|
|
262
|
+
"sha256": "9cae8f7fc2ff4519b0c27566b9d5aaa81bd8921153ec1f9534cb5d08af3a21b3"
|
|
255
263
|
},
|
|
256
264
|
{
|
|
257
265
|
"path": "scripts/harness_deploy.py",
|
|
258
|
-
"sha256": "
|
|
266
|
+
"sha256": "54f1bcdae1326588db65eec20cc650c41365b14ceb55655430ddde8343b60798"
|
|
259
267
|
},
|
|
260
268
|
{
|
|
261
269
|
"path": "scripts/harness_events.py",
|
|
@@ -263,15 +271,23 @@
|
|
|
263
271
|
},
|
|
264
272
|
{
|
|
265
273
|
"path": "scripts/harness_ledger.py",
|
|
266
|
-
"sha256": "
|
|
274
|
+
"sha256": "e91f2f02f46ebfd0946a25085abb02965c60051097c5b24e05a70b5d3808648e"
|
|
267
275
|
},
|
|
268
276
|
{
|
|
269
277
|
"path": "scripts/harness_preflight.py",
|
|
270
|
-
"sha256": "
|
|
278
|
+
"sha256": "7ef079a96f0e76b7fd54eb06cdab915b0dd7f0e59d368494a72faf508d40ba2f"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"path": "scripts/harness_profile.py",
|
|
282
|
+
"sha256": "070bd61231285e09a83752ec5c5a7b9fdc4919f36ce497643131336c8a6d77f6"
|
|
271
283
|
},
|
|
272
284
|
{
|
|
273
285
|
"path": "scripts/harness_service.py",
|
|
274
|
-
"sha256": "
|
|
286
|
+
"sha256": "fc471f90efcf03e26fcb6cd7757af37a0a1eea1184e2b57046665547a77f240f"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"path": "scripts/harness_state.py",
|
|
290
|
+
"sha256": "b33efacf9aba471f9f542f738c653acf274ed3ce57c4326520036e6df0f18966"
|
|
275
291
|
}
|
|
276
292
|
]
|
|
277
293
|
}
|
|
@@ -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.3",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "ce551d13290f3c03675b1007cc35dc04e38930f875d68770b28b3934dc705cad"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "CONTEXT.md",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
{
|
|
21
21
|
"path": "harness-archive/reference.md",
|
|
22
|
-
"sha256": "
|
|
22
|
+
"sha256": "06c031d728c7f56c31be3b72004d3f82febfed4cd9c7ce5d046e7549ae8c994a"
|
|
23
23
|
},
|
|
24
24
|
{
|
|
25
25
|
"path": "harness-archive/scripts/gen-manifest.ps1",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
29
|
"path": "harness-archive/SKILL.md",
|
|
30
|
-
"sha256": "
|
|
30
|
+
"sha256": "ab97f828df9eb3df8b0bfe2070758246d9b9c04563afde36c06c444389b21d75"
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
33
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
"path": "harness-codebase-map/SKILL.md",
|
|
50
|
-
"sha256": "
|
|
50
|
+
"sha256": "779021b0a18a0293e5720d1233398987edc6aab72279b2fe04ae831d514dc07b"
|
|
51
51
|
},
|
|
52
52
|
{
|
|
53
53
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -107,15 +107,15 @@
|
|
|
107
107
|
},
|
|
108
108
|
{
|
|
109
109
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
110
|
-
"sha256": "
|
|
110
|
+
"sha256": "6ec4851ed5fd99975b9dc192e826d0b20c24df638da4f428773476d29f7db7de"
|
|
111
111
|
},
|
|
112
112
|
{
|
|
113
113
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
114
|
-
"sha256": "
|
|
114
|
+
"sha256": "254da35251535d0b254d089b25f25991ce808bdce42c164ea178e5202b5da4a2"
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
117
|
"path": "harness-knowledge-query/SKILL.md",
|
|
118
|
-
"sha256": "
|
|
118
|
+
"sha256": "cbb9e9d7b6c302db96256432a304aab54b30ce3f12469e7d3f74db63e850cea9"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
121
|
"path": "harness-plan/checklist.md",
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
},
|
|
132
132
|
{
|
|
133
133
|
"path": "harness-plan/SKILL.md",
|
|
134
|
-
"sha256": "
|
|
134
|
+
"sha256": "55d9d017b4c9ce62545f2a0aa101ac21eb1eb6b9fa5f951a76ba58b877b8d146"
|
|
135
135
|
},
|
|
136
136
|
{
|
|
137
137
|
"path": "harness-review/checklist.md",
|
|
@@ -147,11 +147,11 @@
|
|
|
147
147
|
},
|
|
148
148
|
{
|
|
149
149
|
"path": "harness-review/SKILL.md",
|
|
150
|
-
"sha256": "
|
|
150
|
+
"sha256": "f1cf9989d43b18c88b45ccca80bdcef25da06cda00c036f7a8d73111eb633fd0"
|
|
151
151
|
},
|
|
152
152
|
{
|
|
153
153
|
"path": "harness-run/checklist.md",
|
|
154
|
-
"sha256": "
|
|
154
|
+
"sha256": "6804247fa8fcb0dd234b1dbb7f7cfbe93d7b8d1f4bf3486246e808725a5dae99"
|
|
155
155
|
},
|
|
156
156
|
{
|
|
157
157
|
"path": "harness-run/protocols.md",
|
|
@@ -163,11 +163,11 @@
|
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
165
|
"path": "harness-run/SKILL.md",
|
|
166
|
-
"sha256": "
|
|
166
|
+
"sha256": "ff23163c329513e59e4d5ca92b5d7a471e4de81e4b80453624c04f19373943d9"
|
|
167
167
|
},
|
|
168
168
|
{
|
|
169
169
|
"path": "harness-submit/checklist.md",
|
|
170
|
-
"sha256": "
|
|
170
|
+
"sha256": "fed0521d7bbcb66a71534030fdb99a31d8e5ca4e950e7b56438084c8722af996"
|
|
171
171
|
},
|
|
172
172
|
{
|
|
173
173
|
"path": "harness-submit/reference.md",
|
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
177
|
"path": "harness-submit/SKILL.md",
|
|
178
|
-
"sha256": "
|
|
178
|
+
"sha256": "3be5f01baea189596ddf2a08b7412b8c8bfc389dcc6ca20041b05ca51bfb66f7"
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"path": "harness-sync/reference.md",
|
|
@@ -183,27 +183,31 @@
|
|
|
183
183
|
},
|
|
184
184
|
{
|
|
185
185
|
"path": "harness-sync/SKILL.md",
|
|
186
|
-
"sha256": "
|
|
186
|
+
"sha256": "0d1c332778370a0799d6c79388e1b7768a41da4f906cbff3a08ace9f69d371ca"
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
189
|
"path": "harness-test/checklist.md",
|
|
190
|
-
"sha256": "
|
|
190
|
+
"sha256": "e4f27ba243fae50b69588bd327d164c8e1e1596dc2c111574ec5f43f1605f4a2"
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
"path": "harness-test/pitfalls.md",
|
|
194
|
-
"sha256": "
|
|
194
|
+
"sha256": "074ee0b2fb710840b6a323c4d677f14ac89e5cc77c36466bc89f9772a8443842"
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
197
|
"path": "harness-test/reference.md",
|
|
198
198
|
"sha256": "add958d6c55037ed12b4c51ba5af77ef72eb89a5835249ea092d7f6d93031760"
|
|
199
199
|
},
|
|
200
|
+
{
|
|
201
|
+
"path": "harness-test/scripts/runtime-helpers.mjs",
|
|
202
|
+
"sha256": "349fcdfb48bfbe4b16fcd4c349e14cd25dd6be0414d959a633eac9a06e5773c2"
|
|
203
|
+
},
|
|
200
204
|
{
|
|
201
205
|
"path": "harness-test/SKILL.md",
|
|
202
|
-
"sha256": "
|
|
206
|
+
"sha256": "bd0f054b844c22336071da9bda75b239bd662925d36d8dd541985474c1bfe8dc"
|
|
203
207
|
},
|
|
204
208
|
{
|
|
205
209
|
"path": "protocols/archive-report-protocol.md",
|
|
206
|
-
"sha256": "
|
|
210
|
+
"sha256": "e529e9e231f700e26b392105d290543e1347cb57e1ee940059a96a67a0ae9666"
|
|
207
211
|
},
|
|
208
212
|
{
|
|
209
213
|
"path": "protocols/evidence-based-reporting-protocol.md",
|
|
@@ -211,7 +215,7 @@
|
|
|
211
215
|
},
|
|
212
216
|
{
|
|
213
217
|
"path": "protocols/ledger-protocol.md",
|
|
214
|
-
"sha256": "
|
|
218
|
+
"sha256": "1971153eac12051f434af08416593fa63fb03eb4b2348c059daa6a4855e4af99"
|
|
215
219
|
},
|
|
216
220
|
{
|
|
217
221
|
"path": "protocols/powershell-protocol.md",
|
|
@@ -219,15 +223,15 @@
|
|
|
219
223
|
},
|
|
220
224
|
{
|
|
221
225
|
"path": "protocols/report-pipeline-protocol.md",
|
|
222
|
-
"sha256": "
|
|
226
|
+
"sha256": "988a311db58b8ce88544d28919cf7858fe1fa225af70fb604ae715805ac76d9e"
|
|
223
227
|
},
|
|
224
228
|
{
|
|
225
229
|
"path": "protocols/sensitive-info-protocol.md",
|
|
226
|
-
"sha256": "
|
|
230
|
+
"sha256": "152f87e3218c2eee89362c0ca00fea624e6e37e15c56ca7e28ad2202ef76acec"
|
|
227
231
|
},
|
|
228
232
|
{
|
|
229
233
|
"path": "protocols/state-layout-protocol.md",
|
|
230
|
-
"sha256": "
|
|
234
|
+
"sha256": "73fcaa67efb89714fd62896a7ce6b4e2932ea24cfcbf5c4e1faea5a451c97076"
|
|
231
235
|
},
|
|
232
236
|
{
|
|
233
237
|
"path": "protocols/submit-protocol.md",
|
|
@@ -239,11 +243,15 @@
|
|
|
239
243
|
},
|
|
240
244
|
{
|
|
241
245
|
"path": "scripts/harness_archive.py",
|
|
242
|
-
"sha256": "
|
|
246
|
+
"sha256": "ada5f736cd692eab1531288fecdf57ce36ff760b55dd470c4e0553a2c73608c4"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"path": "scripts/harness_check_gate.py",
|
|
250
|
+
"sha256": "9cae8f7fc2ff4519b0c27566b9d5aaa81bd8921153ec1f9534cb5d08af3a21b3"
|
|
243
251
|
},
|
|
244
252
|
{
|
|
245
253
|
"path": "scripts/harness_deploy.py",
|
|
246
|
-
"sha256": "
|
|
254
|
+
"sha256": "54f1bcdae1326588db65eec20cc650c41365b14ceb55655430ddde8343b60798"
|
|
247
255
|
},
|
|
248
256
|
{
|
|
249
257
|
"path": "scripts/harness_events.py",
|
|
@@ -251,15 +259,23 @@
|
|
|
251
259
|
},
|
|
252
260
|
{
|
|
253
261
|
"path": "scripts/harness_ledger.py",
|
|
254
|
-
"sha256": "
|
|
262
|
+
"sha256": "e91f2f02f46ebfd0946a25085abb02965c60051097c5b24e05a70b5d3808648e"
|
|
255
263
|
},
|
|
256
264
|
{
|
|
257
265
|
"path": "scripts/harness_preflight.py",
|
|
258
|
-
"sha256": "
|
|
266
|
+
"sha256": "7ef079a96f0e76b7fd54eb06cdab915b0dd7f0e59d368494a72faf508d40ba2f"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"path": "scripts/harness_profile.py",
|
|
270
|
+
"sha256": "070bd61231285e09a83752ec5c5a7b9fdc4919f36ce497643131336c8a6d77f6"
|
|
259
271
|
},
|
|
260
272
|
{
|
|
261
273
|
"path": "scripts/harness_service.py",
|
|
262
|
-
"sha256": "
|
|
274
|
+
"sha256": "fc471f90efcf03e26fcb6cd7757af37a0a1eea1184e2b57046665547a77f240f"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"path": "scripts/harness_state.py",
|
|
278
|
+
"sha256": "b33efacf9aba471f9f542f738c653acf274ed3ce57c4326520036e6df0f18966"
|
|
263
279
|
}
|
|
264
280
|
]
|
|
265
281
|
}
|
|
@@ -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.3",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "d034580154b81453729bce21940d93fbbe8791177143c6d3424c616599259721"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "CONTEXT.md",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
{
|
|
21
21
|
"path": "harness-archive/reference.md",
|
|
22
|
-
"sha256": "
|
|
22
|
+
"sha256": "06c031d728c7f56c31be3b72004d3f82febfed4cd9c7ce5d046e7549ae8c994a"
|
|
23
23
|
},
|
|
24
24
|
{
|
|
25
25
|
"path": "harness-archive/scripts/gen-manifest.ps1",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
29
|
"path": "harness-archive/SKILL.md",
|
|
30
|
-
"sha256": "
|
|
30
|
+
"sha256": "a29d918a6c10528d557fe9d1276a8b797e99c5fa530d652c398eae34d3d05d8e"
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
33
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
"path": "harness-codebase-map/SKILL.md",
|
|
50
|
-
"sha256": "
|
|
50
|
+
"sha256": "27f2c0460b6a29768c39eadb54d59398d1f0284e1ac9c63a692ad655296134ed"
|
|
51
51
|
},
|
|
52
52
|
{
|
|
53
53
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -107,15 +107,15 @@
|
|
|
107
107
|
},
|
|
108
108
|
{
|
|
109
109
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
110
|
-
"sha256": "
|
|
110
|
+
"sha256": "6ec4851ed5fd99975b9dc192e826d0b20c24df638da4f428773476d29f7db7de"
|
|
111
111
|
},
|
|
112
112
|
{
|
|
113
113
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
114
|
-
"sha256": "
|
|
114
|
+
"sha256": "13c73161eafe12032030afd338275a58501d78ccdc0d07fe5ed83555e356c872"
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
117
|
"path": "harness-knowledge-query/SKILL.md",
|
|
118
|
-
"sha256": "
|
|
118
|
+
"sha256": "59da7048a8ab63487334e96af970fc5b5efa2f9b238926c7168582689c2d1ce3"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
121
|
"path": "harness-plan/checklist.md",
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
},
|
|
132
132
|
{
|
|
133
133
|
"path": "harness-plan/SKILL.md",
|
|
134
|
-
"sha256": "
|
|
134
|
+
"sha256": "13dd0cadb844d4075dd63bda313e013c5f7fb56d88ea78bb4c6cd1da978ab115"
|
|
135
135
|
},
|
|
136
136
|
{
|
|
137
137
|
"path": "harness-review/checklist.md",
|
|
@@ -147,11 +147,11 @@
|
|
|
147
147
|
},
|
|
148
148
|
{
|
|
149
149
|
"path": "harness-review/SKILL.md",
|
|
150
|
-
"sha256": "
|
|
150
|
+
"sha256": "c84468b15067ae4c3ea53155a81b183a9002388d7a7ddefcb45f11775b6504e2"
|
|
151
151
|
},
|
|
152
152
|
{
|
|
153
153
|
"path": "harness-run/checklist.md",
|
|
154
|
-
"sha256": "
|
|
154
|
+
"sha256": "6804247fa8fcb0dd234b1dbb7f7cfbe93d7b8d1f4bf3486246e808725a5dae99"
|
|
155
155
|
},
|
|
156
156
|
{
|
|
157
157
|
"path": "harness-run/protocols.md",
|
|
@@ -163,11 +163,11 @@
|
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
165
|
"path": "harness-run/SKILL.md",
|
|
166
|
-
"sha256": "
|
|
166
|
+
"sha256": "3c1fe58508744bceb138e2f12d988068d2dd54f7e0bf6dc40e3643bb5258d605"
|
|
167
167
|
},
|
|
168
168
|
{
|
|
169
169
|
"path": "harness-submit/checklist.md",
|
|
170
|
-
"sha256": "
|
|
170
|
+
"sha256": "fed0521d7bbcb66a71534030fdb99a31d8e5ca4e950e7b56438084c8722af996"
|
|
171
171
|
},
|
|
172
172
|
{
|
|
173
173
|
"path": "harness-submit/reference.md",
|
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
177
|
"path": "harness-submit/SKILL.md",
|
|
178
|
-
"sha256": "
|
|
178
|
+
"sha256": "a81d00938c9c8c16e55e69f308bf87ec7cd9c39fc71a7b7004798ce9ba5e0769"
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"path": "harness-sync/reference.md",
|
|
@@ -183,27 +183,31 @@
|
|
|
183
183
|
},
|
|
184
184
|
{
|
|
185
185
|
"path": "harness-sync/SKILL.md",
|
|
186
|
-
"sha256": "
|
|
186
|
+
"sha256": "d55d0ede77495f8f1ce75d431c8c2c0d9d9830aeb032765693a79db5e700e20a"
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
189
|
"path": "harness-test/checklist.md",
|
|
190
|
-
"sha256": "
|
|
190
|
+
"sha256": "e4f27ba243fae50b69588bd327d164c8e1e1596dc2c111574ec5f43f1605f4a2"
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
"path": "harness-test/pitfalls.md",
|
|
194
|
-
"sha256": "
|
|
194
|
+
"sha256": "074ee0b2fb710840b6a323c4d677f14ac89e5cc77c36466bc89f9772a8443842"
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
197
|
"path": "harness-test/reference.md",
|
|
198
198
|
"sha256": "add958d6c55037ed12b4c51ba5af77ef72eb89a5835249ea092d7f6d93031760"
|
|
199
199
|
},
|
|
200
|
+
{
|
|
201
|
+
"path": "harness-test/scripts/runtime-helpers.mjs",
|
|
202
|
+
"sha256": "349fcdfb48bfbe4b16fcd4c349e14cd25dd6be0414d959a633eac9a06e5773c2"
|
|
203
|
+
},
|
|
200
204
|
{
|
|
201
205
|
"path": "harness-test/SKILL.md",
|
|
202
|
-
"sha256": "
|
|
206
|
+
"sha256": "f4ca204bdd68a4dc515e081a9c96d6c834c9ca9e98353dffa9e37cc89410d787"
|
|
203
207
|
},
|
|
204
208
|
{
|
|
205
209
|
"path": "protocols/archive-report-protocol.md",
|
|
206
|
-
"sha256": "
|
|
210
|
+
"sha256": "e529e9e231f700e26b392105d290543e1347cb57e1ee940059a96a67a0ae9666"
|
|
207
211
|
},
|
|
208
212
|
{
|
|
209
213
|
"path": "protocols/evidence-based-reporting-protocol.md",
|
|
@@ -211,7 +215,7 @@
|
|
|
211
215
|
},
|
|
212
216
|
{
|
|
213
217
|
"path": "protocols/ledger-protocol.md",
|
|
214
|
-
"sha256": "
|
|
218
|
+
"sha256": "1971153eac12051f434af08416593fa63fb03eb4b2348c059daa6a4855e4af99"
|
|
215
219
|
},
|
|
216
220
|
{
|
|
217
221
|
"path": "protocols/powershell-protocol.md",
|
|
@@ -219,15 +223,15 @@
|
|
|
219
223
|
},
|
|
220
224
|
{
|
|
221
225
|
"path": "protocols/report-pipeline-protocol.md",
|
|
222
|
-
"sha256": "
|
|
226
|
+
"sha256": "988a311db58b8ce88544d28919cf7858fe1fa225af70fb604ae715805ac76d9e"
|
|
223
227
|
},
|
|
224
228
|
{
|
|
225
229
|
"path": "protocols/sensitive-info-protocol.md",
|
|
226
|
-
"sha256": "
|
|
230
|
+
"sha256": "152f87e3218c2eee89362c0ca00fea624e6e37e15c56ca7e28ad2202ef76acec"
|
|
227
231
|
},
|
|
228
232
|
{
|
|
229
233
|
"path": "protocols/state-layout-protocol.md",
|
|
230
|
-
"sha256": "
|
|
234
|
+
"sha256": "73fcaa67efb89714fd62896a7ce6b4e2932ea24cfcbf5c4e1faea5a451c97076"
|
|
231
235
|
},
|
|
232
236
|
{
|
|
233
237
|
"path": "protocols/submit-protocol.md",
|
|
@@ -239,11 +243,15 @@
|
|
|
239
243
|
},
|
|
240
244
|
{
|
|
241
245
|
"path": "scripts/harness_archive.py",
|
|
242
|
-
"sha256": "
|
|
246
|
+
"sha256": "ada5f736cd692eab1531288fecdf57ce36ff760b55dd470c4e0553a2c73608c4"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"path": "scripts/harness_check_gate.py",
|
|
250
|
+
"sha256": "9cae8f7fc2ff4519b0c27566b9d5aaa81bd8921153ec1f9534cb5d08af3a21b3"
|
|
243
251
|
},
|
|
244
252
|
{
|
|
245
253
|
"path": "scripts/harness_deploy.py",
|
|
246
|
-
"sha256": "
|
|
254
|
+
"sha256": "54f1bcdae1326588db65eec20cc650c41365b14ceb55655430ddde8343b60798"
|
|
247
255
|
},
|
|
248
256
|
{
|
|
249
257
|
"path": "scripts/harness_events.py",
|
|
@@ -251,15 +259,23 @@
|
|
|
251
259
|
},
|
|
252
260
|
{
|
|
253
261
|
"path": "scripts/harness_ledger.py",
|
|
254
|
-
"sha256": "
|
|
262
|
+
"sha256": "e91f2f02f46ebfd0946a25085abb02965c60051097c5b24e05a70b5d3808648e"
|
|
255
263
|
},
|
|
256
264
|
{
|
|
257
265
|
"path": "scripts/harness_preflight.py",
|
|
258
|
-
"sha256": "
|
|
266
|
+
"sha256": "7ef079a96f0e76b7fd54eb06cdab915b0dd7f0e59d368494a72faf508d40ba2f"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"path": "scripts/harness_profile.py",
|
|
270
|
+
"sha256": "070bd61231285e09a83752ec5c5a7b9fdc4919f36ce497643131336c8a6d77f6"
|
|
259
271
|
},
|
|
260
272
|
{
|
|
261
273
|
"path": "scripts/harness_service.py",
|
|
262
|
-
"sha256": "
|
|
274
|
+
"sha256": "fc471f90efcf03e26fcb6cd7757af37a0a1eea1184e2b57046665547a77f240f"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"path": "scripts/harness_state.py",
|
|
278
|
+
"sha256": "b33efacf9aba471f9f542f738c653acf274ed3ce57c4326520036e6df0f18966"
|
|
263
279
|
}
|
|
264
280
|
]
|
|
265
281
|
}
|