@hunter-harness/workflow-harness 0.2.8 → 0.2.10
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 +3 -3
- package/harness/bundles/general/claude-code/harness-archive/SKILL.md +3 -3
- package/harness/bundles/general/claude-code/harness-archive/reference.md +30 -12
- package/harness/bundles/general/claude-code/harness-archive/templates/render-summary.mjs +5 -1
- package/harness/bundles/general/claude-code/harness-archive/templates/summary-data-template.json +6 -2
- package/harness/bundles/general/claude-code/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-knowledge-ingest/SKILL.md +3 -1
- package/harness/bundles/general/claude-code/harness-knowledge-ingest/reference.md +7 -0
- package/harness/bundles/general/claude-code/harness-knowledge-ingest/scripts/harness_knowledge.py +117 -0
- package/harness/bundles/general/claude-code/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-plan/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-plan/checklist.md +6 -0
- package/harness/bundles/general/claude-code/harness-review/SKILL.md +3 -3
- package/harness/bundles/general/claude-code/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-run/checklist.md +5 -0
- package/harness/bundles/general/claude-code/harness-run/reference.md +33 -1
- package/harness/bundles/general/claude-code/harness-submit/SKILL.md +15 -10
- package/harness/bundles/general/claude-code/harness-submit/checklist.md +40 -76
- package/harness/bundles/general/claude-code/harness-sync/SKILL.md +17 -2
- package/harness/bundles/general/claude-code/harness-sync/reference.md +2 -2
- package/harness/bundles/general/claude-code/harness-test/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-test/checklist.md +9 -0
- package/harness/bundles/general/claude-code/harness-test/pitfalls-java.md +14 -0
- package/harness/bundles/general/claude-code/harness-test/reference.md +38 -0
- package/harness/bundles/general/claude-code/protocols/archive-report-protocol.md +26 -4
- package/harness/bundles/general/claude-code/protocols/ledger-protocol.md +38 -0
- package/harness/bundles/general/claude-code/protocols/powershell-protocol.md +16 -0
- package/harness/bundles/general/claude-code/protocols/report-pipeline-protocol.md +17 -0
- package/harness/bundles/general/claude-code/protocols/state-layout-protocol.md +15 -0
- package/harness/bundles/general/claude-code/scripts/harness_archive.py +1209 -170
- package/harness/bundles/general/claude-code/scripts/harness_change.py +18 -0
- package/harness/bundles/general/claude-code/scripts/harness_deploy.py +1 -44
- package/harness/bundles/general/claude-code/scripts/harness_events.py +174 -25
- package/harness/bundles/general/claude-code/scripts/harness_gate.py +203 -29
- package/harness/bundles/general/claude-code/scripts/harness_integration.py +878 -0
- package/harness/bundles/general/claude-code/scripts/harness_ledger.py +457 -10
- package/harness/bundles/general/claude-code/scripts/harness_paths.py +315 -0
- package/harness/bundles/general/claude-code/scripts/harness_profile.py +45 -0
- package/harness/bundles/general/claude-code/scripts/harness_review.py +326 -0
- package/harness/bundles/general/claude-code/scripts/harness_sync.py +407 -0
- package/harness/bundles/general/claude-code/scripts/harness_test_guard.py +244 -49
- package/harness/bundles/general/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/general/codebuddy/contracts/workflow-policy.json +3 -3
- package/harness/bundles/general/codebuddy/harness-archive/SKILL.md +3 -3
- package/harness/bundles/general/codebuddy/harness-archive/reference.md +30 -12
- package/harness/bundles/general/codebuddy/harness-archive/templates/render-summary.mjs +5 -1
- package/harness/bundles/general/codebuddy/harness-archive/templates/summary-data-template.json +6 -2
- package/harness/bundles/general/codebuddy/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/SKILL.md +3 -1
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/reference.md +7 -0
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge.py +117 -0
- package/harness/bundles/general/codebuddy/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-plan/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-plan/checklist.md +6 -0
- package/harness/bundles/general/codebuddy/harness-review/SKILL.md +3 -3
- package/harness/bundles/general/codebuddy/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-run/checklist.md +5 -0
- package/harness/bundles/general/codebuddy/harness-run/reference.md +33 -1
- package/harness/bundles/general/codebuddy/harness-submit/SKILL.md +15 -10
- package/harness/bundles/general/codebuddy/harness-submit/checklist.md +40 -76
- package/harness/bundles/general/codebuddy/harness-sync/SKILL.md +17 -2
- package/harness/bundles/general/codebuddy/harness-sync/reference.md +2 -2
- package/harness/bundles/general/codebuddy/harness-test/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-test/checklist.md +9 -0
- package/harness/bundles/general/codebuddy/harness-test/pitfalls-java.md +14 -0
- package/harness/bundles/general/codebuddy/harness-test/reference.md +38 -0
- package/harness/bundles/general/codebuddy/protocols/archive-report-protocol.md +26 -4
- package/harness/bundles/general/codebuddy/protocols/ledger-protocol.md +38 -0
- package/harness/bundles/general/codebuddy/protocols/powershell-protocol.md +16 -0
- package/harness/bundles/general/codebuddy/protocols/report-pipeline-protocol.md +17 -0
- package/harness/bundles/general/codebuddy/protocols/state-layout-protocol.md +15 -0
- package/harness/bundles/general/codebuddy/scripts/harness_archive.py +1209 -170
- package/harness/bundles/general/codebuddy/scripts/harness_change.py +18 -0
- package/harness/bundles/general/codebuddy/scripts/harness_deploy.py +1 -44
- package/harness/bundles/general/codebuddy/scripts/harness_events.py +174 -25
- package/harness/bundles/general/codebuddy/scripts/harness_gate.py +203 -29
- package/harness/bundles/general/codebuddy/scripts/harness_integration.py +878 -0
- package/harness/bundles/general/codebuddy/scripts/harness_ledger.py +457 -10
- package/harness/bundles/general/codebuddy/scripts/harness_paths.py +315 -0
- package/harness/bundles/general/codebuddy/scripts/harness_profile.py +45 -0
- package/harness/bundles/general/codebuddy/scripts/harness_review.py +326 -0
- package/harness/bundles/general/codebuddy/scripts/harness_sync.py +407 -0
- package/harness/bundles/general/codebuddy/scripts/harness_test_guard.py +244 -49
- package/harness/bundles/general/codex/.harness-build.json +1 -1
- package/harness/bundles/general/codex/contracts/workflow-policy.json +3 -3
- package/harness/bundles/general/codex/harness-archive/SKILL.md +3 -3
- package/harness/bundles/general/codex/harness-archive/reference.md +30 -12
- package/harness/bundles/general/codex/harness-archive/templates/render-summary.mjs +5 -1
- package/harness/bundles/general/codex/harness-archive/templates/summary-data-template.json +6 -2
- package/harness/bundles/general/codex/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-knowledge-ingest/SKILL.md +3 -1
- package/harness/bundles/general/codex/harness-knowledge-ingest/reference.md +7 -0
- package/harness/bundles/general/codex/harness-knowledge-ingest/scripts/harness_knowledge.py +117 -0
- package/harness/bundles/general/codex/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-plan/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-plan/checklist.md +6 -0
- package/harness/bundles/general/codex/harness-review/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-run/checklist.md +5 -0
- package/harness/bundles/general/codex/harness-run/reference.md +33 -1
- package/harness/bundles/general/codex/harness-submit/SKILL.md +15 -10
- package/harness/bundles/general/codex/harness-submit/checklist.md +40 -76
- package/harness/bundles/general/codex/harness-sync/SKILL.md +17 -2
- package/harness/bundles/general/codex/harness-sync/reference.md +2 -2
- package/harness/bundles/general/codex/harness-test/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-test/checklist.md +9 -0
- package/harness/bundles/general/codex/harness-test/pitfalls-java.md +14 -0
- package/harness/bundles/general/codex/harness-test/reference.md +38 -0
- package/harness/bundles/general/codex/protocols/archive-report-protocol.md +26 -4
- package/harness/bundles/general/codex/protocols/ledger-protocol.md +38 -0
- package/harness/bundles/general/codex/protocols/powershell-protocol.md +16 -0
- package/harness/bundles/general/codex/protocols/report-pipeline-protocol.md +17 -0
- package/harness/bundles/general/codex/protocols/state-layout-protocol.md +15 -0
- package/harness/bundles/general/codex/scripts/harness_archive.py +1209 -170
- package/harness/bundles/general/codex/scripts/harness_change.py +18 -0
- package/harness/bundles/general/codex/scripts/harness_deploy.py +1 -44
- package/harness/bundles/general/codex/scripts/harness_events.py +174 -25
- package/harness/bundles/general/codex/scripts/harness_gate.py +203 -29
- package/harness/bundles/general/codex/scripts/harness_integration.py +878 -0
- package/harness/bundles/general/codex/scripts/harness_ledger.py +457 -10
- package/harness/bundles/general/codex/scripts/harness_paths.py +315 -0
- package/harness/bundles/general/codex/scripts/harness_profile.py +45 -0
- package/harness/bundles/general/codex/scripts/harness_review.py +326 -0
- package/harness/bundles/general/codex/scripts/harness_sync.py +407 -0
- package/harness/bundles/general/codex/scripts/harness_test_guard.py +244 -49
- package/harness/bundles/general/cursor/.harness-build.json +1 -1
- package/harness/bundles/general/cursor/contracts/workflow-policy.json +3 -3
- package/harness/bundles/general/cursor/harness-archive/SKILL.md +3 -3
- package/harness/bundles/general/cursor/harness-archive/reference.md +30 -12
- package/harness/bundles/general/cursor/harness-archive/templates/render-summary.mjs +5 -1
- package/harness/bundles/general/cursor/harness-archive/templates/summary-data-template.json +6 -2
- package/harness/bundles/general/cursor/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-knowledge-ingest/SKILL.md +3 -1
- package/harness/bundles/general/cursor/harness-knowledge-ingest/reference.md +7 -0
- package/harness/bundles/general/cursor/harness-knowledge-ingest/scripts/harness_knowledge.py +117 -0
- package/harness/bundles/general/cursor/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-plan/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-plan/checklist.md +6 -0
- package/harness/bundles/general/cursor/harness-review/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-run/checklist.md +5 -0
- package/harness/bundles/general/cursor/harness-run/reference.md +33 -1
- package/harness/bundles/general/cursor/harness-submit/SKILL.md +15 -10
- package/harness/bundles/general/cursor/harness-submit/checklist.md +40 -76
- package/harness/bundles/general/cursor/harness-sync/SKILL.md +17 -2
- package/harness/bundles/general/cursor/harness-sync/reference.md +2 -2
- package/harness/bundles/general/cursor/harness-test/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-test/checklist.md +9 -0
- package/harness/bundles/general/cursor/harness-test/pitfalls-java.md +14 -0
- package/harness/bundles/general/cursor/harness-test/reference.md +38 -0
- package/harness/bundles/general/cursor/protocols/archive-report-protocol.md +26 -4
- package/harness/bundles/general/cursor/protocols/ledger-protocol.md +38 -0
- package/harness/bundles/general/cursor/protocols/powershell-protocol.md +16 -0
- package/harness/bundles/general/cursor/protocols/report-pipeline-protocol.md +17 -0
- package/harness/bundles/general/cursor/protocols/state-layout-protocol.md +15 -0
- package/harness/bundles/general/cursor/scripts/harness_archive.py +1209 -170
- package/harness/bundles/general/cursor/scripts/harness_change.py +18 -0
- package/harness/bundles/general/cursor/scripts/harness_deploy.py +1 -44
- package/harness/bundles/general/cursor/scripts/harness_events.py +174 -25
- package/harness/bundles/general/cursor/scripts/harness_gate.py +203 -29
- package/harness/bundles/general/cursor/scripts/harness_integration.py +878 -0
- package/harness/bundles/general/cursor/scripts/harness_ledger.py +457 -10
- package/harness/bundles/general/cursor/scripts/harness_paths.py +315 -0
- package/harness/bundles/general/cursor/scripts/harness_profile.py +45 -0
- package/harness/bundles/general/cursor/scripts/harness_review.py +326 -0
- package/harness/bundles/general/cursor/scripts/harness_sync.py +407 -0
- package/harness/bundles/general/cursor/scripts/harness_test_guard.py +244 -49
- package/harness/bundles/java/claude-code/.harness-build.json +1 -1
- package/harness/bundles/java/claude-code/contracts/workflow-policy.json +3 -3
- package/harness/bundles/java/claude-code/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-archive/SKILL.md +3 -3
- package/harness/bundles/java/claude-code/harness-archive/reference.md +30 -12
- package/harness/bundles/java/claude-code/harness-archive/templates/render-summary.mjs +5 -1
- package/harness/bundles/java/claude-code/harness-archive/templates/summary-data-template.json +6 -2
- package/harness/bundles/java/claude-code/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-knowledge-ingest/SKILL.md +3 -1
- package/harness/bundles/java/claude-code/harness-knowledge-ingest/reference.md +7 -0
- package/harness/bundles/java/claude-code/harness-knowledge-ingest/scripts/harness_knowledge.py +117 -0
- package/harness/bundles/java/claude-code/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-plan/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-plan/checklist.md +6 -0
- package/harness/bundles/java/claude-code/harness-review/SKILL.md +3 -3
- package/harness/bundles/java/claude-code/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-submit/SKILL.md +15 -10
- package/harness/bundles/java/claude-code/harness-submit/checklist.md +40 -76
- package/harness/bundles/java/claude-code/harness-sync/SKILL.md +17 -2
- package/harness/bundles/java/claude-code/harness-sync/reference.md +2 -2
- package/harness/bundles/java/claude-code/harness-test/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/protocols/archive-report-protocol.md +26 -4
- package/harness/bundles/java/claude-code/protocols/ledger-protocol.md +38 -0
- package/harness/bundles/java/claude-code/protocols/powershell-protocol.md +16 -0
- package/harness/bundles/java/claude-code/protocols/report-pipeline-protocol.md +17 -0
- package/harness/bundles/java/claude-code/protocols/state-layout-protocol.md +15 -0
- package/harness/bundles/java/claude-code/scripts/harness_archive.py +1209 -170
- package/harness/bundles/java/claude-code/scripts/harness_change.py +18 -0
- package/harness/bundles/java/claude-code/scripts/harness_deploy.py +1 -44
- package/harness/bundles/java/claude-code/scripts/harness_events.py +174 -25
- package/harness/bundles/java/claude-code/scripts/harness_gate.py +203 -29
- package/harness/bundles/java/claude-code/scripts/harness_integration.py +878 -0
- package/harness/bundles/java/claude-code/scripts/harness_ledger.py +457 -10
- package/harness/bundles/java/claude-code/scripts/harness_paths.py +315 -0
- package/harness/bundles/java/claude-code/scripts/harness_profile.py +45 -0
- package/harness/bundles/java/claude-code/scripts/harness_review.py +326 -0
- package/harness/bundles/java/claude-code/scripts/harness_sync.py +407 -0
- package/harness/bundles/java/claude-code/scripts/harness_test_guard.py +244 -49
- package/harness/bundles/java/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/java/codebuddy/contracts/workflow-policy.json +3 -3
- package/harness/bundles/java/codebuddy/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-archive/SKILL.md +3 -3
- package/harness/bundles/java/codebuddy/harness-archive/reference.md +30 -12
- package/harness/bundles/java/codebuddy/harness-archive/templates/render-summary.mjs +5 -1
- package/harness/bundles/java/codebuddy/harness-archive/templates/summary-data-template.json +6 -2
- package/harness/bundles/java/codebuddy/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/SKILL.md +3 -1
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/reference.md +7 -0
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge.py +117 -0
- package/harness/bundles/java/codebuddy/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-plan/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-plan/checklist.md +6 -0
- package/harness/bundles/java/codebuddy/harness-review/SKILL.md +3 -3
- package/harness/bundles/java/codebuddy/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-submit/SKILL.md +15 -10
- package/harness/bundles/java/codebuddy/harness-submit/checklist.md +40 -76
- package/harness/bundles/java/codebuddy/harness-sync/SKILL.md +17 -2
- package/harness/bundles/java/codebuddy/harness-sync/reference.md +2 -2
- package/harness/bundles/java/codebuddy/harness-test/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/protocols/archive-report-protocol.md +26 -4
- package/harness/bundles/java/codebuddy/protocols/ledger-protocol.md +38 -0
- package/harness/bundles/java/codebuddy/protocols/powershell-protocol.md +16 -0
- package/harness/bundles/java/codebuddy/protocols/report-pipeline-protocol.md +17 -0
- package/harness/bundles/java/codebuddy/protocols/state-layout-protocol.md +15 -0
- package/harness/bundles/java/codebuddy/scripts/harness_archive.py +1209 -170
- package/harness/bundles/java/codebuddy/scripts/harness_change.py +18 -0
- package/harness/bundles/java/codebuddy/scripts/harness_deploy.py +1 -44
- package/harness/bundles/java/codebuddy/scripts/harness_events.py +174 -25
- package/harness/bundles/java/codebuddy/scripts/harness_gate.py +203 -29
- package/harness/bundles/java/codebuddy/scripts/harness_integration.py +878 -0
- package/harness/bundles/java/codebuddy/scripts/harness_ledger.py +457 -10
- package/harness/bundles/java/codebuddy/scripts/harness_paths.py +315 -0
- package/harness/bundles/java/codebuddy/scripts/harness_profile.py +45 -0
- package/harness/bundles/java/codebuddy/scripts/harness_review.py +326 -0
- package/harness/bundles/java/codebuddy/scripts/harness_sync.py +407 -0
- package/harness/bundles/java/codebuddy/scripts/harness_test_guard.py +244 -49
- package/harness/bundles/java/codex/.harness-build.json +1 -1
- package/harness/bundles/java/codex/contracts/workflow-policy.json +3 -3
- package/harness/bundles/java/codex/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-archive/SKILL.md +3 -3
- package/harness/bundles/java/codex/harness-archive/reference.md +30 -12
- package/harness/bundles/java/codex/harness-archive/templates/render-summary.mjs +5 -1
- package/harness/bundles/java/codex/harness-archive/templates/summary-data-template.json +6 -2
- package/harness/bundles/java/codex/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-knowledge-ingest/SKILL.md +3 -1
- package/harness/bundles/java/codex/harness-knowledge-ingest/reference.md +7 -0
- package/harness/bundles/java/codex/harness-knowledge-ingest/scripts/harness_knowledge.py +117 -0
- package/harness/bundles/java/codex/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-plan/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-plan/checklist.md +6 -0
- package/harness/bundles/java/codex/harness-review/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-submit/SKILL.md +15 -10
- package/harness/bundles/java/codex/harness-submit/checklist.md +40 -76
- package/harness/bundles/java/codex/harness-sync/SKILL.md +17 -2
- package/harness/bundles/java/codex/harness-sync/reference.md +2 -2
- package/harness/bundles/java/codex/harness-test/SKILL.md +1 -1
- package/harness/bundles/java/codex/protocols/archive-report-protocol.md +26 -4
- package/harness/bundles/java/codex/protocols/ledger-protocol.md +38 -0
- package/harness/bundles/java/codex/protocols/powershell-protocol.md +16 -0
- package/harness/bundles/java/codex/protocols/report-pipeline-protocol.md +17 -0
- package/harness/bundles/java/codex/protocols/state-layout-protocol.md +15 -0
- package/harness/bundles/java/codex/scripts/harness_archive.py +1209 -170
- package/harness/bundles/java/codex/scripts/harness_change.py +18 -0
- package/harness/bundles/java/codex/scripts/harness_deploy.py +1 -44
- package/harness/bundles/java/codex/scripts/harness_events.py +174 -25
- package/harness/bundles/java/codex/scripts/harness_gate.py +203 -29
- package/harness/bundles/java/codex/scripts/harness_integration.py +878 -0
- package/harness/bundles/java/codex/scripts/harness_ledger.py +457 -10
- package/harness/bundles/java/codex/scripts/harness_paths.py +315 -0
- package/harness/bundles/java/codex/scripts/harness_profile.py +45 -0
- package/harness/bundles/java/codex/scripts/harness_review.py +326 -0
- package/harness/bundles/java/codex/scripts/harness_sync.py +407 -0
- package/harness/bundles/java/codex/scripts/harness_test_guard.py +244 -49
- package/harness/bundles/java/cursor/.harness-build.json +1 -1
- package/harness/bundles/java/cursor/contracts/workflow-policy.json +3 -3
- package/harness/bundles/java/cursor/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-archive/SKILL.md +3 -3
- package/harness/bundles/java/cursor/harness-archive/reference.md +30 -12
- package/harness/bundles/java/cursor/harness-archive/templates/render-summary.mjs +5 -1
- package/harness/bundles/java/cursor/harness-archive/templates/summary-data-template.json +6 -2
- package/harness/bundles/java/cursor/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-knowledge-ingest/SKILL.md +3 -1
- package/harness/bundles/java/cursor/harness-knowledge-ingest/reference.md +7 -0
- package/harness/bundles/java/cursor/harness-knowledge-ingest/scripts/harness_knowledge.py +117 -0
- package/harness/bundles/java/cursor/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-plan/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-plan/checklist.md +6 -0
- package/harness/bundles/java/cursor/harness-review/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-submit/SKILL.md +15 -10
- package/harness/bundles/java/cursor/harness-submit/checklist.md +40 -76
- package/harness/bundles/java/cursor/harness-sync/SKILL.md +17 -2
- package/harness/bundles/java/cursor/harness-sync/reference.md +2 -2
- package/harness/bundles/java/cursor/harness-test/SKILL.md +1 -1
- package/harness/bundles/java/cursor/protocols/archive-report-protocol.md +26 -4
- package/harness/bundles/java/cursor/protocols/ledger-protocol.md +38 -0
- package/harness/bundles/java/cursor/protocols/powershell-protocol.md +16 -0
- package/harness/bundles/java/cursor/protocols/report-pipeline-protocol.md +17 -0
- package/harness/bundles/java/cursor/protocols/state-layout-protocol.md +15 -0
- package/harness/bundles/java/cursor/scripts/harness_archive.py +1209 -170
- package/harness/bundles/java/cursor/scripts/harness_change.py +18 -0
- package/harness/bundles/java/cursor/scripts/harness_deploy.py +1 -44
- package/harness/bundles/java/cursor/scripts/harness_events.py +174 -25
- package/harness/bundles/java/cursor/scripts/harness_gate.py +203 -29
- package/harness/bundles/java/cursor/scripts/harness_integration.py +878 -0
- package/harness/bundles/java/cursor/scripts/harness_ledger.py +457 -10
- package/harness/bundles/java/cursor/scripts/harness_paths.py +315 -0
- package/harness/bundles/java/cursor/scripts/harness_profile.py +45 -0
- package/harness/bundles/java/cursor/scripts/harness_review.py +326 -0
- package/harness/bundles/java/cursor/scripts/harness_sync.py +407 -0
- package/harness/bundles/java/cursor/scripts/harness_test_guard.py +244 -49
- package/harness/manifests/general/claude-code.json +58 -38
- package/harness/manifests/general/codebuddy.json +58 -38
- package/harness/manifests/general/codex.json +58 -38
- package/harness/manifests/general/cursor.json +58 -38
- package/harness/manifests/java/claude-code.json +52 -36
- package/harness/manifests/java/codebuddy.json +52 -36
- package/harness/manifests/java/codex.json +52 -36
- package/harness/manifests/java/cursor.json +52 -36
- package/hunter-workflow-family.json +2 -2
- package/package.json +1 -1
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "codebuddy",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.10",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "7e0ac30cee7e35e1e997673498164e8d38ea45c13fb9b1a97b76fa8ef9511e5b"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "agents/harness-evaluator.md",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
29
|
"path": "contracts/workflow-policy.json",
|
|
30
|
-
"sha256": "
|
|
30
|
+
"sha256": "e642d840fa90aa5943cb80bee6538e0aa11577fcaab0c4e534641ebfae8d8f00"
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
33
|
"path": "harness-apidoc/checklist.md",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"path": "harness-apidoc/SKILL.md",
|
|
42
|
-
"sha256": "
|
|
42
|
+
"sha256": "b9e3766cff4f5a91dfe561b12830db1e91a163e0a4d913ebe489fa78893096a0"
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
"path": "harness-archive/checklist.md",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
"path": "harness-archive/reference.md",
|
|
50
|
-
"sha256": "
|
|
50
|
+
"sha256": "a956c4474df338c35934933c131a3fefb84e6b296a961c4f731526a4aff4f32f"
|
|
51
51
|
},
|
|
52
52
|
{
|
|
53
53
|
"path": "harness-archive/scripts/gen-manifest.ps1",
|
|
@@ -55,15 +55,15 @@
|
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
57
|
"path": "harness-archive/SKILL.md",
|
|
58
|
-
"sha256": "
|
|
58
|
+
"sha256": "58f369891cae81a7a70f093fff46be3f285e634ea46592c377a64afa3747ddb2"
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
61
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
62
|
-
"sha256": "
|
|
62
|
+
"sha256": "f15d2b541649fe677d56de46bc7ac8deccaeab12e57c530f5cd64fb340f17df4"
|
|
63
63
|
},
|
|
64
64
|
{
|
|
65
65
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
66
|
-
"sha256": "
|
|
66
|
+
"sha256": "3ad30d331d53c1866ef707b9f770e11a3c1237e01d9516a50fac3aeb287c8cf8"
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
69
|
"path": "harness-codebase-map/checklist.md",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
},
|
|
76
76
|
{
|
|
77
77
|
"path": "harness-codebase-map/SKILL.md",
|
|
78
|
-
"sha256": "
|
|
78
|
+
"sha256": "e4005720adbd0863a8c4591a0fcfcda8efbf218e7e3b79679a3e6b22155a23b5"
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
81
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
},
|
|
128
128
|
{
|
|
129
129
|
"path": "harness-knowledge-ingest/reference.md",
|
|
130
|
-
"sha256": "
|
|
130
|
+
"sha256": "6d587ea318d73869d273366c37dccea0d7ee5578ac2e6534b91c7d790188c7a9"
|
|
131
131
|
},
|
|
132
132
|
{
|
|
133
133
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge_mcp.py",
|
|
@@ -135,15 +135,15 @@
|
|
|
135
135
|
},
|
|
136
136
|
{
|
|
137
137
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
138
|
-
"sha256": "
|
|
138
|
+
"sha256": "d6e180a28345f6ff21e0ae1f7dc5687bc85c4bd1f57309c8701ace64b65fc02f"
|
|
139
139
|
},
|
|
140
140
|
{
|
|
141
141
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
142
|
-
"sha256": "
|
|
142
|
+
"sha256": "bb6d49290b6860f45b1d987edfd39da246884cf7c4c3d4ba794aab7a1f6dc99a"
|
|
143
143
|
},
|
|
144
144
|
{
|
|
145
145
|
"path": "harness-knowledge-query/SKILL.md",
|
|
146
|
-
"sha256": "
|
|
146
|
+
"sha256": "e8944fc89a502a78eb2120104a2203023a6bd00d4cc2b120d47f764cf11830f1"
|
|
147
147
|
},
|
|
148
148
|
{
|
|
149
149
|
"path": "harness-package/checklist.md",
|
|
@@ -155,11 +155,11 @@
|
|
|
155
155
|
},
|
|
156
156
|
{
|
|
157
157
|
"path": "harness-package/SKILL.md",
|
|
158
|
-
"sha256": "
|
|
158
|
+
"sha256": "76579d484b3042c9019d18cec76718568bfa1ea983081e7d09d0d0b137c9fbb8"
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
161
|
"path": "harness-plan/checklist.md",
|
|
162
|
-
"sha256": "
|
|
162
|
+
"sha256": "efd49a7430aae916d2cd6da82f812c0fdc9777eaabe8212a92904d5dcfa38534"
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
165
|
"path": "harness-plan/protocols.md",
|
|
@@ -171,7 +171,7 @@
|
|
|
171
171
|
},
|
|
172
172
|
{
|
|
173
173
|
"path": "harness-plan/SKILL.md",
|
|
174
|
-
"sha256": "
|
|
174
|
+
"sha256": "7a5315fca1a557dab6c09ab9b9e3aef12b4f5d0610251d20c1a1deb08e19e955"
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
177
|
"path": "harness-review/checklist.md",
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
189
|
"path": "harness-review/SKILL.md",
|
|
190
|
-
"sha256": "
|
|
190
|
+
"sha256": "81ac7c5c3bc3f4deb9b7c698a4a75b68f32c5d33da1731a91066fb1abfb4ea45"
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
"path": "harness-run/checklist.md",
|
|
@@ -203,11 +203,11 @@
|
|
|
203
203
|
},
|
|
204
204
|
{
|
|
205
205
|
"path": "harness-run/SKILL.md",
|
|
206
|
-
"sha256": "
|
|
206
|
+
"sha256": "d15292e721d74c262166ce16cf9257887e1de7fed65e5aeac1bc4e1143449ce7"
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
"path": "harness-submit/checklist.md",
|
|
210
|
-
"sha256": "
|
|
210
|
+
"sha256": "f57beb2da7e75a59320ba442de0625105a30e38e071a7308ea06fb024fda9aae"
|
|
211
211
|
},
|
|
212
212
|
{
|
|
213
213
|
"path": "harness-submit/reference.md",
|
|
@@ -215,15 +215,15 @@
|
|
|
215
215
|
},
|
|
216
216
|
{
|
|
217
217
|
"path": "harness-submit/SKILL.md",
|
|
218
|
-
"sha256": "
|
|
218
|
+
"sha256": "d7ce09509cffc4187b7002cc61420cb8e514f7d2fdfdd58c42e9c3082ef33dcc"
|
|
219
219
|
},
|
|
220
220
|
{
|
|
221
221
|
"path": "harness-sync/reference.md",
|
|
222
|
-
"sha256": "
|
|
222
|
+
"sha256": "6e8093c7d8d874e159d027b10dbb65f299bd51c48803c54b92db1a66c6d9c54d"
|
|
223
223
|
},
|
|
224
224
|
{
|
|
225
225
|
"path": "harness-sync/SKILL.md",
|
|
226
|
-
"sha256": "
|
|
226
|
+
"sha256": "6457f1ac6c8383f130769c5dc695ea7f8356c29373271319f50c87e96042c3fd"
|
|
227
227
|
},
|
|
228
228
|
{
|
|
229
229
|
"path": "harness-test/checklist.md",
|
|
@@ -247,11 +247,11 @@
|
|
|
247
247
|
},
|
|
248
248
|
{
|
|
249
249
|
"path": "harness-test/SKILL.md",
|
|
250
|
-
"sha256": "
|
|
250
|
+
"sha256": "366343513889dca903b7f50cee5b9a81a05277852291dc6af41eb21a46d73520"
|
|
251
251
|
},
|
|
252
252
|
{
|
|
253
253
|
"path": "protocols/archive-report-protocol.md",
|
|
254
|
-
"sha256": "
|
|
254
|
+
"sha256": "c6677d730908580dfc58f954df6c950327a4928e283290e24d9ad715a5e54ae5"
|
|
255
255
|
},
|
|
256
256
|
{
|
|
257
257
|
"path": "protocols/evidence-based-reporting-protocol.md",
|
|
@@ -259,15 +259,15 @@
|
|
|
259
259
|
},
|
|
260
260
|
{
|
|
261
261
|
"path": "protocols/ledger-protocol.md",
|
|
262
|
-
"sha256": "
|
|
262
|
+
"sha256": "50f9deffcf71de009c56bd2cdd44fb05c7b18faf19ec56b00ff76e8ce897ecf7"
|
|
263
263
|
},
|
|
264
264
|
{
|
|
265
265
|
"path": "protocols/powershell-protocol.md",
|
|
266
|
-
"sha256": "
|
|
266
|
+
"sha256": "f723f18eee08125e75f387e655f7e604eb603f636cd6809dd6b5948748f32d04"
|
|
267
267
|
},
|
|
268
268
|
{
|
|
269
269
|
"path": "protocols/report-pipeline-protocol.md",
|
|
270
|
-
"sha256": "
|
|
270
|
+
"sha256": "1a54a6a1540e9da41cf3466eee8a3810eb2b3ae732ab87f295d1832d135da6fb"
|
|
271
271
|
},
|
|
272
272
|
{
|
|
273
273
|
"path": "protocols/sensitive-info-protocol.md",
|
|
@@ -275,7 +275,7 @@
|
|
|
275
275
|
},
|
|
276
276
|
{
|
|
277
277
|
"path": "protocols/state-layout-protocol.md",
|
|
278
|
-
"sha256": "
|
|
278
|
+
"sha256": "b92c062d145b6927bcf8b50cc962a04eb04604b845bae09309416574ba40f05f"
|
|
279
279
|
},
|
|
280
280
|
{
|
|
281
281
|
"path": "protocols/submit-protocol.md",
|
|
@@ -291,11 +291,11 @@
|
|
|
291
291
|
},
|
|
292
292
|
{
|
|
293
293
|
"path": "scripts/harness_archive.py",
|
|
294
|
-
"sha256": "
|
|
294
|
+
"sha256": "52f3a7aef19cc84d4820f90d0fa320e7e963e7b7710f607954cd67608c67be55"
|
|
295
295
|
},
|
|
296
296
|
{
|
|
297
297
|
"path": "scripts/harness_change.py",
|
|
298
|
-
"sha256": "
|
|
298
|
+
"sha256": "87c4d8fac9d3768671dd46aaa55d068eb648ddf0af37ddb5426de8c745534fa3"
|
|
299
299
|
},
|
|
300
300
|
{
|
|
301
301
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -303,19 +303,27 @@
|
|
|
303
303
|
},
|
|
304
304
|
{
|
|
305
305
|
"path": "scripts/harness_deploy.py",
|
|
306
|
-
"sha256": "
|
|
306
|
+
"sha256": "6b43b03bf414834df348e89db4e4e32960ce8a730c4c4c8a0202a87842da1758"
|
|
307
307
|
},
|
|
308
308
|
{
|
|
309
309
|
"path": "scripts/harness_events.py",
|
|
310
|
-
"sha256": "
|
|
310
|
+
"sha256": "700ce2741ec80144c8880cdb85c8026dc9c7aec9bcbdee1c1d3ccb77aed58648"
|
|
311
311
|
},
|
|
312
312
|
{
|
|
313
313
|
"path": "scripts/harness_gate.py",
|
|
314
|
-
"sha256": "
|
|
314
|
+
"sha256": "5fdb48040a396403dc9584561316d6181b9b70c5234407d662093bad739cc3bc"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"path": "scripts/harness_integration.py",
|
|
318
|
+
"sha256": "a5e616ed1ba04b390d431132f6eeedef8789b87bee1e1512667e696f6a970471"
|
|
315
319
|
},
|
|
316
320
|
{
|
|
317
321
|
"path": "scripts/harness_ledger.py",
|
|
318
|
-
"sha256": "
|
|
322
|
+
"sha256": "79815b4a1fb6f5c43d63dcb64a4a9cde26ccd7f6206c86ba3d0c795854668ee5"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"path": "scripts/harness_paths.py",
|
|
326
|
+
"sha256": "75560c0141172b335811014320001a299846e4fba45dd0589cba86da058ab01a"
|
|
319
327
|
},
|
|
320
328
|
{
|
|
321
329
|
"path": "scripts/harness_preflight.py",
|
|
@@ -323,7 +331,11 @@
|
|
|
323
331
|
},
|
|
324
332
|
{
|
|
325
333
|
"path": "scripts/harness_profile.py",
|
|
326
|
-
"sha256": "
|
|
334
|
+
"sha256": "52c9fb0d7c22823f06a8fd49bc1b648b0bda974f0851e8a12b0959be7c1c4183"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"path": "scripts/harness_review.py",
|
|
338
|
+
"sha256": "78009e09b79867a13c66a8c71114b6cd04fe75c72054f5ec35d63c7be990bb04"
|
|
327
339
|
},
|
|
328
340
|
{
|
|
329
341
|
"path": "scripts/harness_service.py",
|
|
@@ -333,9 +345,13 @@
|
|
|
333
345
|
"path": "scripts/harness_state.py",
|
|
334
346
|
"sha256": "27073a1d7b1ea6d54a75bf6e679eb250a3507c95311101b60a1c4d32e00f909e"
|
|
335
347
|
},
|
|
348
|
+
{
|
|
349
|
+
"path": "scripts/harness_sync.py",
|
|
350
|
+
"sha256": "3ab54718ab8448f7bdac76119806a885e0f19cece05b0d8108128dc7d895d6e1"
|
|
351
|
+
},
|
|
336
352
|
{
|
|
337
353
|
"path": "scripts/harness_test_guard.py",
|
|
338
|
-
"sha256": "
|
|
354
|
+
"sha256": "76713c4af83486b513979f40ba8055fefd0ff10b487d31de9d7f9d9a4ee2dce0"
|
|
339
355
|
},
|
|
340
356
|
{
|
|
341
357
|
"path": "scripts/harness_workflow_policy.py",
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "codex",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.10",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "133c27b0098e93748b225b2cec19626ccfccd23f4377668a2b06b5b9257f8693"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "CONTEXT.md",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
{
|
|
17
17
|
"path": "contracts/workflow-policy.json",
|
|
18
|
-
"sha256": "
|
|
18
|
+
"sha256": "e642d840fa90aa5943cb80bee6538e0aa11577fcaab0c4e534641ebfae8d8f00"
|
|
19
19
|
},
|
|
20
20
|
{
|
|
21
21
|
"path": "harness-apidoc/checklist.md",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
29
|
"path": "harness-apidoc/SKILL.md",
|
|
30
|
-
"sha256": "
|
|
30
|
+
"sha256": "feebeffe9f1718ed1a9402f9309da7188f93d210adccf06b2d524cabcd50bc73"
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
33
|
"path": "harness-archive/checklist.md",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
37
|
"path": "harness-archive/reference.md",
|
|
38
|
-
"sha256": "
|
|
38
|
+
"sha256": "a956c4474df338c35934933c131a3fefb84e6b296a961c4f731526a4aff4f32f"
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"path": "harness-archive/scripts/gen-manifest.ps1",
|
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
"path": "harness-archive/SKILL.md",
|
|
46
|
-
"sha256": "
|
|
46
|
+
"sha256": "86875760edc5b3270f5e41a1d5cf7fb4249918d9dbbb6bee88e4179ce3cdff96"
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
50
|
-
"sha256": "
|
|
50
|
+
"sha256": "f15d2b541649fe677d56de46bc7ac8deccaeab12e57c530f5cd64fb340f17df4"
|
|
51
51
|
},
|
|
52
52
|
{
|
|
53
53
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
54
|
-
"sha256": "
|
|
54
|
+
"sha256": "3ad30d331d53c1866ef707b9f770e11a3c1237e01d9516a50fac3aeb287c8cf8"
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
57
|
"path": "harness-codebase-map/checklist.md",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
},
|
|
64
64
|
{
|
|
65
65
|
"path": "harness-codebase-map/SKILL.md",
|
|
66
|
-
"sha256": "
|
|
66
|
+
"sha256": "2c10ddd9848f7c9ef5f903430fe222dd140958c585a53281ccd526446eec6794"
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
69
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
117
|
"path": "harness-knowledge-ingest/reference.md",
|
|
118
|
-
"sha256": "
|
|
118
|
+
"sha256": "6d587ea318d73869d273366c37dccea0d7ee5578ac2e6534b91c7d790188c7a9"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
121
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge_mcp.py",
|
|
@@ -123,15 +123,15 @@
|
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
125
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
126
|
-
"sha256": "
|
|
126
|
+
"sha256": "d6e180a28345f6ff21e0ae1f7dc5687bc85c4bd1f57309c8701ace64b65fc02f"
|
|
127
127
|
},
|
|
128
128
|
{
|
|
129
129
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
130
|
-
"sha256": "
|
|
130
|
+
"sha256": "29a64b2ca4572624e430599aa431c0770b82681e9ac2752f61b914ab05f971e2"
|
|
131
131
|
},
|
|
132
132
|
{
|
|
133
133
|
"path": "harness-knowledge-query/SKILL.md",
|
|
134
|
-
"sha256": "
|
|
134
|
+
"sha256": "b4f97ea1e855fa6fa768a3e7377c02400c9e40455e52069043a3816f1cef8e81"
|
|
135
135
|
},
|
|
136
136
|
{
|
|
137
137
|
"path": "harness-package/checklist.md",
|
|
@@ -143,11 +143,11 @@
|
|
|
143
143
|
},
|
|
144
144
|
{
|
|
145
145
|
"path": "harness-package/SKILL.md",
|
|
146
|
-
"sha256": "
|
|
146
|
+
"sha256": "d3a833b7b1bedfadba237b048a1bbb7cc7dcba60e4538a07bf9efd393f77f7f5"
|
|
147
147
|
},
|
|
148
148
|
{
|
|
149
149
|
"path": "harness-plan/checklist.md",
|
|
150
|
-
"sha256": "
|
|
150
|
+
"sha256": "efd49a7430aae916d2cd6da82f812c0fdc9777eaabe8212a92904d5dcfa38534"
|
|
151
151
|
},
|
|
152
152
|
{
|
|
153
153
|
"path": "harness-plan/protocols.md",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
161
|
"path": "harness-plan/SKILL.md",
|
|
162
|
-
"sha256": "
|
|
162
|
+
"sha256": "063200ee55ab640fa4807706dc17ab9f6918d15ee723db5bb337ebfda574a50f"
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
165
|
"path": "harness-review/checklist.md",
|
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
177
|
"path": "harness-review/SKILL.md",
|
|
178
|
-
"sha256": "
|
|
178
|
+
"sha256": "7b4b46cf0f64ef85910c0c287d28c45405d4c9dd9de98b4eb7e55ea8f450948e"
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"path": "harness-run/checklist.md",
|
|
@@ -191,11 +191,11 @@
|
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
"path": "harness-run/SKILL.md",
|
|
194
|
-
"sha256": "
|
|
194
|
+
"sha256": "5307f536373147b8a898899e8bfe48bb56aae55e5f8d27698973f97f1a521b7c"
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
197
|
"path": "harness-submit/checklist.md",
|
|
198
|
-
"sha256": "
|
|
198
|
+
"sha256": "f57beb2da7e75a59320ba442de0625105a30e38e071a7308ea06fb024fda9aae"
|
|
199
199
|
},
|
|
200
200
|
{
|
|
201
201
|
"path": "harness-submit/reference.md",
|
|
@@ -203,15 +203,15 @@
|
|
|
203
203
|
},
|
|
204
204
|
{
|
|
205
205
|
"path": "harness-submit/SKILL.md",
|
|
206
|
-
"sha256": "
|
|
206
|
+
"sha256": "8e7edfcbf1f9ef7f903ebd2e24aa9c643d4158556696a20b8071e784c1ec4a8d"
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
"path": "harness-sync/reference.md",
|
|
210
|
-
"sha256": "
|
|
210
|
+
"sha256": "6e8093c7d8d874e159d027b10dbb65f299bd51c48803c54b92db1a66c6d9c54d"
|
|
211
211
|
},
|
|
212
212
|
{
|
|
213
213
|
"path": "harness-sync/SKILL.md",
|
|
214
|
-
"sha256": "
|
|
214
|
+
"sha256": "b496a5e45c04d9ed4584180ecee2f3368b4a4cd5a3497f4eddfd5a2aa494648b"
|
|
215
215
|
},
|
|
216
216
|
{
|
|
217
217
|
"path": "harness-test/checklist.md",
|
|
@@ -235,11 +235,11 @@
|
|
|
235
235
|
},
|
|
236
236
|
{
|
|
237
237
|
"path": "harness-test/SKILL.md",
|
|
238
|
-
"sha256": "
|
|
238
|
+
"sha256": "742bbea98d08ec1c8699a82a85f7a81cfcfaa7307895e3552c1780d019305479"
|
|
239
239
|
},
|
|
240
240
|
{
|
|
241
241
|
"path": "protocols/archive-report-protocol.md",
|
|
242
|
-
"sha256": "
|
|
242
|
+
"sha256": "c6677d730908580dfc58f954df6c950327a4928e283290e24d9ad715a5e54ae5"
|
|
243
243
|
},
|
|
244
244
|
{
|
|
245
245
|
"path": "protocols/evidence-based-reporting-protocol.md",
|
|
@@ -247,15 +247,15 @@
|
|
|
247
247
|
},
|
|
248
248
|
{
|
|
249
249
|
"path": "protocols/ledger-protocol.md",
|
|
250
|
-
"sha256": "
|
|
250
|
+
"sha256": "50f9deffcf71de009c56bd2cdd44fb05c7b18faf19ec56b00ff76e8ce897ecf7"
|
|
251
251
|
},
|
|
252
252
|
{
|
|
253
253
|
"path": "protocols/powershell-protocol.md",
|
|
254
|
-
"sha256": "
|
|
254
|
+
"sha256": "f723f18eee08125e75f387e655f7e604eb603f636cd6809dd6b5948748f32d04"
|
|
255
255
|
},
|
|
256
256
|
{
|
|
257
257
|
"path": "protocols/report-pipeline-protocol.md",
|
|
258
|
-
"sha256": "
|
|
258
|
+
"sha256": "1a54a6a1540e9da41cf3466eee8a3810eb2b3ae732ab87f295d1832d135da6fb"
|
|
259
259
|
},
|
|
260
260
|
{
|
|
261
261
|
"path": "protocols/sensitive-info-protocol.md",
|
|
@@ -263,7 +263,7 @@
|
|
|
263
263
|
},
|
|
264
264
|
{
|
|
265
265
|
"path": "protocols/state-layout-protocol.md",
|
|
266
|
-
"sha256": "
|
|
266
|
+
"sha256": "b92c062d145b6927bcf8b50cc962a04eb04604b845bae09309416574ba40f05f"
|
|
267
267
|
},
|
|
268
268
|
{
|
|
269
269
|
"path": "protocols/submit-protocol.md",
|
|
@@ -279,11 +279,11 @@
|
|
|
279
279
|
},
|
|
280
280
|
{
|
|
281
281
|
"path": "scripts/harness_archive.py",
|
|
282
|
-
"sha256": "
|
|
282
|
+
"sha256": "52f3a7aef19cc84d4820f90d0fa320e7e963e7b7710f607954cd67608c67be55"
|
|
283
283
|
},
|
|
284
284
|
{
|
|
285
285
|
"path": "scripts/harness_change.py",
|
|
286
|
-
"sha256": "
|
|
286
|
+
"sha256": "87c4d8fac9d3768671dd46aaa55d068eb648ddf0af37ddb5426de8c745534fa3"
|
|
287
287
|
},
|
|
288
288
|
{
|
|
289
289
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -291,19 +291,27 @@
|
|
|
291
291
|
},
|
|
292
292
|
{
|
|
293
293
|
"path": "scripts/harness_deploy.py",
|
|
294
|
-
"sha256": "
|
|
294
|
+
"sha256": "6b43b03bf414834df348e89db4e4e32960ce8a730c4c4c8a0202a87842da1758"
|
|
295
295
|
},
|
|
296
296
|
{
|
|
297
297
|
"path": "scripts/harness_events.py",
|
|
298
|
-
"sha256": "
|
|
298
|
+
"sha256": "700ce2741ec80144c8880cdb85c8026dc9c7aec9bcbdee1c1d3ccb77aed58648"
|
|
299
299
|
},
|
|
300
300
|
{
|
|
301
301
|
"path": "scripts/harness_gate.py",
|
|
302
|
-
"sha256": "
|
|
302
|
+
"sha256": "5fdb48040a396403dc9584561316d6181b9b70c5234407d662093bad739cc3bc"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"path": "scripts/harness_integration.py",
|
|
306
|
+
"sha256": "a5e616ed1ba04b390d431132f6eeedef8789b87bee1e1512667e696f6a970471"
|
|
303
307
|
},
|
|
304
308
|
{
|
|
305
309
|
"path": "scripts/harness_ledger.py",
|
|
306
|
-
"sha256": "
|
|
310
|
+
"sha256": "79815b4a1fb6f5c43d63dcb64a4a9cde26ccd7f6206c86ba3d0c795854668ee5"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"path": "scripts/harness_paths.py",
|
|
314
|
+
"sha256": "75560c0141172b335811014320001a299846e4fba45dd0589cba86da058ab01a"
|
|
307
315
|
},
|
|
308
316
|
{
|
|
309
317
|
"path": "scripts/harness_preflight.py",
|
|
@@ -311,7 +319,11 @@
|
|
|
311
319
|
},
|
|
312
320
|
{
|
|
313
321
|
"path": "scripts/harness_profile.py",
|
|
314
|
-
"sha256": "
|
|
322
|
+
"sha256": "52c9fb0d7c22823f06a8fd49bc1b648b0bda974f0851e8a12b0959be7c1c4183"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"path": "scripts/harness_review.py",
|
|
326
|
+
"sha256": "78009e09b79867a13c66a8c71114b6cd04fe75c72054f5ec35d63c7be990bb04"
|
|
315
327
|
},
|
|
316
328
|
{
|
|
317
329
|
"path": "scripts/harness_service.py",
|
|
@@ -321,9 +333,13 @@
|
|
|
321
333
|
"path": "scripts/harness_state.py",
|
|
322
334
|
"sha256": "27073a1d7b1ea6d54a75bf6e679eb250a3507c95311101b60a1c4d32e00f909e"
|
|
323
335
|
},
|
|
336
|
+
{
|
|
337
|
+
"path": "scripts/harness_sync.py",
|
|
338
|
+
"sha256": "3ab54718ab8448f7bdac76119806a885e0f19cece05b0d8108128dc7d895d6e1"
|
|
339
|
+
},
|
|
324
340
|
{
|
|
325
341
|
"path": "scripts/harness_test_guard.py",
|
|
326
|
-
"sha256": "
|
|
342
|
+
"sha256": "76713c4af83486b513979f40ba8055fefd0ff10b487d31de9d7f9d9a4ee2dce0"
|
|
327
343
|
},
|
|
328
344
|
{
|
|
329
345
|
"path": "scripts/harness_workflow_policy.py",
|