@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": "codex",
|
|
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": "f1ba7ae9701c00827df91905874244085e2883395537e2eec0486d0d35c1fbd0"
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
22
|
"path": "CONTEXT.md",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
"path": "contracts/workflow-policy.json",
|
|
31
|
-
"sha256": "
|
|
31
|
+
"sha256": "c979394cdecc6a1a8cfec4d319c8539c90d93e17eac6c66c388efdeec28446a5"
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
34
|
"path": "harness-apidoc/checklist.md",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
42
|
"path": "harness-apidoc/SKILL.md",
|
|
43
|
-
"sha256": "
|
|
43
|
+
"sha256": "b509af00af66a8453c38bc5b85621f7deb0d6606e9b3eb227b501aa9ae539303"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"path": "harness-archive/checklist.md",
|
|
@@ -56,15 +56,15 @@
|
|
|
56
56
|
},
|
|
57
57
|
{
|
|
58
58
|
"path": "harness-archive/SKILL.md",
|
|
59
|
-
"sha256": "
|
|
59
|
+
"sha256": "70e3a1e1075b323e3f0e89ef029db4b4c8feeba970376697c9e764898a09f492"
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
62
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
63
|
-
"sha256": "
|
|
63
|
+
"sha256": "b437798e93e4bf1afc31305de9e448e4f292ed57513b059ffab59bc53f6dc347"
|
|
64
64
|
},
|
|
65
65
|
{
|
|
66
66
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
67
|
-
"sha256": "
|
|
67
|
+
"sha256": "4cc275012d59f22fae14b41c81b076b9865c3f0027addcea5e746dd303101dd7"
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
"path": "harness-codebase-map/checklist.md",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
78
|
"path": "harness-codebase-map/SKILL.md",
|
|
79
|
-
"sha256": "
|
|
79
|
+
"sha256": "4944db708575372dcf4ee5b04fc5417d424a80bdcbf014f44126a04e8cbd2c17"
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
82
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -136,15 +136,15 @@
|
|
|
136
136
|
},
|
|
137
137
|
{
|
|
138
138
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
139
|
-
"sha256": "
|
|
139
|
+
"sha256": "891e0d7b10ba2e0a608e818d5c4fef62117a808fe271af8b59731f889452e1b9"
|
|
140
140
|
},
|
|
141
141
|
{
|
|
142
142
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
143
|
-
"sha256": "
|
|
143
|
+
"sha256": "6107a44987e344cc8008a9cc141b7047814f8173b9b230c3216ca7e7fc0bbcb9"
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
146
|
"path": "harness-knowledge-query/SKILL.md",
|
|
147
|
-
"sha256": "
|
|
147
|
+
"sha256": "7a821739b429add88294ee325ca8da78204d8c790df73a3233484c715fb7f7ab"
|
|
148
148
|
},
|
|
149
149
|
{
|
|
150
150
|
"path": "harness-package/checklist.md",
|
|
@@ -156,11 +156,11 @@
|
|
|
156
156
|
},
|
|
157
157
|
{
|
|
158
158
|
"path": "harness-package/SKILL.md",
|
|
159
|
-
"sha256": "
|
|
159
|
+
"sha256": "c0eabd1e2dd482b5b68aa78d14586e05f902b4e9f26b2582787c51181f7bb63a"
|
|
160
160
|
},
|
|
161
161
|
{
|
|
162
162
|
"path": "harness-plan/checklist.md",
|
|
163
|
-
"sha256": "
|
|
163
|
+
"sha256": "e99853043c543ad4ae3bcd4d5f773f5e518177034444b86cac3348c62a003f7a"
|
|
164
164
|
},
|
|
165
165
|
{
|
|
166
166
|
"path": "harness-plan/protocols.md",
|
|
@@ -168,11 +168,11 @@
|
|
|
168
168
|
},
|
|
169
169
|
{
|
|
170
170
|
"path": "harness-plan/reference.md",
|
|
171
|
-
"sha256": "
|
|
171
|
+
"sha256": "a763a7a92ffaf35a0b0ea5a866ac84447245b02bfc53406f24e9470897ca2d61"
|
|
172
172
|
},
|
|
173
173
|
{
|
|
174
174
|
"path": "harness-plan/SKILL.md",
|
|
175
|
-
"sha256": "
|
|
175
|
+
"sha256": "99b7b97636572ee0137c8d8c7c980ba5646d969573a4706df7fa9da6f4ba17ad"
|
|
176
176
|
},
|
|
177
177
|
{
|
|
178
178
|
"path": "harness-review/checklist.md",
|
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
},
|
|
189
189
|
{
|
|
190
190
|
"path": "harness-review/SKILL.md",
|
|
191
|
-
"sha256": "
|
|
191
|
+
"sha256": "a33ec17f98b07739741c58a57e0fd7344e31d47d670548ff2a23bf5f3b0df3d6"
|
|
192
192
|
},
|
|
193
193
|
{
|
|
194
194
|
"path": "harness-run/checklist.md",
|
|
@@ -204,7 +204,7 @@
|
|
|
204
204
|
},
|
|
205
205
|
{
|
|
206
206
|
"path": "harness-run/SKILL.md",
|
|
207
|
-
"sha256": "
|
|
207
|
+
"sha256": "fb25542234a1fa89431134873223e26e09e5b748517fbe989107f1126fbf50b3"
|
|
208
208
|
},
|
|
209
209
|
{
|
|
210
210
|
"path": "harness-submit/checklist.md",
|
|
@@ -216,7 +216,7 @@
|
|
|
216
216
|
},
|
|
217
217
|
{
|
|
218
218
|
"path": "harness-submit/SKILL.md",
|
|
219
|
-
"sha256": "
|
|
219
|
+
"sha256": "78e9d8f8c88ec1328178238783fa7ca8f5019b307cd604f4884df9aaab50336f"
|
|
220
220
|
},
|
|
221
221
|
{
|
|
222
222
|
"path": "harness-sync/reference.md",
|
|
@@ -224,11 +224,11 @@
|
|
|
224
224
|
},
|
|
225
225
|
{
|
|
226
226
|
"path": "harness-sync/SKILL.md",
|
|
227
|
-
"sha256": "
|
|
227
|
+
"sha256": "439d71f5d334e921168b5c2410eb9d0a2b971bb00b373ec7fd1fde2477e912b0"
|
|
228
228
|
},
|
|
229
229
|
{
|
|
230
230
|
"path": "harness-test/checklist.md",
|
|
231
|
-
"sha256": "
|
|
231
|
+
"sha256": "3bc61c0ea43bb07042d8b74c4cb00a8f874d8e5d819b759446c14f8bd01e5881"
|
|
232
232
|
},
|
|
233
233
|
{
|
|
234
234
|
"path": "harness-test/pitfalls-java.md",
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
},
|
|
241
241
|
{
|
|
242
242
|
"path": "harness-test/reference.md",
|
|
243
|
-
"sha256": "
|
|
243
|
+
"sha256": "7f9bc88b7f5b371043d2488a867456bb2affa4632cb08e6c6cc0e92bfdfe21a2"
|
|
244
244
|
},
|
|
245
245
|
{
|
|
246
246
|
"path": "harness-test/scripts/runtime-helpers.mjs",
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
},
|
|
249
249
|
{
|
|
250
250
|
"path": "harness-test/SKILL.md",
|
|
251
|
-
"sha256": "
|
|
251
|
+
"sha256": "b2a1dd9acddba6b991c3b595ae2d0e833c5cdc269ef0c5dbadad21eb559c20df"
|
|
252
252
|
},
|
|
253
253
|
{
|
|
254
254
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -260,7 +260,7 @@
|
|
|
260
260
|
},
|
|
261
261
|
{
|
|
262
262
|
"path": "protocols/ledger-protocol.md",
|
|
263
|
-
"sha256": "
|
|
263
|
+
"sha256": "56608039fd1babd469cb36b0f1c3d0871df460ddc36ef11c80d96218979f5217"
|
|
264
264
|
},
|
|
265
265
|
{
|
|
266
266
|
"path": "protocols/model-routing-protocol.md",
|
|
@@ -296,7 +296,7 @@
|
|
|
296
296
|
},
|
|
297
297
|
{
|
|
298
298
|
"path": "scripts/harness_archive.py",
|
|
299
|
-
"sha256": "
|
|
299
|
+
"sha256": "7f1f03bdc35f1d2bebb895670fdf563b9ffa0fe4727ae45a68abba84e7e50ad7"
|
|
300
300
|
},
|
|
301
301
|
{
|
|
302
302
|
"path": "scripts/harness_change.py",
|
|
@@ -306,6 +306,10 @@
|
|
|
306
306
|
"path": "scripts/harness_check_gate.py",
|
|
307
307
|
"sha256": "9cae8f7fc2ff4519b0c27566b9d5aaa81bd8921153ec1f9534cb5d08af3a21b3"
|
|
308
308
|
},
|
|
309
|
+
{
|
|
310
|
+
"path": "scripts/harness_context.py",
|
|
311
|
+
"sha256": "1c4b5a2ff77abd76d9b46bb04dda82a661613f030a1ada9e70bb14e6185393c3"
|
|
312
|
+
},
|
|
309
313
|
{
|
|
310
314
|
"path": "scripts/harness_deploy.py",
|
|
311
315
|
"sha256": "c10045fc86f2ac87d6ba60b5bcd31e9698d306a2d94eccfcff4a623cf817bf5c"
|
|
@@ -320,7 +324,7 @@
|
|
|
320
324
|
},
|
|
321
325
|
{
|
|
322
326
|
"path": "scripts/harness_gate.py",
|
|
323
|
-
"sha256": "
|
|
327
|
+
"sha256": "37bdb2eaaac2652fe5cdf142572e99379b1b17630f365a01b6e3e71333055a8a"
|
|
324
328
|
},
|
|
325
329
|
{
|
|
326
330
|
"path": "scripts/harness_integration.py",
|
|
@@ -328,7 +332,7 @@
|
|
|
328
332
|
},
|
|
329
333
|
{
|
|
330
334
|
"path": "scripts/harness_ledger.py",
|
|
331
|
-
"sha256": "
|
|
335
|
+
"sha256": "85b96dbc3d750443f989bff994d894d0a7b9dccd2e53401b54481782e1ea6ae5"
|
|
332
336
|
},
|
|
333
337
|
{
|
|
334
338
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -340,11 +344,15 @@
|
|
|
340
344
|
},
|
|
341
345
|
{
|
|
342
346
|
"path": "scripts/harness_phase.py",
|
|
343
|
-
"sha256": "
|
|
347
|
+
"sha256": "b1e53c1f7becf198195cb9a4bcba835767aed82420450e1842cc07d89febf532"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"path": "scripts/harness_plan_aggregate.py",
|
|
351
|
+
"sha256": "9a43b6d44e4dbdf9f505ac6631b0ae19b48d6600e4e3aa4232c2eff783482601"
|
|
344
352
|
},
|
|
345
353
|
{
|
|
346
354
|
"path": "scripts/harness_plan_finalize.py",
|
|
347
|
-
"sha256": "
|
|
355
|
+
"sha256": "1e9b81af4ed3166c3847b6668899e9b7bf32a27f9b879657fe92ee402bf9da4c"
|
|
348
356
|
},
|
|
349
357
|
{
|
|
350
358
|
"path": "scripts/harness_preflight.py",
|
|
@@ -352,7 +360,11 @@
|
|
|
352
360
|
},
|
|
353
361
|
{
|
|
354
362
|
"path": "scripts/harness_profile.py",
|
|
355
|
-
"sha256": "
|
|
363
|
+
"sha256": "6d52450b57d0a6eb21ab8f6116e5e3d14bd5cd6c668f518c895bf0f723e62826"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"path": "scripts/harness_report_model.py",
|
|
367
|
+
"sha256": "fd30968d429aed3a82bddd3203ccfe89807c00fa2d67787b625c67182a289feb"
|
|
356
368
|
},
|
|
357
369
|
{
|
|
358
370
|
"path": "scripts/harness_retry.py",
|
|
@@ -360,7 +372,7 @@
|
|
|
360
372
|
},
|
|
361
373
|
{
|
|
362
374
|
"path": "scripts/harness_review.py",
|
|
363
|
-
"sha256": "
|
|
375
|
+
"sha256": "f5b9170f5c3b35c87bd340e8368cd08d8940176a67fb11666518107ba3626e86"
|
|
364
376
|
},
|
|
365
377
|
{
|
|
366
378
|
"path": "scripts/harness_runtime.py",
|
|
@@ -390,6 +402,10 @@
|
|
|
390
402
|
"path": "scripts/harness_test_runner.py",
|
|
391
403
|
"sha256": "ba8b8b5628728593a1bcdab464b80b2a90536a909c0ce7df6a832f8ab16f08d1"
|
|
392
404
|
},
|
|
405
|
+
{
|
|
406
|
+
"path": "scripts/harness_verification.py",
|
|
407
|
+
"sha256": "a54a257d6c068f4e15f0174a841845cab61af02c4abc35503f99d7fdd206c4f7"
|
|
408
|
+
},
|
|
393
409
|
{
|
|
394
410
|
"path": "scripts/harness_workflow_policy.py",
|
|
395
411
|
"sha256": "3c05971bccef2422217f88bf0d0a2e346248e46964474f20d383b95acec185da"
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "cursor",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.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": "067bbbe67e0470e917e1e6c7e28d7eefd53e9401ae3e01207ebb190236f45532"
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
22
|
"path": "CONTEXT.md",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
"path": "contracts/workflow-policy.json",
|
|
31
|
-
"sha256": "
|
|
31
|
+
"sha256": "c979394cdecc6a1a8cfec4d319c8539c90d93e17eac6c66c388efdeec28446a5"
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
34
|
"path": "harness-apidoc/checklist.md",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
42
|
"path": "harness-apidoc/SKILL.md",
|
|
43
|
-
"sha256": "
|
|
43
|
+
"sha256": "a1ba8731594e666189a3ab6ee66b34d4f68c2233f7949a99d49183549810e0b7"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"path": "harness-archive/checklist.md",
|
|
@@ -56,15 +56,15 @@
|
|
|
56
56
|
},
|
|
57
57
|
{
|
|
58
58
|
"path": "harness-archive/SKILL.md",
|
|
59
|
-
"sha256": "
|
|
59
|
+
"sha256": "e39f64936c89f5e924634240ad2b2697639ed1f11a885dd8e78035fcc3a371c7"
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
62
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
63
|
-
"sha256": "
|
|
63
|
+
"sha256": "b437798e93e4bf1afc31305de9e448e4f292ed57513b059ffab59bc53f6dc347"
|
|
64
64
|
},
|
|
65
65
|
{
|
|
66
66
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
67
|
-
"sha256": "
|
|
67
|
+
"sha256": "4cc275012d59f22fae14b41c81b076b9865c3f0027addcea5e746dd303101dd7"
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
"path": "harness-codebase-map/checklist.md",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
78
|
"path": "harness-codebase-map/SKILL.md",
|
|
79
|
-
"sha256": "
|
|
79
|
+
"sha256": "b17545b1782b55a080e87aad6b941574a600f30b1481ec5d7f832b18fa5d9468"
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
82
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -136,15 +136,15 @@
|
|
|
136
136
|
},
|
|
137
137
|
{
|
|
138
138
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
139
|
-
"sha256": "
|
|
139
|
+
"sha256": "891e0d7b10ba2e0a608e818d5c4fef62117a808fe271af8b59731f889452e1b9"
|
|
140
140
|
},
|
|
141
141
|
{
|
|
142
142
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
143
|
-
"sha256": "
|
|
143
|
+
"sha256": "72c8021adc83178f22bcf41c5f568b6f6ddeae3b85d6eeba9d1055fe637a8c2a"
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
146
|
"path": "harness-knowledge-query/SKILL.md",
|
|
147
|
-
"sha256": "
|
|
147
|
+
"sha256": "5bf9e6775976d2fcbb443b37b5ecf5fb02f0842ed4ae65dcb34bb5b2b4fd6105"
|
|
148
148
|
},
|
|
149
149
|
{
|
|
150
150
|
"path": "harness-package/checklist.md",
|
|
@@ -156,11 +156,11 @@
|
|
|
156
156
|
},
|
|
157
157
|
{
|
|
158
158
|
"path": "harness-package/SKILL.md",
|
|
159
|
-
"sha256": "
|
|
159
|
+
"sha256": "02a3d0819d67c4d00658022c0563addeabf5e16660d05c65f10b0510ccb879e2"
|
|
160
160
|
},
|
|
161
161
|
{
|
|
162
162
|
"path": "harness-plan/checklist.md",
|
|
163
|
-
"sha256": "
|
|
163
|
+
"sha256": "e99853043c543ad4ae3bcd4d5f773f5e518177034444b86cac3348c62a003f7a"
|
|
164
164
|
},
|
|
165
165
|
{
|
|
166
166
|
"path": "harness-plan/protocols.md",
|
|
@@ -168,11 +168,11 @@
|
|
|
168
168
|
},
|
|
169
169
|
{
|
|
170
170
|
"path": "harness-plan/reference.md",
|
|
171
|
-
"sha256": "
|
|
171
|
+
"sha256": "a763a7a92ffaf35a0b0ea5a866ac84447245b02bfc53406f24e9470897ca2d61"
|
|
172
172
|
},
|
|
173
173
|
{
|
|
174
174
|
"path": "harness-plan/SKILL.md",
|
|
175
|
-
"sha256": "
|
|
175
|
+
"sha256": "750b3cf1b5cf06ad1f2e2784c7d8664c1a1f57bf8f025a66be1f66233c55002c"
|
|
176
176
|
},
|
|
177
177
|
{
|
|
178
178
|
"path": "harness-review/checklist.md",
|
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
},
|
|
189
189
|
{
|
|
190
190
|
"path": "harness-review/SKILL.md",
|
|
191
|
-
"sha256": "
|
|
191
|
+
"sha256": "5cdee0e81a2014224e4b78e724cbbf79a16dcc1591d460d6f875b1d0cdca2beb"
|
|
192
192
|
},
|
|
193
193
|
{
|
|
194
194
|
"path": "harness-run/checklist.md",
|
|
@@ -204,7 +204,7 @@
|
|
|
204
204
|
},
|
|
205
205
|
{
|
|
206
206
|
"path": "harness-run/SKILL.md",
|
|
207
|
-
"sha256": "
|
|
207
|
+
"sha256": "cf12f49bf5c92a80c4ff463d96e54023b038bfc55f803614f324c1748187b20b"
|
|
208
208
|
},
|
|
209
209
|
{
|
|
210
210
|
"path": "harness-submit/checklist.md",
|
|
@@ -216,7 +216,7 @@
|
|
|
216
216
|
},
|
|
217
217
|
{
|
|
218
218
|
"path": "harness-submit/SKILL.md",
|
|
219
|
-
"sha256": "
|
|
219
|
+
"sha256": "2f34883dc474330e96246848ec56d528177185520aea40320d1dbee0b9c24612"
|
|
220
220
|
},
|
|
221
221
|
{
|
|
222
222
|
"path": "harness-sync/reference.md",
|
|
@@ -224,11 +224,11 @@
|
|
|
224
224
|
},
|
|
225
225
|
{
|
|
226
226
|
"path": "harness-sync/SKILL.md",
|
|
227
|
-
"sha256": "
|
|
227
|
+
"sha256": "0fee70ac93925bf44fd8500fda1f600e53270fd3ec37181e2b7e6c896f3e31bb"
|
|
228
228
|
},
|
|
229
229
|
{
|
|
230
230
|
"path": "harness-test/checklist.md",
|
|
231
|
-
"sha256": "
|
|
231
|
+
"sha256": "3bc61c0ea43bb07042d8b74c4cb00a8f874d8e5d819b759446c14f8bd01e5881"
|
|
232
232
|
},
|
|
233
233
|
{
|
|
234
234
|
"path": "harness-test/pitfalls-java.md",
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
},
|
|
241
241
|
{
|
|
242
242
|
"path": "harness-test/reference.md",
|
|
243
|
-
"sha256": "
|
|
243
|
+
"sha256": "7f9bc88b7f5b371043d2488a867456bb2affa4632cb08e6c6cc0e92bfdfe21a2"
|
|
244
244
|
},
|
|
245
245
|
{
|
|
246
246
|
"path": "harness-test/scripts/runtime-helpers.mjs",
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
},
|
|
249
249
|
{
|
|
250
250
|
"path": "harness-test/SKILL.md",
|
|
251
|
-
"sha256": "
|
|
251
|
+
"sha256": "8d07096f8f8b23c6d3ac7e295cfdbd3d4bfe4f84b12266255185a7dd65548edc"
|
|
252
252
|
},
|
|
253
253
|
{
|
|
254
254
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -260,7 +260,7 @@
|
|
|
260
260
|
},
|
|
261
261
|
{
|
|
262
262
|
"path": "protocols/ledger-protocol.md",
|
|
263
|
-
"sha256": "
|
|
263
|
+
"sha256": "56608039fd1babd469cb36b0f1c3d0871df460ddc36ef11c80d96218979f5217"
|
|
264
264
|
},
|
|
265
265
|
{
|
|
266
266
|
"path": "protocols/model-routing-protocol.md",
|
|
@@ -296,7 +296,7 @@
|
|
|
296
296
|
},
|
|
297
297
|
{
|
|
298
298
|
"path": "scripts/harness_archive.py",
|
|
299
|
-
"sha256": "
|
|
299
|
+
"sha256": "7f1f03bdc35f1d2bebb895670fdf563b9ffa0fe4727ae45a68abba84e7e50ad7"
|
|
300
300
|
},
|
|
301
301
|
{
|
|
302
302
|
"path": "scripts/harness_change.py",
|
|
@@ -306,6 +306,10 @@
|
|
|
306
306
|
"path": "scripts/harness_check_gate.py",
|
|
307
307
|
"sha256": "9cae8f7fc2ff4519b0c27566b9d5aaa81bd8921153ec1f9534cb5d08af3a21b3"
|
|
308
308
|
},
|
|
309
|
+
{
|
|
310
|
+
"path": "scripts/harness_context.py",
|
|
311
|
+
"sha256": "1c4b5a2ff77abd76d9b46bb04dda82a661613f030a1ada9e70bb14e6185393c3"
|
|
312
|
+
},
|
|
309
313
|
{
|
|
310
314
|
"path": "scripts/harness_deploy.py",
|
|
311
315
|
"sha256": "c10045fc86f2ac87d6ba60b5bcd31e9698d306a2d94eccfcff4a623cf817bf5c"
|
|
@@ -320,7 +324,7 @@
|
|
|
320
324
|
},
|
|
321
325
|
{
|
|
322
326
|
"path": "scripts/harness_gate.py",
|
|
323
|
-
"sha256": "
|
|
327
|
+
"sha256": "37bdb2eaaac2652fe5cdf142572e99379b1b17630f365a01b6e3e71333055a8a"
|
|
324
328
|
},
|
|
325
329
|
{
|
|
326
330
|
"path": "scripts/harness_integration.py",
|
|
@@ -328,7 +332,7 @@
|
|
|
328
332
|
},
|
|
329
333
|
{
|
|
330
334
|
"path": "scripts/harness_ledger.py",
|
|
331
|
-
"sha256": "
|
|
335
|
+
"sha256": "85b96dbc3d750443f989bff994d894d0a7b9dccd2e53401b54481782e1ea6ae5"
|
|
332
336
|
},
|
|
333
337
|
{
|
|
334
338
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -340,11 +344,15 @@
|
|
|
340
344
|
},
|
|
341
345
|
{
|
|
342
346
|
"path": "scripts/harness_phase.py",
|
|
343
|
-
"sha256": "
|
|
347
|
+
"sha256": "b1e53c1f7becf198195cb9a4bcba835767aed82420450e1842cc07d89febf532"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"path": "scripts/harness_plan_aggregate.py",
|
|
351
|
+
"sha256": "9a43b6d44e4dbdf9f505ac6631b0ae19b48d6600e4e3aa4232c2eff783482601"
|
|
344
352
|
},
|
|
345
353
|
{
|
|
346
354
|
"path": "scripts/harness_plan_finalize.py",
|
|
347
|
-
"sha256": "
|
|
355
|
+
"sha256": "1e9b81af4ed3166c3847b6668899e9b7bf32a27f9b879657fe92ee402bf9da4c"
|
|
348
356
|
},
|
|
349
357
|
{
|
|
350
358
|
"path": "scripts/harness_preflight.py",
|
|
@@ -352,7 +360,11 @@
|
|
|
352
360
|
},
|
|
353
361
|
{
|
|
354
362
|
"path": "scripts/harness_profile.py",
|
|
355
|
-
"sha256": "
|
|
363
|
+
"sha256": "6d52450b57d0a6eb21ab8f6116e5e3d14bd5cd6c668f518c895bf0f723e62826"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"path": "scripts/harness_report_model.py",
|
|
367
|
+
"sha256": "fd30968d429aed3a82bddd3203ccfe89807c00fa2d67787b625c67182a289feb"
|
|
356
368
|
},
|
|
357
369
|
{
|
|
358
370
|
"path": "scripts/harness_retry.py",
|
|
@@ -360,7 +372,7 @@
|
|
|
360
372
|
},
|
|
361
373
|
{
|
|
362
374
|
"path": "scripts/harness_review.py",
|
|
363
|
-
"sha256": "
|
|
375
|
+
"sha256": "f5b9170f5c3b35c87bd340e8368cd08d8940176a67fb11666518107ba3626e86"
|
|
364
376
|
},
|
|
365
377
|
{
|
|
366
378
|
"path": "scripts/harness_runtime.py",
|
|
@@ -390,6 +402,10 @@
|
|
|
390
402
|
"path": "scripts/harness_test_runner.py",
|
|
391
403
|
"sha256": "ba8b8b5628728593a1bcdab464b80b2a90536a909c0ce7df6a832f8ab16f08d1"
|
|
392
404
|
},
|
|
405
|
+
{
|
|
406
|
+
"path": "scripts/harness_verification.py",
|
|
407
|
+
"sha256": "a54a257d6c068f4e15f0174a841845cab61af02c4abc35503f99d7fdd206c4f7"
|
|
408
|
+
},
|
|
393
409
|
{
|
|
394
410
|
"path": "scripts/harness_workflow_policy.py",
|
|
395
411
|
"sha256": "3c05971bccef2422217f88bf0d0a2e346248e46964474f20d383b95acec185da"
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
"general",
|
|
7
7
|
"java"
|
|
8
8
|
],
|
|
9
|
-
"bundle_version": "0.2.
|
|
10
|
-
"content_sha256": "sha256:
|
|
11
|
-
"minimumCliVersion": "0.2.
|
|
9
|
+
"bundle_version": "0.2.26",
|
|
10
|
+
"content_sha256": "sha256:d74f2e3a8df4c0beb77b76c3389c607bbbab11159286f4f546bc9aad50dea579",
|
|
11
|
+
"minimumCliVersion": "0.2.36",
|
|
12
12
|
"capabilities": [
|
|
13
13
|
"sync@1",
|
|
14
14
|
"rules-sync@1",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"knowledge-sync@2"
|
|
17
17
|
],
|
|
18
18
|
"requires": {
|
|
19
|
-
"minimumCliVersion": "0.2.
|
|
19
|
+
"minimumCliVersion": "0.2.36",
|
|
20
20
|
"capabilities": [
|
|
21
21
|
"sync@1",
|
|
22
22
|
"rules-sync@1",
|