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