@hunter-harness/workflow-harness 0.2.32 → 0.2.34
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/README.md +25 -25
- package/harness/bundles/general/claude-code/.harness-build.json +1 -1
- package/harness/bundles/general/claude-code/contracts/workflow-policy.json +1 -0
- package/harness/bundles/general/claude-code/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-archive/templates/render-summary.mjs +215 -106
- package/harness/bundles/general/claude-code/harness-archive/templates/summary-data-template.json +8 -0
- package/harness/bundles/general/claude-code/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-knowledge-ingest/scripts/harness_knowledge.py +389 -117
- package/harness/bundles/general/claude-code/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-plan/SKILL.md +4 -4
- package/harness/bundles/general/claude-code/harness-plan/checklist.md +2 -0
- package/harness/bundles/general/claude-code/harness-plan/reference.md +6 -0
- package/harness/bundles/general/claude-code/harness-review/SKILL.md +2 -2
- package/harness/bundles/general/claude-code/harness-run/SKILL.md +4 -4
- package/harness/bundles/general/claude-code/harness-submit/SKILL.md +2 -2
- package/harness/bundles/general/claude-code/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-test/SKILL.md +4 -4
- package/harness/bundles/general/claude-code/harness-test/checklist.md +1 -0
- package/harness/bundles/general/claude-code/harness-test/reference.md +2 -1
- package/harness/bundles/general/claude-code/protocols/ledger-protocol.md +2 -2
- package/harness/bundles/general/claude-code/scripts/harness_archive.py +404 -12
- package/harness/bundles/general/claude-code/scripts/harness_context.py +717 -0
- package/harness/bundles/general/claude-code/scripts/harness_gate.py +1 -0
- package/harness/bundles/general/claude-code/scripts/harness_ledger.py +77 -9
- package/harness/bundles/general/claude-code/scripts/harness_phase.py +1 -0
- package/harness/bundles/general/claude-code/scripts/harness_plan_aggregate.py +249 -0
- package/harness/bundles/general/claude-code/scripts/harness_plan_finalize.py +43 -11
- package/harness/bundles/general/claude-code/scripts/harness_profile.py +272 -15
- package/harness/bundles/general/claude-code/scripts/harness_report_model.py +420 -0
- package/harness/bundles/general/claude-code/scripts/harness_review.py +16 -1
- package/harness/bundles/general/claude-code/scripts/harness_verification.py +114 -0
- package/harness/bundles/general/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/general/codebuddy/contracts/workflow-policy.json +1 -0
- package/harness/bundles/general/codebuddy/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-archive/templates/render-summary.mjs +215 -106
- package/harness/bundles/general/codebuddy/harness-archive/templates/summary-data-template.json +8 -0
- package/harness/bundles/general/codebuddy/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge.py +389 -117
- package/harness/bundles/general/codebuddy/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-plan/SKILL.md +4 -4
- package/harness/bundles/general/codebuddy/harness-plan/checklist.md +2 -0
- package/harness/bundles/general/codebuddy/harness-plan/reference.md +6 -0
- package/harness/bundles/general/codebuddy/harness-review/SKILL.md +2 -2
- package/harness/bundles/general/codebuddy/harness-run/SKILL.md +4 -4
- package/harness/bundles/general/codebuddy/harness-submit/SKILL.md +2 -2
- package/harness/bundles/general/codebuddy/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-test/SKILL.md +4 -4
- package/harness/bundles/general/codebuddy/harness-test/checklist.md +1 -0
- package/harness/bundles/general/codebuddy/harness-test/reference.md +2 -1
- package/harness/bundles/general/codebuddy/protocols/ledger-protocol.md +2 -2
- package/harness/bundles/general/codebuddy/scripts/harness_archive.py +404 -12
- package/harness/bundles/general/codebuddy/scripts/harness_context.py +717 -0
- package/harness/bundles/general/codebuddy/scripts/harness_gate.py +1 -0
- package/harness/bundles/general/codebuddy/scripts/harness_ledger.py +77 -9
- package/harness/bundles/general/codebuddy/scripts/harness_phase.py +1 -0
- package/harness/bundles/general/codebuddy/scripts/harness_plan_aggregate.py +249 -0
- package/harness/bundles/general/codebuddy/scripts/harness_plan_finalize.py +43 -11
- package/harness/bundles/general/codebuddy/scripts/harness_profile.py +272 -15
- package/harness/bundles/general/codebuddy/scripts/harness_report_model.py +420 -0
- package/harness/bundles/general/codebuddy/scripts/harness_review.py +16 -1
- package/harness/bundles/general/codebuddy/scripts/harness_verification.py +114 -0
- package/harness/bundles/general/codex/.harness-build.json +1 -1
- package/harness/bundles/general/codex/contracts/workflow-policy.json +1 -0
- package/harness/bundles/general/codex/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-archive/templates/render-summary.mjs +215 -106
- package/harness/bundles/general/codex/harness-archive/templates/summary-data-template.json +8 -0
- package/harness/bundles/general/codex/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-knowledge-ingest/scripts/harness_knowledge.py +389 -117
- package/harness/bundles/general/codex/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-plan/SKILL.md +4 -4
- package/harness/bundles/general/codex/harness-plan/checklist.md +2 -0
- package/harness/bundles/general/codex/harness-plan/reference.md +6 -0
- package/harness/bundles/general/codex/harness-review/SKILL.md +2 -2
- package/harness/bundles/general/codex/harness-run/SKILL.md +4 -4
- package/harness/bundles/general/codex/harness-submit/SKILL.md +2 -2
- package/harness/bundles/general/codex/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-test/SKILL.md +4 -4
- package/harness/bundles/general/codex/harness-test/checklist.md +1 -0
- package/harness/bundles/general/codex/harness-test/reference.md +2 -1
- package/harness/bundles/general/codex/protocols/ledger-protocol.md +2 -2
- package/harness/bundles/general/codex/scripts/harness_archive.py +404 -12
- package/harness/bundles/general/codex/scripts/harness_context.py +717 -0
- package/harness/bundles/general/codex/scripts/harness_gate.py +1 -0
- package/harness/bundles/general/codex/scripts/harness_ledger.py +77 -9
- package/harness/bundles/general/codex/scripts/harness_phase.py +1 -0
- package/harness/bundles/general/codex/scripts/harness_plan_aggregate.py +249 -0
- package/harness/bundles/general/codex/scripts/harness_plan_finalize.py +43 -11
- package/harness/bundles/general/codex/scripts/harness_profile.py +272 -15
- package/harness/bundles/general/codex/scripts/harness_report_model.py +420 -0
- package/harness/bundles/general/codex/scripts/harness_review.py +16 -1
- package/harness/bundles/general/codex/scripts/harness_verification.py +114 -0
- package/harness/bundles/general/cursor/.harness-build.json +1 -1
- package/harness/bundles/general/cursor/contracts/workflow-policy.json +1 -0
- package/harness/bundles/general/cursor/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-archive/templates/render-summary.mjs +215 -106
- package/harness/bundles/general/cursor/harness-archive/templates/summary-data-template.json +8 -0
- package/harness/bundles/general/cursor/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-knowledge-ingest/scripts/harness_knowledge.py +389 -117
- package/harness/bundles/general/cursor/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-plan/SKILL.md +4 -4
- package/harness/bundles/general/cursor/harness-plan/checklist.md +2 -0
- package/harness/bundles/general/cursor/harness-plan/reference.md +6 -0
- package/harness/bundles/general/cursor/harness-review/SKILL.md +2 -2
- package/harness/bundles/general/cursor/harness-run/SKILL.md +4 -4
- package/harness/bundles/general/cursor/harness-submit/SKILL.md +2 -2
- package/harness/bundles/general/cursor/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-test/SKILL.md +4 -4
- package/harness/bundles/general/cursor/harness-test/checklist.md +1 -0
- package/harness/bundles/general/cursor/harness-test/reference.md +2 -1
- package/harness/bundles/general/cursor/protocols/ledger-protocol.md +2 -2
- package/harness/bundles/general/cursor/scripts/harness_archive.py +404 -12
- package/harness/bundles/general/cursor/scripts/harness_context.py +717 -0
- package/harness/bundles/general/cursor/scripts/harness_gate.py +1 -0
- package/harness/bundles/general/cursor/scripts/harness_ledger.py +77 -9
- package/harness/bundles/general/cursor/scripts/harness_phase.py +1 -0
- package/harness/bundles/general/cursor/scripts/harness_plan_aggregate.py +249 -0
- package/harness/bundles/general/cursor/scripts/harness_plan_finalize.py +43 -11
- package/harness/bundles/general/cursor/scripts/harness_profile.py +272 -15
- package/harness/bundles/general/cursor/scripts/harness_report_model.py +420 -0
- package/harness/bundles/general/cursor/scripts/harness_review.py +16 -1
- package/harness/bundles/general/cursor/scripts/harness_verification.py +114 -0
- package/harness/bundles/java/claude-code/.harness-build.json +1 -1
- package/harness/bundles/java/claude-code/contracts/workflow-policy.json +1 -0
- package/harness/bundles/java/claude-code/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-archive/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-archive/templates/render-summary.mjs +215 -106
- package/harness/bundles/java/claude-code/harness-archive/templates/summary-data-template.json +8 -0
- package/harness/bundles/java/claude-code/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-knowledge-ingest/scripts/harness_knowledge.py +389 -117
- 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 +4 -4
- package/harness/bundles/java/claude-code/harness-plan/checklist.md +2 -0
- package/harness/bundles/java/claude-code/harness-plan/reference.md +6 -0
- package/harness/bundles/java/claude-code/harness-review/SKILL.md +2 -2
- package/harness/bundles/java/claude-code/harness-run/SKILL.md +4 -4
- package/harness/bundles/java/claude-code/harness-submit/SKILL.md +2 -2
- package/harness/bundles/java/claude-code/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-test/SKILL.md +4 -4
- package/harness/bundles/java/claude-code/harness-test/checklist.md +1 -0
- package/harness/bundles/java/claude-code/harness-test/reference.md +2 -0
- package/harness/bundles/java/claude-code/protocols/ledger-protocol.md +2 -2
- package/harness/bundles/java/claude-code/scripts/harness_archive.py +404 -12
- package/harness/bundles/java/claude-code/scripts/harness_context.py +717 -0
- package/harness/bundles/java/claude-code/scripts/harness_gate.py +1 -0
- package/harness/bundles/java/claude-code/scripts/harness_ledger.py +77 -9
- package/harness/bundles/java/claude-code/scripts/harness_phase.py +1 -0
- package/harness/bundles/java/claude-code/scripts/harness_plan_aggregate.py +249 -0
- package/harness/bundles/java/claude-code/scripts/harness_plan_finalize.py +43 -11
- package/harness/bundles/java/claude-code/scripts/harness_profile.py +272 -15
- package/harness/bundles/java/claude-code/scripts/harness_report_model.py +420 -0
- package/harness/bundles/java/claude-code/scripts/harness_review.py +16 -1
- package/harness/bundles/java/claude-code/scripts/harness_verification.py +114 -0
- package/harness/bundles/java/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/java/codebuddy/contracts/workflow-policy.json +1 -0
- package/harness/bundles/java/codebuddy/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-archive/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-archive/templates/render-summary.mjs +215 -106
- package/harness/bundles/java/codebuddy/harness-archive/templates/summary-data-template.json +8 -0
- package/harness/bundles/java/codebuddy/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge.py +389 -117
- 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 +4 -4
- package/harness/bundles/java/codebuddy/harness-plan/checklist.md +2 -0
- package/harness/bundles/java/codebuddy/harness-plan/reference.md +6 -0
- package/harness/bundles/java/codebuddy/harness-review/SKILL.md +2 -2
- package/harness/bundles/java/codebuddy/harness-run/SKILL.md +4 -4
- package/harness/bundles/java/codebuddy/harness-submit/SKILL.md +2 -2
- package/harness/bundles/java/codebuddy/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-test/SKILL.md +4 -4
- package/harness/bundles/java/codebuddy/harness-test/checklist.md +1 -0
- package/harness/bundles/java/codebuddy/harness-test/reference.md +2 -0
- package/harness/bundles/java/codebuddy/protocols/ledger-protocol.md +2 -2
- package/harness/bundles/java/codebuddy/scripts/harness_archive.py +404 -12
- package/harness/bundles/java/codebuddy/scripts/harness_context.py +717 -0
- package/harness/bundles/java/codebuddy/scripts/harness_gate.py +1 -0
- package/harness/bundles/java/codebuddy/scripts/harness_ledger.py +77 -9
- package/harness/bundles/java/codebuddy/scripts/harness_phase.py +1 -0
- package/harness/bundles/java/codebuddy/scripts/harness_plan_aggregate.py +249 -0
- package/harness/bundles/java/codebuddy/scripts/harness_plan_finalize.py +43 -11
- package/harness/bundles/java/codebuddy/scripts/harness_profile.py +272 -15
- package/harness/bundles/java/codebuddy/scripts/harness_report_model.py +420 -0
- package/harness/bundles/java/codebuddy/scripts/harness_review.py +16 -1
- package/harness/bundles/java/codebuddy/scripts/harness_verification.py +114 -0
- package/harness/bundles/java/codex/.harness-build.json +1 -1
- package/harness/bundles/java/codex/contracts/workflow-policy.json +1 -0
- package/harness/bundles/java/codex/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-archive/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-archive/templates/render-summary.mjs +215 -106
- package/harness/bundles/java/codex/harness-archive/templates/summary-data-template.json +8 -0
- package/harness/bundles/java/codex/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-knowledge-ingest/scripts/harness_knowledge.py +389 -117
- 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 +4 -4
- package/harness/bundles/java/codex/harness-plan/checklist.md +2 -0
- package/harness/bundles/java/codex/harness-plan/reference.md +6 -0
- package/harness/bundles/java/codex/harness-review/SKILL.md +2 -2
- package/harness/bundles/java/codex/harness-run/SKILL.md +4 -4
- package/harness/bundles/java/codex/harness-submit/SKILL.md +2 -2
- package/harness/bundles/java/codex/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-test/SKILL.md +4 -4
- package/harness/bundles/java/codex/harness-test/checklist.md +1 -0
- package/harness/bundles/java/codex/harness-test/reference.md +2 -0
- package/harness/bundles/java/codex/protocols/ledger-protocol.md +2 -2
- package/harness/bundles/java/codex/scripts/harness_archive.py +404 -12
- package/harness/bundles/java/codex/scripts/harness_context.py +717 -0
- package/harness/bundles/java/codex/scripts/harness_gate.py +1 -0
- package/harness/bundles/java/codex/scripts/harness_ledger.py +77 -9
- package/harness/bundles/java/codex/scripts/harness_phase.py +1 -0
- package/harness/bundles/java/codex/scripts/harness_plan_aggregate.py +249 -0
- package/harness/bundles/java/codex/scripts/harness_plan_finalize.py +43 -11
- package/harness/bundles/java/codex/scripts/harness_profile.py +272 -15
- package/harness/bundles/java/codex/scripts/harness_report_model.py +420 -0
- package/harness/bundles/java/codex/scripts/harness_review.py +16 -1
- package/harness/bundles/java/codex/scripts/harness_verification.py +114 -0
- package/harness/bundles/java/cursor/.harness-build.json +1 -1
- package/harness/bundles/java/cursor/contracts/workflow-policy.json +1 -0
- package/harness/bundles/java/cursor/harness-apidoc/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-archive/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-archive/templates/render-summary.mjs +215 -106
- package/harness/bundles/java/cursor/harness-archive/templates/summary-data-template.json +8 -0
- package/harness/bundles/java/cursor/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-knowledge-ingest/scripts/harness_knowledge.py +389 -117
- 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 +4 -4
- package/harness/bundles/java/cursor/harness-plan/checklist.md +2 -0
- package/harness/bundles/java/cursor/harness-plan/reference.md +6 -0
- package/harness/bundles/java/cursor/harness-review/SKILL.md +2 -2
- package/harness/bundles/java/cursor/harness-run/SKILL.md +4 -4
- package/harness/bundles/java/cursor/harness-submit/SKILL.md +2 -2
- package/harness/bundles/java/cursor/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-test/SKILL.md +4 -4
- package/harness/bundles/java/cursor/harness-test/checklist.md +1 -0
- package/harness/bundles/java/cursor/harness-test/reference.md +2 -0
- package/harness/bundles/java/cursor/protocols/ledger-protocol.md +2 -2
- package/harness/bundles/java/cursor/scripts/harness_archive.py +404 -12
- package/harness/bundles/java/cursor/scripts/harness_context.py +717 -0
- package/harness/bundles/java/cursor/scripts/harness_gate.py +1 -0
- package/harness/bundles/java/cursor/scripts/harness_ledger.py +77 -9
- package/harness/bundles/java/cursor/scripts/harness_phase.py +1 -0
- package/harness/bundles/java/cursor/scripts/harness_plan_aggregate.py +249 -0
- package/harness/bundles/java/cursor/scripts/harness_plan_finalize.py +43 -11
- package/harness/bundles/java/cursor/scripts/harness_profile.py +272 -15
- package/harness/bundles/java/cursor/scripts/harness_report_model.py +420 -0
- package/harness/bundles/java/cursor/scripts/harness_review.py +16 -1
- package/harness/bundles/java/cursor/scripts/harness_verification.py +114 -0
- package/harness/manifests/general/claude-code.json +45 -29
- package/harness/manifests/general/codebuddy.json +45 -29
- package/harness/manifests/general/codex.json +45 -29
- package/harness/manifests/general/cursor.json +45 -29
- package/harness/manifests/java/claude-code.json +47 -31
- package/harness/manifests/java/codebuddy.json +47 -31
- package/harness/manifests/java/codex.json +47 -31
- package/harness/manifests/java/cursor.json +47 -31
- package/hunter-workflow-family.json +4 -4
- package/package.json +1 -1
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "claude-code",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.26",
|
|
6
6
|
"requires": {
|
|
7
|
-
"minimumCliVersion": "0.2.
|
|
7
|
+
"minimumCliVersion": "0.2.36",
|
|
8
8
|
"capabilities": [
|
|
9
9
|
"sync@1",
|
|
10
10
|
"rules-sync@1",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"files": [
|
|
17
17
|
{
|
|
18
18
|
"path": ".harness-build.json",
|
|
19
|
-
"sha256": "
|
|
19
|
+
"sha256": "6a7ec9550dcb0c70e5810970862a819247179da97129ca4d5ccccb60dfb7d761"
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
22
|
"path": "agents/harness-evaluator.md",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
42
|
"path": "contracts/workflow-policy.json",
|
|
43
|
-
"sha256": "
|
|
43
|
+
"sha256": "c979394cdecc6a1a8cfec4d319c8539c90d93e17eac6c66c388efdeec28446a5"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"path": "harness-apidoc/checklist.md",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
54
|
"path": "harness-apidoc/SKILL.md",
|
|
55
|
-
"sha256": "
|
|
55
|
+
"sha256": "973a37bcc91d310c0b04e588a3d0b765fad61b3ff6a5c9c2e6a7683953c63f0a"
|
|
56
56
|
},
|
|
57
57
|
{
|
|
58
58
|
"path": "harness-archive/checklist.md",
|
|
@@ -68,15 +68,15 @@
|
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
"path": "harness-archive/SKILL.md",
|
|
71
|
-
"sha256": "
|
|
71
|
+
"sha256": "cf3fa738bc0f140ca622c12cabdc546178006be330f086b1681cfc6ce83b7822"
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
74
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
75
|
-
"sha256": "
|
|
75
|
+
"sha256": "b437798e93e4bf1afc31305de9e448e4f292ed57513b059ffab59bc53f6dc347"
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
78
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
79
|
-
"sha256": "
|
|
79
|
+
"sha256": "4cc275012d59f22fae14b41c81b076b9865c3f0027addcea5e746dd303101dd7"
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
82
|
"path": "harness-codebase-map/checklist.md",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
},
|
|
89
89
|
{
|
|
90
90
|
"path": "harness-codebase-map/SKILL.md",
|
|
91
|
-
"sha256": "
|
|
91
|
+
"sha256": "bc77b4ece820001163142f3067e7d954af5b1e1562235c99d652024f7728dde1"
|
|
92
92
|
},
|
|
93
93
|
{
|
|
94
94
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -148,15 +148,15 @@
|
|
|
148
148
|
},
|
|
149
149
|
{
|
|
150
150
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
151
|
-
"sha256": "
|
|
151
|
+
"sha256": "891e0d7b10ba2e0a608e818d5c4fef62117a808fe271af8b59731f889452e1b9"
|
|
152
152
|
},
|
|
153
153
|
{
|
|
154
154
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
155
|
-
"sha256": "
|
|
155
|
+
"sha256": "bbddfded451f15dcc7a8b06c1842f7331e4d74b6a8d9d77f680f9cb0568977a0"
|
|
156
156
|
},
|
|
157
157
|
{
|
|
158
158
|
"path": "harness-knowledge-query/SKILL.md",
|
|
159
|
-
"sha256": "
|
|
159
|
+
"sha256": "3fd9830de46d99330c004b5efcbf6e7b5c892d0d4df75ebf5da0ba7e81896ad3"
|
|
160
160
|
},
|
|
161
161
|
{
|
|
162
162
|
"path": "harness-package/checklist.md",
|
|
@@ -168,11 +168,11 @@
|
|
|
168
168
|
},
|
|
169
169
|
{
|
|
170
170
|
"path": "harness-package/SKILL.md",
|
|
171
|
-
"sha256": "
|
|
171
|
+
"sha256": "311f85b3e0b3534f23f15533655f2a7218e1870cdc1e1cf24afcd45ad5214160"
|
|
172
172
|
},
|
|
173
173
|
{
|
|
174
174
|
"path": "harness-plan/checklist.md",
|
|
175
|
-
"sha256": "
|
|
175
|
+
"sha256": "e99853043c543ad4ae3bcd4d5f773f5e518177034444b86cac3348c62a003f7a"
|
|
176
176
|
},
|
|
177
177
|
{
|
|
178
178
|
"path": "harness-plan/protocols.md",
|
|
@@ -180,11 +180,11 @@
|
|
|
180
180
|
},
|
|
181
181
|
{
|
|
182
182
|
"path": "harness-plan/reference.md",
|
|
183
|
-
"sha256": "
|
|
183
|
+
"sha256": "a763a7a92ffaf35a0b0ea5a866ac84447245b02bfc53406f24e9470897ca2d61"
|
|
184
184
|
},
|
|
185
185
|
{
|
|
186
186
|
"path": "harness-plan/SKILL.md",
|
|
187
|
-
"sha256": "
|
|
187
|
+
"sha256": "e0c5dd465d36d7805b97b9508e62985503c787275caaede332786398d749e1dc"
|
|
188
188
|
},
|
|
189
189
|
{
|
|
190
190
|
"path": "harness-review/checklist.md",
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
},
|
|
201
201
|
{
|
|
202
202
|
"path": "harness-review/SKILL.md",
|
|
203
|
-
"sha256": "
|
|
203
|
+
"sha256": "7c2e094872f58e700d10b129bb0c9a917b93bd315f1b0999ba7d4fa1f5822b5a"
|
|
204
204
|
},
|
|
205
205
|
{
|
|
206
206
|
"path": "harness-run/checklist.md",
|
|
@@ -216,7 +216,7 @@
|
|
|
216
216
|
},
|
|
217
217
|
{
|
|
218
218
|
"path": "harness-run/SKILL.md",
|
|
219
|
-
"sha256": "
|
|
219
|
+
"sha256": "0b4f5484907d87d45dd207eaf45a8830803f49b77aaea360af2f32b0dcf92697"
|
|
220
220
|
},
|
|
221
221
|
{
|
|
222
222
|
"path": "harness-submit/checklist.md",
|
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
},
|
|
229
229
|
{
|
|
230
230
|
"path": "harness-submit/SKILL.md",
|
|
231
|
-
"sha256": "
|
|
231
|
+
"sha256": "87fc6976e7b14f317b9650c76044ba9911da0bd976c00196db5bcec6438f6070"
|
|
232
232
|
},
|
|
233
233
|
{
|
|
234
234
|
"path": "harness-sync/reference.md",
|
|
@@ -236,11 +236,11 @@
|
|
|
236
236
|
},
|
|
237
237
|
{
|
|
238
238
|
"path": "harness-sync/SKILL.md",
|
|
239
|
-
"sha256": "
|
|
239
|
+
"sha256": "89a192e5f83ea38f61da61df609869b94d0d2d38192c9946a274154983d986f5"
|
|
240
240
|
},
|
|
241
241
|
{
|
|
242
242
|
"path": "harness-test/checklist.md",
|
|
243
|
-
"sha256": "
|
|
243
|
+
"sha256": "3bc61c0ea43bb07042d8b74c4cb00a8f874d8e5d819b759446c14f8bd01e5881"
|
|
244
244
|
},
|
|
245
245
|
{
|
|
246
246
|
"path": "harness-test/pitfalls-java.md",
|
|
@@ -252,7 +252,7 @@
|
|
|
252
252
|
},
|
|
253
253
|
{
|
|
254
254
|
"path": "harness-test/reference.md",
|
|
255
|
-
"sha256": "
|
|
255
|
+
"sha256": "7f9bc88b7f5b371043d2488a867456bb2affa4632cb08e6c6cc0e92bfdfe21a2"
|
|
256
256
|
},
|
|
257
257
|
{
|
|
258
258
|
"path": "harness-test/scripts/runtime-helpers.mjs",
|
|
@@ -260,7 +260,7 @@
|
|
|
260
260
|
},
|
|
261
261
|
{
|
|
262
262
|
"path": "harness-test/SKILL.md",
|
|
263
|
-
"sha256": "
|
|
263
|
+
"sha256": "8c54a4b5cd3a84fff50a7dfd0f4f8f258a65626bc191fe56205bba731c489078"
|
|
264
264
|
},
|
|
265
265
|
{
|
|
266
266
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -272,7 +272,7 @@
|
|
|
272
272
|
},
|
|
273
273
|
{
|
|
274
274
|
"path": "protocols/ledger-protocol.md",
|
|
275
|
-
"sha256": "
|
|
275
|
+
"sha256": "56608039fd1babd469cb36b0f1c3d0871df460ddc36ef11c80d96218979f5217"
|
|
276
276
|
},
|
|
277
277
|
{
|
|
278
278
|
"path": "protocols/model-routing-protocol.md",
|
|
@@ -308,7 +308,7 @@
|
|
|
308
308
|
},
|
|
309
309
|
{
|
|
310
310
|
"path": "scripts/harness_archive.py",
|
|
311
|
-
"sha256": "
|
|
311
|
+
"sha256": "7f1f03bdc35f1d2bebb895670fdf563b9ffa0fe4727ae45a68abba84e7e50ad7"
|
|
312
312
|
},
|
|
313
313
|
{
|
|
314
314
|
"path": "scripts/harness_change.py",
|
|
@@ -318,6 +318,10 @@
|
|
|
318
318
|
"path": "scripts/harness_check_gate.py",
|
|
319
319
|
"sha256": "9cae8f7fc2ff4519b0c27566b9d5aaa81bd8921153ec1f9534cb5d08af3a21b3"
|
|
320
320
|
},
|
|
321
|
+
{
|
|
322
|
+
"path": "scripts/harness_context.py",
|
|
323
|
+
"sha256": "1c4b5a2ff77abd76d9b46bb04dda82a661613f030a1ada9e70bb14e6185393c3"
|
|
324
|
+
},
|
|
321
325
|
{
|
|
322
326
|
"path": "scripts/harness_deploy.py",
|
|
323
327
|
"sha256": "c10045fc86f2ac87d6ba60b5bcd31e9698d306a2d94eccfcff4a623cf817bf5c"
|
|
@@ -332,7 +336,7 @@
|
|
|
332
336
|
},
|
|
333
337
|
{
|
|
334
338
|
"path": "scripts/harness_gate.py",
|
|
335
|
-
"sha256": "
|
|
339
|
+
"sha256": "37bdb2eaaac2652fe5cdf142572e99379b1b17630f365a01b6e3e71333055a8a"
|
|
336
340
|
},
|
|
337
341
|
{
|
|
338
342
|
"path": "scripts/harness_integration.py",
|
|
@@ -340,7 +344,7 @@
|
|
|
340
344
|
},
|
|
341
345
|
{
|
|
342
346
|
"path": "scripts/harness_ledger.py",
|
|
343
|
-
"sha256": "
|
|
347
|
+
"sha256": "85b96dbc3d750443f989bff994d894d0a7b9dccd2e53401b54481782e1ea6ae5"
|
|
344
348
|
},
|
|
345
349
|
{
|
|
346
350
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -352,11 +356,15 @@
|
|
|
352
356
|
},
|
|
353
357
|
{
|
|
354
358
|
"path": "scripts/harness_phase.py",
|
|
355
|
-
"sha256": "
|
|
359
|
+
"sha256": "b1e53c1f7becf198195cb9a4bcba835767aed82420450e1842cc07d89febf532"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"path": "scripts/harness_plan_aggregate.py",
|
|
363
|
+
"sha256": "9a43b6d44e4dbdf9f505ac6631b0ae19b48d6600e4e3aa4232c2eff783482601"
|
|
356
364
|
},
|
|
357
365
|
{
|
|
358
366
|
"path": "scripts/harness_plan_finalize.py",
|
|
359
|
-
"sha256": "
|
|
367
|
+
"sha256": "1e9b81af4ed3166c3847b6668899e9b7bf32a27f9b879657fe92ee402bf9da4c"
|
|
360
368
|
},
|
|
361
369
|
{
|
|
362
370
|
"path": "scripts/harness_preflight.py",
|
|
@@ -364,7 +372,11 @@
|
|
|
364
372
|
},
|
|
365
373
|
{
|
|
366
374
|
"path": "scripts/harness_profile.py",
|
|
367
|
-
"sha256": "
|
|
375
|
+
"sha256": "6d52450b57d0a6eb21ab8f6116e5e3d14bd5cd6c668f518c895bf0f723e62826"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"path": "scripts/harness_report_model.py",
|
|
379
|
+
"sha256": "fd30968d429aed3a82bddd3203ccfe89807c00fa2d67787b625c67182a289feb"
|
|
368
380
|
},
|
|
369
381
|
{
|
|
370
382
|
"path": "scripts/harness_retry.py",
|
|
@@ -372,7 +384,7 @@
|
|
|
372
384
|
},
|
|
373
385
|
{
|
|
374
386
|
"path": "scripts/harness_review.py",
|
|
375
|
-
"sha256": "
|
|
387
|
+
"sha256": "f5b9170f5c3b35c87bd340e8368cd08d8940176a67fb11666518107ba3626e86"
|
|
376
388
|
},
|
|
377
389
|
{
|
|
378
390
|
"path": "scripts/harness_runtime.py",
|
|
@@ -402,6 +414,10 @@
|
|
|
402
414
|
"path": "scripts/harness_test_runner.py",
|
|
403
415
|
"sha256": "ba8b8b5628728593a1bcdab464b80b2a90536a909c0ce7df6a832f8ab16f08d1"
|
|
404
416
|
},
|
|
417
|
+
{
|
|
418
|
+
"path": "scripts/harness_verification.py",
|
|
419
|
+
"sha256": "a54a257d6c068f4e15f0174a841845cab61af02c4abc35503f99d7fdd206c4f7"
|
|
420
|
+
},
|
|
405
421
|
{
|
|
406
422
|
"path": "scripts/harness_workflow_policy.py",
|
|
407
423
|
"sha256": "3c05971bccef2422217f88bf0d0a2e346248e46964474f20d383b95acec185da"
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "codebuddy",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.26",
|
|
6
6
|
"requires": {
|
|
7
|
-
"minimumCliVersion": "0.2.
|
|
7
|
+
"minimumCliVersion": "0.2.36",
|
|
8
8
|
"capabilities": [
|
|
9
9
|
"sync@1",
|
|
10
10
|
"rules-sync@1",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"files": [
|
|
17
17
|
{
|
|
18
18
|
"path": ".harness-build.json",
|
|
19
|
-
"sha256": "
|
|
19
|
+
"sha256": "f298af39e90e27cf67fef12bf3c677e009f7f2b0dd028ac443151fb89cdf7b39"
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
22
|
"path": "agents/harness-evaluator.md",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
42
|
"path": "contracts/workflow-policy.json",
|
|
43
|
-
"sha256": "
|
|
43
|
+
"sha256": "c979394cdecc6a1a8cfec4d319c8539c90d93e17eac6c66c388efdeec28446a5"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"path": "harness-apidoc/checklist.md",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
54
|
"path": "harness-apidoc/SKILL.md",
|
|
55
|
-
"sha256": "
|
|
55
|
+
"sha256": "84bdd9eba994d1244b94f5029877af937549b786372968fe26489615f53bf730"
|
|
56
56
|
},
|
|
57
57
|
{
|
|
58
58
|
"path": "harness-archive/checklist.md",
|
|
@@ -68,15 +68,15 @@
|
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
"path": "harness-archive/SKILL.md",
|
|
71
|
-
"sha256": "
|
|
71
|
+
"sha256": "016b68ad91d222cd2576cbdef8167c3789de0f9e9f57a451f00b5838490f2f43"
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
74
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
75
|
-
"sha256": "
|
|
75
|
+
"sha256": "b437798e93e4bf1afc31305de9e448e4f292ed57513b059ffab59bc53f6dc347"
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
78
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
79
|
-
"sha256": "
|
|
79
|
+
"sha256": "4cc275012d59f22fae14b41c81b076b9865c3f0027addcea5e746dd303101dd7"
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
82
|
"path": "harness-codebase-map/checklist.md",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
},
|
|
89
89
|
{
|
|
90
90
|
"path": "harness-codebase-map/SKILL.md",
|
|
91
|
-
"sha256": "
|
|
91
|
+
"sha256": "0549f5d379b22abf83ccc7c43b4bd28f94a568f00f93908cbefb6d21784ef4d0"
|
|
92
92
|
},
|
|
93
93
|
{
|
|
94
94
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -148,15 +148,15 @@
|
|
|
148
148
|
},
|
|
149
149
|
{
|
|
150
150
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
151
|
-
"sha256": "
|
|
151
|
+
"sha256": "891e0d7b10ba2e0a608e818d5c4fef62117a808fe271af8b59731f889452e1b9"
|
|
152
152
|
},
|
|
153
153
|
{
|
|
154
154
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
155
|
-
"sha256": "
|
|
155
|
+
"sha256": "48509233841e54be75e6dc11db2b1c3ad9ce078d331ceb479b4173e1289c6b28"
|
|
156
156
|
},
|
|
157
157
|
{
|
|
158
158
|
"path": "harness-knowledge-query/SKILL.md",
|
|
159
|
-
"sha256": "
|
|
159
|
+
"sha256": "effe6908628bb98fc298ca150e1cdc0e25ce32b61f177515077e72ea0806f2f7"
|
|
160
160
|
},
|
|
161
161
|
{
|
|
162
162
|
"path": "harness-package/checklist.md",
|
|
@@ -168,11 +168,11 @@
|
|
|
168
168
|
},
|
|
169
169
|
{
|
|
170
170
|
"path": "harness-package/SKILL.md",
|
|
171
|
-
"sha256": "
|
|
171
|
+
"sha256": "0dbbd73927c3ed3f037e1391e59508815af51377f91924b04b428b960d76e420"
|
|
172
172
|
},
|
|
173
173
|
{
|
|
174
174
|
"path": "harness-plan/checklist.md",
|
|
175
|
-
"sha256": "
|
|
175
|
+
"sha256": "e99853043c543ad4ae3bcd4d5f773f5e518177034444b86cac3348c62a003f7a"
|
|
176
176
|
},
|
|
177
177
|
{
|
|
178
178
|
"path": "harness-plan/protocols.md",
|
|
@@ -180,11 +180,11 @@
|
|
|
180
180
|
},
|
|
181
181
|
{
|
|
182
182
|
"path": "harness-plan/reference.md",
|
|
183
|
-
"sha256": "
|
|
183
|
+
"sha256": "a763a7a92ffaf35a0b0ea5a866ac84447245b02bfc53406f24e9470897ca2d61"
|
|
184
184
|
},
|
|
185
185
|
{
|
|
186
186
|
"path": "harness-plan/SKILL.md",
|
|
187
|
-
"sha256": "
|
|
187
|
+
"sha256": "b387f54418f3cdfc334165e1bb0f74381f8d742df43daa660b6459749d8d708c"
|
|
188
188
|
},
|
|
189
189
|
{
|
|
190
190
|
"path": "harness-review/checklist.md",
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
},
|
|
201
201
|
{
|
|
202
202
|
"path": "harness-review/SKILL.md",
|
|
203
|
-
"sha256": "
|
|
203
|
+
"sha256": "bec4b89b1c499bd71a6ccea196a07eae091a4171ae88148f7686da746e596650"
|
|
204
204
|
},
|
|
205
205
|
{
|
|
206
206
|
"path": "harness-run/checklist.md",
|
|
@@ -216,7 +216,7 @@
|
|
|
216
216
|
},
|
|
217
217
|
{
|
|
218
218
|
"path": "harness-run/SKILL.md",
|
|
219
|
-
"sha256": "
|
|
219
|
+
"sha256": "658addd6b3622da48f934747725f9d5fb8d0c40435d3c65968ca3d8fe0b4c5cb"
|
|
220
220
|
},
|
|
221
221
|
{
|
|
222
222
|
"path": "harness-submit/checklist.md",
|
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
},
|
|
229
229
|
{
|
|
230
230
|
"path": "harness-submit/SKILL.md",
|
|
231
|
-
"sha256": "
|
|
231
|
+
"sha256": "53a0e2c80a3af63f34d8d4aa3a8013ea6ac1535d8c32e282e97978f6de169310"
|
|
232
232
|
},
|
|
233
233
|
{
|
|
234
234
|
"path": "harness-sync/reference.md",
|
|
@@ -236,11 +236,11 @@
|
|
|
236
236
|
},
|
|
237
237
|
{
|
|
238
238
|
"path": "harness-sync/SKILL.md",
|
|
239
|
-
"sha256": "
|
|
239
|
+
"sha256": "4aa79f12d5f68afb23402678ffb58b559579a3c3504ab783067eab37e884b590"
|
|
240
240
|
},
|
|
241
241
|
{
|
|
242
242
|
"path": "harness-test/checklist.md",
|
|
243
|
-
"sha256": "
|
|
243
|
+
"sha256": "3bc61c0ea43bb07042d8b74c4cb00a8f874d8e5d819b759446c14f8bd01e5881"
|
|
244
244
|
},
|
|
245
245
|
{
|
|
246
246
|
"path": "harness-test/pitfalls-java.md",
|
|
@@ -252,7 +252,7 @@
|
|
|
252
252
|
},
|
|
253
253
|
{
|
|
254
254
|
"path": "harness-test/reference.md",
|
|
255
|
-
"sha256": "
|
|
255
|
+
"sha256": "7f9bc88b7f5b371043d2488a867456bb2affa4632cb08e6c6cc0e92bfdfe21a2"
|
|
256
256
|
},
|
|
257
257
|
{
|
|
258
258
|
"path": "harness-test/scripts/runtime-helpers.mjs",
|
|
@@ -260,7 +260,7 @@
|
|
|
260
260
|
},
|
|
261
261
|
{
|
|
262
262
|
"path": "harness-test/SKILL.md",
|
|
263
|
-
"sha256": "
|
|
263
|
+
"sha256": "9b1f4a5b2de366bb873c7880c424ce537571b2417fee2985a91de7a6a87db1b5"
|
|
264
264
|
},
|
|
265
265
|
{
|
|
266
266
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -272,7 +272,7 @@
|
|
|
272
272
|
},
|
|
273
273
|
{
|
|
274
274
|
"path": "protocols/ledger-protocol.md",
|
|
275
|
-
"sha256": "
|
|
275
|
+
"sha256": "56608039fd1babd469cb36b0f1c3d0871df460ddc36ef11c80d96218979f5217"
|
|
276
276
|
},
|
|
277
277
|
{
|
|
278
278
|
"path": "protocols/model-routing-protocol.md",
|
|
@@ -308,7 +308,7 @@
|
|
|
308
308
|
},
|
|
309
309
|
{
|
|
310
310
|
"path": "scripts/harness_archive.py",
|
|
311
|
-
"sha256": "
|
|
311
|
+
"sha256": "7f1f03bdc35f1d2bebb895670fdf563b9ffa0fe4727ae45a68abba84e7e50ad7"
|
|
312
312
|
},
|
|
313
313
|
{
|
|
314
314
|
"path": "scripts/harness_change.py",
|
|
@@ -318,6 +318,10 @@
|
|
|
318
318
|
"path": "scripts/harness_check_gate.py",
|
|
319
319
|
"sha256": "9cae8f7fc2ff4519b0c27566b9d5aaa81bd8921153ec1f9534cb5d08af3a21b3"
|
|
320
320
|
},
|
|
321
|
+
{
|
|
322
|
+
"path": "scripts/harness_context.py",
|
|
323
|
+
"sha256": "1c4b5a2ff77abd76d9b46bb04dda82a661613f030a1ada9e70bb14e6185393c3"
|
|
324
|
+
},
|
|
321
325
|
{
|
|
322
326
|
"path": "scripts/harness_deploy.py",
|
|
323
327
|
"sha256": "c10045fc86f2ac87d6ba60b5bcd31e9698d306a2d94eccfcff4a623cf817bf5c"
|
|
@@ -332,7 +336,7 @@
|
|
|
332
336
|
},
|
|
333
337
|
{
|
|
334
338
|
"path": "scripts/harness_gate.py",
|
|
335
|
-
"sha256": "
|
|
339
|
+
"sha256": "37bdb2eaaac2652fe5cdf142572e99379b1b17630f365a01b6e3e71333055a8a"
|
|
336
340
|
},
|
|
337
341
|
{
|
|
338
342
|
"path": "scripts/harness_integration.py",
|
|
@@ -340,7 +344,7 @@
|
|
|
340
344
|
},
|
|
341
345
|
{
|
|
342
346
|
"path": "scripts/harness_ledger.py",
|
|
343
|
-
"sha256": "
|
|
347
|
+
"sha256": "85b96dbc3d750443f989bff994d894d0a7b9dccd2e53401b54481782e1ea6ae5"
|
|
344
348
|
},
|
|
345
349
|
{
|
|
346
350
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -352,11 +356,15 @@
|
|
|
352
356
|
},
|
|
353
357
|
{
|
|
354
358
|
"path": "scripts/harness_phase.py",
|
|
355
|
-
"sha256": "
|
|
359
|
+
"sha256": "b1e53c1f7becf198195cb9a4bcba835767aed82420450e1842cc07d89febf532"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"path": "scripts/harness_plan_aggregate.py",
|
|
363
|
+
"sha256": "9a43b6d44e4dbdf9f505ac6631b0ae19b48d6600e4e3aa4232c2eff783482601"
|
|
356
364
|
},
|
|
357
365
|
{
|
|
358
366
|
"path": "scripts/harness_plan_finalize.py",
|
|
359
|
-
"sha256": "
|
|
367
|
+
"sha256": "1e9b81af4ed3166c3847b6668899e9b7bf32a27f9b879657fe92ee402bf9da4c"
|
|
360
368
|
},
|
|
361
369
|
{
|
|
362
370
|
"path": "scripts/harness_preflight.py",
|
|
@@ -364,7 +372,11 @@
|
|
|
364
372
|
},
|
|
365
373
|
{
|
|
366
374
|
"path": "scripts/harness_profile.py",
|
|
367
|
-
"sha256": "
|
|
375
|
+
"sha256": "6d52450b57d0a6eb21ab8f6116e5e3d14bd5cd6c668f518c895bf0f723e62826"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"path": "scripts/harness_report_model.py",
|
|
379
|
+
"sha256": "fd30968d429aed3a82bddd3203ccfe89807c00fa2d67787b625c67182a289feb"
|
|
368
380
|
},
|
|
369
381
|
{
|
|
370
382
|
"path": "scripts/harness_retry.py",
|
|
@@ -372,7 +384,7 @@
|
|
|
372
384
|
},
|
|
373
385
|
{
|
|
374
386
|
"path": "scripts/harness_review.py",
|
|
375
|
-
"sha256": "
|
|
387
|
+
"sha256": "f5b9170f5c3b35c87bd340e8368cd08d8940176a67fb11666518107ba3626e86"
|
|
376
388
|
},
|
|
377
389
|
{
|
|
378
390
|
"path": "scripts/harness_runtime.py",
|
|
@@ -402,6 +414,10 @@
|
|
|
402
414
|
"path": "scripts/harness_test_runner.py",
|
|
403
415
|
"sha256": "ba8b8b5628728593a1bcdab464b80b2a90536a909c0ce7df6a832f8ab16f08d1"
|
|
404
416
|
},
|
|
417
|
+
{
|
|
418
|
+
"path": "scripts/harness_verification.py",
|
|
419
|
+
"sha256": "a54a257d6c068f4e15f0174a841845cab61af02c4abc35503f99d7fdd206c4f7"
|
|
420
|
+
},
|
|
405
421
|
{
|
|
406
422
|
"path": "scripts/harness_workflow_policy.py",
|
|
407
423
|
"sha256": "3c05971bccef2422217f88bf0d0a2e346248e46964474f20d383b95acec185da"
|