@hunter-harness/workflow-harness 0.2.41 → 0.2.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/harness/bundles/general/claude-code/.harness-build.json +1 -1
- package/harness/bundles/general/claude-code/contracts/build-profile-v3.schema.json +56 -1
- package/harness/bundles/general/claude-code/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-archive/reference.md +1 -0
- package/harness/bundles/general/claude-code/harness-archive/templates/render-summary.mjs +8 -0
- package/harness/bundles/general/claude-code/harness-archive/templates/summary-data-template.json +28 -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 +42 -16
- package/harness/bundles/general/claude-code/harness-knowledge-ingest/reference.md +57 -6
- package/harness/bundles/general/claude-code/harness-knowledge-ingest/scripts/harness_knowledge.py +1097 -174
- package/harness/bundles/general/claude-code/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-plan/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-review/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-run/reference.md +6 -1
- package/harness/bundles/general/claude-code/harness-submit/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-sync/SKILL.md +16 -10
- package/harness/bundles/general/claude-code/harness-sync/reference.md +34 -14
- package/harness/bundles/general/claude-code/harness-test/SKILL.md +8 -2
- package/harness/bundles/general/claude-code/protocols/execution-session-protocol.md +52 -0
- package/harness/bundles/general/claude-code/protocols/state-layout-protocol.md +24 -1
- package/harness/bundles/general/claude-code/protocols/verification-graph-protocol.md +6 -0
- package/harness/bundles/general/claude-code/scripts/harness_archive.py +4 -0
- package/harness/bundles/general/claude-code/scripts/harness_efficiency.py +290 -0
- package/harness/bundles/general/claude-code/scripts/harness_environment.py +719 -35
- package/harness/bundles/general/claude-code/scripts/harness_fixback.py +742 -0
- package/harness/bundles/general/claude-code/scripts/harness_profile.py +34 -0
- package/harness/bundles/general/claude-code/scripts/harness_runtime.py +1165 -3
- package/harness/bundles/general/claude-code/scripts/harness_service.py +76 -0
- package/harness/bundles/general/claude-code/scripts/harness_test_runner.py +127 -39
- package/harness/bundles/general/claude-code/scripts/harness_verification.py +408 -8
- package/harness/bundles/general/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/general/codebuddy/contracts/build-profile-v3.schema.json +56 -1
- package/harness/bundles/general/codebuddy/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-archive/reference.md +1 -0
- package/harness/bundles/general/codebuddy/harness-archive/templates/render-summary.mjs +8 -0
- package/harness/bundles/general/codebuddy/harness-archive/templates/summary-data-template.json +28 -0
- package/harness/bundles/general/codebuddy/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/SKILL.md +41 -15
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/reference.md +57 -6
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge.py +1097 -174
- package/harness/bundles/general/codebuddy/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-plan/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-review/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-run/reference.md +6 -1
- package/harness/bundles/general/codebuddy/harness-submit/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-sync/SKILL.md +16 -10
- package/harness/bundles/general/codebuddy/harness-sync/reference.md +34 -14
- package/harness/bundles/general/codebuddy/harness-test/SKILL.md +8 -2
- package/harness/bundles/general/codebuddy/protocols/execution-session-protocol.md +52 -0
- package/harness/bundles/general/codebuddy/protocols/state-layout-protocol.md +24 -1
- package/harness/bundles/general/codebuddy/protocols/verification-graph-protocol.md +6 -0
- package/harness/bundles/general/codebuddy/scripts/harness_archive.py +4 -0
- package/harness/bundles/general/codebuddy/scripts/harness_efficiency.py +290 -0
- package/harness/bundles/general/codebuddy/scripts/harness_environment.py +719 -35
- package/harness/bundles/general/codebuddy/scripts/harness_fixback.py +742 -0
- package/harness/bundles/general/codebuddy/scripts/harness_profile.py +34 -0
- package/harness/bundles/general/codebuddy/scripts/harness_runtime.py +1165 -3
- package/harness/bundles/general/codebuddy/scripts/harness_service.py +76 -0
- package/harness/bundles/general/codebuddy/scripts/harness_test_runner.py +127 -39
- package/harness/bundles/general/codebuddy/scripts/harness_verification.py +408 -8
- package/harness/bundles/general/codex/.harness-build.json +1 -1
- package/harness/bundles/general/codex/contracts/build-profile-v3.schema.json +56 -1
- package/harness/bundles/general/codex/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-archive/reference.md +1 -0
- package/harness/bundles/general/codex/harness-archive/templates/render-summary.mjs +8 -0
- package/harness/bundles/general/codex/harness-archive/templates/summary-data-template.json +28 -0
- package/harness/bundles/general/codex/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-knowledge-ingest/SKILL.md +41 -15
- package/harness/bundles/general/codex/harness-knowledge-ingest/reference.md +57 -6
- package/harness/bundles/general/codex/harness-knowledge-ingest/scripts/harness_knowledge.py +1097 -174
- package/harness/bundles/general/codex/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-plan/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-review/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-run/reference.md +6 -1
- package/harness/bundles/general/codex/harness-submit/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-sync/SKILL.md +16 -10
- package/harness/bundles/general/codex/harness-sync/reference.md +34 -14
- package/harness/bundles/general/codex/harness-test/SKILL.md +8 -2
- package/harness/bundles/general/codex/protocols/execution-session-protocol.md +52 -0
- package/harness/bundles/general/codex/protocols/state-layout-protocol.md +24 -1
- package/harness/bundles/general/codex/protocols/verification-graph-protocol.md +6 -0
- package/harness/bundles/general/codex/scripts/harness_archive.py +4 -0
- package/harness/bundles/general/codex/scripts/harness_efficiency.py +290 -0
- package/harness/bundles/general/codex/scripts/harness_environment.py +719 -35
- package/harness/bundles/general/codex/scripts/harness_fixback.py +742 -0
- package/harness/bundles/general/codex/scripts/harness_profile.py +34 -0
- package/harness/bundles/general/codex/scripts/harness_runtime.py +1165 -3
- package/harness/bundles/general/codex/scripts/harness_service.py +76 -0
- package/harness/bundles/general/codex/scripts/harness_test_runner.py +127 -39
- package/harness/bundles/general/codex/scripts/harness_verification.py +408 -8
- package/harness/bundles/general/cursor/.harness-build.json +1 -1
- package/harness/bundles/general/cursor/contracts/build-profile-v3.schema.json +56 -1
- package/harness/bundles/general/cursor/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-archive/reference.md +1 -0
- package/harness/bundles/general/cursor/harness-archive/templates/render-summary.mjs +8 -0
- package/harness/bundles/general/cursor/harness-archive/templates/summary-data-template.json +28 -0
- package/harness/bundles/general/cursor/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-knowledge-ingest/SKILL.md +41 -15
- package/harness/bundles/general/cursor/harness-knowledge-ingest/reference.md +57 -6
- package/harness/bundles/general/cursor/harness-knowledge-ingest/scripts/harness_knowledge.py +1097 -174
- package/harness/bundles/general/cursor/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-plan/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-review/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-run/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-run/reference.md +6 -1
- package/harness/bundles/general/cursor/harness-submit/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-sync/SKILL.md +16 -10
- package/harness/bundles/general/cursor/harness-sync/reference.md +34 -14
- package/harness/bundles/general/cursor/harness-test/SKILL.md +8 -2
- package/harness/bundles/general/cursor/protocols/execution-session-protocol.md +52 -0
- package/harness/bundles/general/cursor/protocols/state-layout-protocol.md +24 -1
- package/harness/bundles/general/cursor/protocols/verification-graph-protocol.md +6 -0
- package/harness/bundles/general/cursor/scripts/harness_archive.py +4 -0
- package/harness/bundles/general/cursor/scripts/harness_efficiency.py +290 -0
- package/harness/bundles/general/cursor/scripts/harness_environment.py +719 -35
- package/harness/bundles/general/cursor/scripts/harness_fixback.py +742 -0
- package/harness/bundles/general/cursor/scripts/harness_profile.py +34 -0
- package/harness/bundles/general/cursor/scripts/harness_runtime.py +1165 -3
- package/harness/bundles/general/cursor/scripts/harness_service.py +76 -0
- package/harness/bundles/general/cursor/scripts/harness_test_runner.py +127 -39
- package/harness/bundles/general/cursor/scripts/harness_verification.py +408 -8
- package/harness/bundles/java/claude-code/.harness-build.json +1 -1
- package/harness/bundles/java/claude-code/contracts/build-profile-v3.schema.json +56 -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 +1 -0
- package/harness/bundles/java/claude-code/harness-archive/templates/render-summary.mjs +8 -0
- package/harness/bundles/java/claude-code/harness-archive/templates/summary-data-template.json +28 -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 +42 -16
- package/harness/bundles/java/claude-code/harness-knowledge-ingest/reference.md +57 -6
- package/harness/bundles/java/claude-code/harness-knowledge-ingest/scripts/harness_knowledge.py +1097 -174
- package/harness/bundles/java/claude-code/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-plan/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-review/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-submit/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-sync/SKILL.md +16 -10
- package/harness/bundles/java/claude-code/harness-sync/reference.md +34 -14
- package/harness/bundles/java/claude-code/harness-test/SKILL.md +8 -2
- package/harness/bundles/java/claude-code/protocols/execution-session-protocol.md +52 -0
- package/harness/bundles/java/claude-code/protocols/state-layout-protocol.md +24 -1
- package/harness/bundles/java/claude-code/protocols/verification-graph-protocol.md +6 -0
- package/harness/bundles/java/claude-code/scripts/harness_archive.py +4 -0
- package/harness/bundles/java/claude-code/scripts/harness_efficiency.py +290 -0
- package/harness/bundles/java/claude-code/scripts/harness_environment.py +719 -35
- package/harness/bundles/java/claude-code/scripts/harness_fixback.py +742 -0
- package/harness/bundles/java/claude-code/scripts/harness_profile.py +34 -0
- package/harness/bundles/java/claude-code/scripts/harness_runtime.py +1165 -3
- package/harness/bundles/java/claude-code/scripts/harness_service.py +76 -0
- package/harness/bundles/java/claude-code/scripts/harness_test_runner.py +127 -39
- package/harness/bundles/java/claude-code/scripts/harness_verification.py +408 -8
- package/harness/bundles/java/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/java/codebuddy/contracts/build-profile-v3.schema.json +56 -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 +1 -0
- package/harness/bundles/java/codebuddy/harness-archive/templates/render-summary.mjs +8 -0
- package/harness/bundles/java/codebuddy/harness-archive/templates/summary-data-template.json +28 -0
- package/harness/bundles/java/codebuddy/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/SKILL.md +41 -15
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/reference.md +57 -6
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge.py +1097 -174
- package/harness/bundles/java/codebuddy/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-plan/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-review/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-submit/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-sync/SKILL.md +16 -10
- package/harness/bundles/java/codebuddy/harness-sync/reference.md +34 -14
- package/harness/bundles/java/codebuddy/harness-test/SKILL.md +8 -2
- package/harness/bundles/java/codebuddy/protocols/execution-session-protocol.md +52 -0
- package/harness/bundles/java/codebuddy/protocols/state-layout-protocol.md +24 -1
- package/harness/bundles/java/codebuddy/protocols/verification-graph-protocol.md +6 -0
- package/harness/bundles/java/codebuddy/scripts/harness_archive.py +4 -0
- package/harness/bundles/java/codebuddy/scripts/harness_efficiency.py +290 -0
- package/harness/bundles/java/codebuddy/scripts/harness_environment.py +719 -35
- package/harness/bundles/java/codebuddy/scripts/harness_fixback.py +742 -0
- package/harness/bundles/java/codebuddy/scripts/harness_profile.py +34 -0
- package/harness/bundles/java/codebuddy/scripts/harness_runtime.py +1165 -3
- package/harness/bundles/java/codebuddy/scripts/harness_service.py +76 -0
- package/harness/bundles/java/codebuddy/scripts/harness_test_runner.py +127 -39
- package/harness/bundles/java/codebuddy/scripts/harness_verification.py +408 -8
- package/harness/bundles/java/codex/.harness-build.json +1 -1
- package/harness/bundles/java/codex/contracts/build-profile-v3.schema.json +56 -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 +1 -0
- package/harness/bundles/java/codex/harness-archive/templates/render-summary.mjs +8 -0
- package/harness/bundles/java/codex/harness-archive/templates/summary-data-template.json +28 -0
- package/harness/bundles/java/codex/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-knowledge-ingest/SKILL.md +41 -15
- package/harness/bundles/java/codex/harness-knowledge-ingest/reference.md +57 -6
- package/harness/bundles/java/codex/harness-knowledge-ingest/scripts/harness_knowledge.py +1097 -174
- package/harness/bundles/java/codex/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-plan/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-review/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-submit/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-sync/SKILL.md +16 -10
- package/harness/bundles/java/codex/harness-sync/reference.md +34 -14
- package/harness/bundles/java/codex/harness-test/SKILL.md +8 -2
- package/harness/bundles/java/codex/protocols/execution-session-protocol.md +52 -0
- package/harness/bundles/java/codex/protocols/state-layout-protocol.md +24 -1
- package/harness/bundles/java/codex/protocols/verification-graph-protocol.md +6 -0
- package/harness/bundles/java/codex/scripts/harness_archive.py +4 -0
- package/harness/bundles/java/codex/scripts/harness_efficiency.py +290 -0
- package/harness/bundles/java/codex/scripts/harness_environment.py +719 -35
- package/harness/bundles/java/codex/scripts/harness_fixback.py +742 -0
- package/harness/bundles/java/codex/scripts/harness_profile.py +34 -0
- package/harness/bundles/java/codex/scripts/harness_runtime.py +1165 -3
- package/harness/bundles/java/codex/scripts/harness_service.py +76 -0
- package/harness/bundles/java/codex/scripts/harness_test_runner.py +127 -39
- package/harness/bundles/java/codex/scripts/harness_verification.py +408 -8
- package/harness/bundles/java/cursor/.harness-build.json +1 -1
- package/harness/bundles/java/cursor/contracts/build-profile-v3.schema.json +56 -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 +1 -0
- package/harness/bundles/java/cursor/harness-archive/templates/render-summary.mjs +8 -0
- package/harness/bundles/java/cursor/harness-archive/templates/summary-data-template.json +28 -0
- package/harness/bundles/java/cursor/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-knowledge-ingest/SKILL.md +41 -15
- package/harness/bundles/java/cursor/harness-knowledge-ingest/reference.md +57 -6
- package/harness/bundles/java/cursor/harness-knowledge-ingest/scripts/harness_knowledge.py +1097 -174
- package/harness/bundles/java/cursor/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-package/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-plan/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-review/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-run/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-submit/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-sync/SKILL.md +16 -10
- package/harness/bundles/java/cursor/harness-sync/reference.md +34 -14
- package/harness/bundles/java/cursor/harness-test/SKILL.md +8 -2
- package/harness/bundles/java/cursor/protocols/execution-session-protocol.md +52 -0
- package/harness/bundles/java/cursor/protocols/state-layout-protocol.md +24 -1
- package/harness/bundles/java/cursor/protocols/verification-graph-protocol.md +6 -0
- package/harness/bundles/java/cursor/scripts/harness_archive.py +4 -0
- package/harness/bundles/java/cursor/scripts/harness_efficiency.py +290 -0
- package/harness/bundles/java/cursor/scripts/harness_environment.py +719 -35
- package/harness/bundles/java/cursor/scripts/harness_fixback.py +742 -0
- package/harness/bundles/java/cursor/scripts/harness_profile.py +34 -0
- package/harness/bundles/java/cursor/scripts/harness_runtime.py +1165 -3
- package/harness/bundles/java/cursor/scripts/harness_service.py +76 -0
- package/harness/bundles/java/cursor/scripts/harness_test_runner.py +127 -39
- package/harness/bundles/java/cursor/scripts/harness_verification.py +408 -8
- package/harness/manifests/general/claude-code.json +46 -33
- package/harness/manifests/general/codebuddy.json +46 -33
- package/harness/manifests/general/codex.json +46 -33
- package/harness/manifests/general/cursor.json +46 -33
- package/harness/manifests/java/claude-code.json +47 -34
- package/harness/manifests/java/codebuddy.json +47 -34
- package/harness/manifests/java/codex.json +47 -34
- package/harness/manifests/java/cursor.json +47 -34
- package/hunter-workflow-family.json +12 -10
- package/package.json +1 -1
|
@@ -2,18 +2,19 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "general",
|
|
4
4
|
"adapter": "codex",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.32",
|
|
6
6
|
"requires": {
|
|
7
|
-
"minimumCliVersion": "0.2.
|
|
7
|
+
"minimumCliVersion": "0.2.45",
|
|
8
8
|
"capabilities": [
|
|
9
|
-
"sync@
|
|
9
|
+
"sync@2",
|
|
10
10
|
"rules-sync@1",
|
|
11
11
|
"rules-review@1",
|
|
12
|
-
"knowledge-sync@
|
|
12
|
+
"knowledge-sync@3",
|
|
13
13
|
"build-profile@3",
|
|
14
14
|
"verification-graph@1",
|
|
15
|
+
"execution-session@1",
|
|
15
16
|
"external-convergence@1",
|
|
16
|
-
"codegraph-status@
|
|
17
|
+
"codegraph-status@2",
|
|
17
18
|
"doctor-capability@1",
|
|
18
19
|
"registry-governance@1"
|
|
19
20
|
]
|
|
@@ -22,7 +23,7 @@
|
|
|
22
23
|
"files": [
|
|
23
24
|
{
|
|
24
25
|
"path": ".harness-build.json",
|
|
25
|
-
"sha256": "
|
|
26
|
+
"sha256": "0a34fe866dec750c6e3fbdb0ca40fa56c5165f910bd271e80c1de1e8de8fb8fa"
|
|
26
27
|
},
|
|
27
28
|
{
|
|
28
29
|
"path": "CONTEXT.md",
|
|
@@ -30,7 +31,7 @@
|
|
|
30
31
|
},
|
|
31
32
|
{
|
|
32
33
|
"path": "contracts/build-profile-v3.schema.json",
|
|
33
|
-
"sha256": "
|
|
34
|
+
"sha256": "12be5f258673f18d271aec962b333c6a25be1af19726c1565a568a4f085aadd7"
|
|
34
35
|
},
|
|
35
36
|
{
|
|
36
37
|
"path": "contracts/ci-metrics.schema.json",
|
|
@@ -54,7 +55,7 @@
|
|
|
54
55
|
},
|
|
55
56
|
{
|
|
56
57
|
"path": "harness-archive/reference.md",
|
|
57
|
-
"sha256": "
|
|
58
|
+
"sha256": "7564286fae2b73a9a646819b408d0dcd3ed757fdc833d19e8a130861f92ffb03"
|
|
58
59
|
},
|
|
59
60
|
{
|
|
60
61
|
"path": "harness-archive/scripts/gen-manifest.ps1",
|
|
@@ -62,15 +63,15 @@
|
|
|
62
63
|
},
|
|
63
64
|
{
|
|
64
65
|
"path": "harness-archive/SKILL.md",
|
|
65
|
-
"sha256": "
|
|
66
|
+
"sha256": "23f307390383b6606640e120aab8662f47e154835bc26251f47c4fdfcd04e93d"
|
|
66
67
|
},
|
|
67
68
|
{
|
|
68
69
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
69
|
-
"sha256": "
|
|
70
|
+
"sha256": "970585dcd1c590a6fc985289954b60c41b2cf012df7ea2dd790260e452e404c9"
|
|
70
71
|
},
|
|
71
72
|
{
|
|
72
73
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
73
|
-
"sha256": "
|
|
74
|
+
"sha256": "6d2a1ef5b02287150f14f530902e78382fcf0111beeff4eb63bcf1a88f26b05c"
|
|
74
75
|
},
|
|
75
76
|
{
|
|
76
77
|
"path": "harness-codebase-map/checklist.md",
|
|
@@ -82,7 +83,7 @@
|
|
|
82
83
|
},
|
|
83
84
|
{
|
|
84
85
|
"path": "harness-codebase-map/SKILL.md",
|
|
85
|
-
"sha256": "
|
|
86
|
+
"sha256": "4157db89716cedc605599d28b0db4ba831f8764eb450c012c3d7a64f73c5395d"
|
|
86
87
|
},
|
|
87
88
|
{
|
|
88
89
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -134,7 +135,7 @@
|
|
|
134
135
|
},
|
|
135
136
|
{
|
|
136
137
|
"path": "harness-knowledge-ingest/reference.md",
|
|
137
|
-
"sha256": "
|
|
138
|
+
"sha256": "aaff0f08ff72f17ad610d6db51e9482b4eaeda87962765f679b2893dff9762e7"
|
|
138
139
|
},
|
|
139
140
|
{
|
|
140
141
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge_mcp.py",
|
|
@@ -142,15 +143,15 @@
|
|
|
142
143
|
},
|
|
143
144
|
{
|
|
144
145
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
145
|
-
"sha256": "
|
|
146
|
+
"sha256": "1d7e6a59fcee223c6988f4993bc838a6bf435eae9d195afd015596298c3162b3"
|
|
146
147
|
},
|
|
147
148
|
{
|
|
148
149
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
149
|
-
"sha256": "
|
|
150
|
+
"sha256": "800f93097eace1615b8b479ba44ab8635396025035ffc2312c49b959931d5595"
|
|
150
151
|
},
|
|
151
152
|
{
|
|
152
153
|
"path": "harness-knowledge-query/SKILL.md",
|
|
153
|
-
"sha256": "
|
|
154
|
+
"sha256": "d3bc9549b48ea739c2bb5e5aebd169c9ca9bf3bdd0781cb8bd9a8214e4e9aaee"
|
|
154
155
|
},
|
|
155
156
|
{
|
|
156
157
|
"path": "harness-plan/checklist.md",
|
|
@@ -166,7 +167,7 @@
|
|
|
166
167
|
},
|
|
167
168
|
{
|
|
168
169
|
"path": "harness-plan/SKILL.md",
|
|
169
|
-
"sha256": "
|
|
170
|
+
"sha256": "4e7de9835b1a3aeec5f073c6756a701f412491b783845af758ce6c92d9c892e8"
|
|
170
171
|
},
|
|
171
172
|
{
|
|
172
173
|
"path": "harness-review/checklist.md",
|
|
@@ -182,7 +183,7 @@
|
|
|
182
183
|
},
|
|
183
184
|
{
|
|
184
185
|
"path": "harness-review/SKILL.md",
|
|
185
|
-
"sha256": "
|
|
186
|
+
"sha256": "5e281d0f2b38a89aa1c30a1bae0af6586dd0f8a4dd03f678a857a0a5eeabd2f5"
|
|
186
187
|
},
|
|
187
188
|
{
|
|
188
189
|
"path": "harness-run/checklist.md",
|
|
@@ -194,11 +195,11 @@
|
|
|
194
195
|
},
|
|
195
196
|
{
|
|
196
197
|
"path": "harness-run/reference.md",
|
|
197
|
-
"sha256": "
|
|
198
|
+
"sha256": "b6887480549e86434d9cfce0003ffe698e81e8ed0b63512e303278f21267748b"
|
|
198
199
|
},
|
|
199
200
|
{
|
|
200
201
|
"path": "harness-run/SKILL.md",
|
|
201
|
-
"sha256": "
|
|
202
|
+
"sha256": "dfae2fdf00dbe60be610f64c72467f08ce9b5832c3ef57bf1dd89707b6a2141c"
|
|
202
203
|
},
|
|
203
204
|
{
|
|
204
205
|
"path": "harness-submit/checklist.md",
|
|
@@ -210,15 +211,15 @@
|
|
|
210
211
|
},
|
|
211
212
|
{
|
|
212
213
|
"path": "harness-submit/SKILL.md",
|
|
213
|
-
"sha256": "
|
|
214
|
+
"sha256": "c92323351d3762ed62c8222bfa71ba8150957d5520f3a3f4f3cdbb91fcc13b49"
|
|
214
215
|
},
|
|
215
216
|
{
|
|
216
217
|
"path": "harness-sync/reference.md",
|
|
217
|
-
"sha256": "
|
|
218
|
+
"sha256": "d841ffde8afd2739ed14c765e4d2dd40b4a799771e8256f0ac07d11e0c97f54d"
|
|
218
219
|
},
|
|
219
220
|
{
|
|
220
221
|
"path": "harness-sync/SKILL.md",
|
|
221
|
-
"sha256": "
|
|
222
|
+
"sha256": "f61764882b896b416219c39856749a3f091dd403ec14cad883e7e76e27f97311"
|
|
222
223
|
},
|
|
223
224
|
{
|
|
224
225
|
"path": "harness-test/checklist.md",
|
|
@@ -242,7 +243,7 @@
|
|
|
242
243
|
},
|
|
243
244
|
{
|
|
244
245
|
"path": "harness-test/SKILL.md",
|
|
245
|
-
"sha256": "
|
|
246
|
+
"sha256": "c6ee19d435319cc9df3bc0ba748beab16c67a5ac7451d0cfce5e5afacb396694"
|
|
246
247
|
},
|
|
247
248
|
{
|
|
248
249
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -256,6 +257,10 @@
|
|
|
256
257
|
"path": "protocols/evidence-based-reporting-protocol.md",
|
|
257
258
|
"sha256": "f78ea87823c0935a3033175b393582319da433cf4226e1705070b20d53890ba2"
|
|
258
259
|
},
|
|
260
|
+
{
|
|
261
|
+
"path": "protocols/execution-session-protocol.md",
|
|
262
|
+
"sha256": "d0ac7ab78cb0bac155e5ca92186168c31779cdd0da1fabbbb2c493dd132f02c2"
|
|
263
|
+
},
|
|
259
264
|
{
|
|
260
265
|
"path": "protocols/external-platform-protocol.md",
|
|
261
266
|
"sha256": "6893e3b6a5615ee3eda567952797f91f4d2fcec59c1f8fd947e472a4c1f6ed71"
|
|
@@ -290,7 +295,7 @@
|
|
|
290
295
|
},
|
|
291
296
|
{
|
|
292
297
|
"path": "protocols/state-layout-protocol.md",
|
|
293
|
-
"sha256": "
|
|
298
|
+
"sha256": "517bfa32a9446a898e753344ac652e16cf282fe19abc59490e90926f35ee1e81"
|
|
294
299
|
},
|
|
295
300
|
{
|
|
296
301
|
"path": "protocols/submit-protocol.md",
|
|
@@ -298,7 +303,7 @@
|
|
|
298
303
|
},
|
|
299
304
|
{
|
|
300
305
|
"path": "protocols/verification-graph-protocol.md",
|
|
301
|
-
"sha256": "
|
|
306
|
+
"sha256": "8f1b140c4e51b1f3b437971b6d3154c2aeaf8dad404512f7bc2fbad5f640f0ca"
|
|
302
307
|
},
|
|
303
308
|
{
|
|
304
309
|
"path": "README.md",
|
|
@@ -310,7 +315,7 @@
|
|
|
310
315
|
},
|
|
311
316
|
{
|
|
312
317
|
"path": "scripts/harness_archive.py",
|
|
313
|
-
"sha256": "
|
|
318
|
+
"sha256": "4ffdd0b5a61a60ee263d32d61b67da7c5ba4101968d0de7510894044c4f4b407"
|
|
314
319
|
},
|
|
315
320
|
{
|
|
316
321
|
"path": "scripts/harness_change.py",
|
|
@@ -328,14 +333,22 @@
|
|
|
328
333
|
"path": "scripts/harness_deploy.py",
|
|
329
334
|
"sha256": "fb4290c2dd5c28a09c378da5ee7be491bdefe0410f277ec5dd2af1952cfddbca"
|
|
330
335
|
},
|
|
336
|
+
{
|
|
337
|
+
"path": "scripts/harness_efficiency.py",
|
|
338
|
+
"sha256": "36b2ecbe75a453b35cf6085bbc5e61c04f82e627f9f4f243d29837fad6568c9d"
|
|
339
|
+
},
|
|
331
340
|
{
|
|
332
341
|
"path": "scripts/harness_environment.py",
|
|
333
|
-
"sha256": "
|
|
342
|
+
"sha256": "35ffcf5d76c7165f1aee7ed2953b1b86c943e9c751827b81c126e99a58fdd641"
|
|
334
343
|
},
|
|
335
344
|
{
|
|
336
345
|
"path": "scripts/harness_events.py",
|
|
337
346
|
"sha256": "0d4db19d71d5945837c255192f7c915af447f98e2ac66bf60e25b93f1613b391"
|
|
338
347
|
},
|
|
348
|
+
{
|
|
349
|
+
"path": "scripts/harness_fixback.py",
|
|
350
|
+
"sha256": "723c48a0034648f8a96967749baacbfdde59774cec2a66b1b26a34ea5f7f2b0f"
|
|
351
|
+
},
|
|
339
352
|
{
|
|
340
353
|
"path": "scripts/harness_gate.py",
|
|
341
354
|
"sha256": "404ad6fdf0f5508a22e12086a05f728df41074bbc2c8072f577d500a797c91c5"
|
|
@@ -374,7 +387,7 @@
|
|
|
374
387
|
},
|
|
375
388
|
{
|
|
376
389
|
"path": "scripts/harness_profile.py",
|
|
377
|
-
"sha256": "
|
|
390
|
+
"sha256": "0d6ec71588058e6ca7442ea7148169d1bf2f9db83a756ec29be1aa4b4281413a"
|
|
378
391
|
},
|
|
379
392
|
{
|
|
380
393
|
"path": "scripts/harness_report_model.py",
|
|
@@ -390,11 +403,11 @@
|
|
|
390
403
|
},
|
|
391
404
|
{
|
|
392
405
|
"path": "scripts/harness_runtime.py",
|
|
393
|
-
"sha256": "
|
|
406
|
+
"sha256": "a50cfc9dd5f157251a7ecb8287384319663ec44408bceb0d58e3507c9f8fe340"
|
|
394
407
|
},
|
|
395
408
|
{
|
|
396
409
|
"path": "scripts/harness_service.py",
|
|
397
|
-
"sha256": "
|
|
410
|
+
"sha256": "d3dd9bf79d4b89fe1b40b3564e2831b89008dfc781034875d72c034216079d24"
|
|
398
411
|
},
|
|
399
412
|
{
|
|
400
413
|
"path": "scripts/harness_state.py",
|
|
@@ -414,11 +427,11 @@
|
|
|
414
427
|
},
|
|
415
428
|
{
|
|
416
429
|
"path": "scripts/harness_test_runner.py",
|
|
417
|
-
"sha256": "
|
|
430
|
+
"sha256": "562b6bf2ab69b2c85c77ae300f25c6fdfbfb19d35791aea0c92350a99034af2e"
|
|
418
431
|
},
|
|
419
432
|
{
|
|
420
433
|
"path": "scripts/harness_verification.py",
|
|
421
|
-
"sha256": "
|
|
434
|
+
"sha256": "038f1f19b2ff10c65f6f66f48df63334a1834342107237c8bca1aeefea87515d"
|
|
422
435
|
},
|
|
423
436
|
{
|
|
424
437
|
"path": "scripts/harness_workflow_policy.py",
|
|
@@ -2,18 +2,19 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "general",
|
|
4
4
|
"adapter": "cursor",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.32",
|
|
6
6
|
"requires": {
|
|
7
|
-
"minimumCliVersion": "0.2.
|
|
7
|
+
"minimumCliVersion": "0.2.45",
|
|
8
8
|
"capabilities": [
|
|
9
|
-
"sync@
|
|
9
|
+
"sync@2",
|
|
10
10
|
"rules-sync@1",
|
|
11
11
|
"rules-review@1",
|
|
12
|
-
"knowledge-sync@
|
|
12
|
+
"knowledge-sync@3",
|
|
13
13
|
"build-profile@3",
|
|
14
14
|
"verification-graph@1",
|
|
15
|
+
"execution-session@1",
|
|
15
16
|
"external-convergence@1",
|
|
16
|
-
"codegraph-status@
|
|
17
|
+
"codegraph-status@2",
|
|
17
18
|
"doctor-capability@1",
|
|
18
19
|
"registry-governance@1"
|
|
19
20
|
]
|
|
@@ -22,7 +23,7 @@
|
|
|
22
23
|
"files": [
|
|
23
24
|
{
|
|
24
25
|
"path": ".harness-build.json",
|
|
25
|
-
"sha256": "
|
|
26
|
+
"sha256": "3e82d4044c1ec04ab12e1c830a423a85328cad2f192eaa587a99f7347cb0697b"
|
|
26
27
|
},
|
|
27
28
|
{
|
|
28
29
|
"path": "CONTEXT.md",
|
|
@@ -30,7 +31,7 @@
|
|
|
30
31
|
},
|
|
31
32
|
{
|
|
32
33
|
"path": "contracts/build-profile-v3.schema.json",
|
|
33
|
-
"sha256": "
|
|
34
|
+
"sha256": "12be5f258673f18d271aec962b333c6a25be1af19726c1565a568a4f085aadd7"
|
|
34
35
|
},
|
|
35
36
|
{
|
|
36
37
|
"path": "contracts/ci-metrics.schema.json",
|
|
@@ -54,7 +55,7 @@
|
|
|
54
55
|
},
|
|
55
56
|
{
|
|
56
57
|
"path": "harness-archive/reference.md",
|
|
57
|
-
"sha256": "
|
|
58
|
+
"sha256": "7564286fae2b73a9a646819b408d0dcd3ed757fdc833d19e8a130861f92ffb03"
|
|
58
59
|
},
|
|
59
60
|
{
|
|
60
61
|
"path": "harness-archive/scripts/gen-manifest.ps1",
|
|
@@ -62,15 +63,15 @@
|
|
|
62
63
|
},
|
|
63
64
|
{
|
|
64
65
|
"path": "harness-archive/SKILL.md",
|
|
65
|
-
"sha256": "
|
|
66
|
+
"sha256": "ea4e942f00a98c1d0e65c6c5a02d2332b71508008cf12baa10cedbfd7fa81f3b"
|
|
66
67
|
},
|
|
67
68
|
{
|
|
68
69
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
69
|
-
"sha256": "
|
|
70
|
+
"sha256": "970585dcd1c590a6fc985289954b60c41b2cf012df7ea2dd790260e452e404c9"
|
|
70
71
|
},
|
|
71
72
|
{
|
|
72
73
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
73
|
-
"sha256": "
|
|
74
|
+
"sha256": "6d2a1ef5b02287150f14f530902e78382fcf0111beeff4eb63bcf1a88f26b05c"
|
|
74
75
|
},
|
|
75
76
|
{
|
|
76
77
|
"path": "harness-codebase-map/checklist.md",
|
|
@@ -82,7 +83,7 @@
|
|
|
82
83
|
},
|
|
83
84
|
{
|
|
84
85
|
"path": "harness-codebase-map/SKILL.md",
|
|
85
|
-
"sha256": "
|
|
86
|
+
"sha256": "eacb0d188ee7bdb500d8a17953a36a0f9e02f54c0a90f385c25d450f793d6d77"
|
|
86
87
|
},
|
|
87
88
|
{
|
|
88
89
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -134,7 +135,7 @@
|
|
|
134
135
|
},
|
|
135
136
|
{
|
|
136
137
|
"path": "harness-knowledge-ingest/reference.md",
|
|
137
|
-
"sha256": "
|
|
138
|
+
"sha256": "aaff0f08ff72f17ad610d6db51e9482b4eaeda87962765f679b2893dff9762e7"
|
|
138
139
|
},
|
|
139
140
|
{
|
|
140
141
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge_mcp.py",
|
|
@@ -142,15 +143,15 @@
|
|
|
142
143
|
},
|
|
143
144
|
{
|
|
144
145
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
145
|
-
"sha256": "
|
|
146
|
+
"sha256": "1d7e6a59fcee223c6988f4993bc838a6bf435eae9d195afd015596298c3162b3"
|
|
146
147
|
},
|
|
147
148
|
{
|
|
148
149
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
149
|
-
"sha256": "
|
|
150
|
+
"sha256": "76b0825b9252068349d60d60ecb7ac328f6195b3328ee79c956965481dd471c6"
|
|
150
151
|
},
|
|
151
152
|
{
|
|
152
153
|
"path": "harness-knowledge-query/SKILL.md",
|
|
153
|
-
"sha256": "
|
|
154
|
+
"sha256": "8f571c6426238a825c61570c750d588ca9945fc6c90a2a2e466a80d178ea48e1"
|
|
154
155
|
},
|
|
155
156
|
{
|
|
156
157
|
"path": "harness-plan/checklist.md",
|
|
@@ -166,7 +167,7 @@
|
|
|
166
167
|
},
|
|
167
168
|
{
|
|
168
169
|
"path": "harness-plan/SKILL.md",
|
|
169
|
-
"sha256": "
|
|
170
|
+
"sha256": "e400e9b67e90c2b5ad38ac2b3dc9528d9c1883cf83333fdfbab3fb1e27ce7ff0"
|
|
170
171
|
},
|
|
171
172
|
{
|
|
172
173
|
"path": "harness-review/checklist.md",
|
|
@@ -182,7 +183,7 @@
|
|
|
182
183
|
},
|
|
183
184
|
{
|
|
184
185
|
"path": "harness-review/SKILL.md",
|
|
185
|
-
"sha256": "
|
|
186
|
+
"sha256": "a0703a178e7e025f97c2d63b067069bab91a7e20c9582df04ac42c0d667c6776"
|
|
186
187
|
},
|
|
187
188
|
{
|
|
188
189
|
"path": "harness-run/checklist.md",
|
|
@@ -194,11 +195,11 @@
|
|
|
194
195
|
},
|
|
195
196
|
{
|
|
196
197
|
"path": "harness-run/reference.md",
|
|
197
|
-
"sha256": "
|
|
198
|
+
"sha256": "b6887480549e86434d9cfce0003ffe698e81e8ed0b63512e303278f21267748b"
|
|
198
199
|
},
|
|
199
200
|
{
|
|
200
201
|
"path": "harness-run/SKILL.md",
|
|
201
|
-
"sha256": "
|
|
202
|
+
"sha256": "a90bef1e33b94ddc8869b96323470403d9aa4d5c22a50f0b2f5678f2bfddb213"
|
|
202
203
|
},
|
|
203
204
|
{
|
|
204
205
|
"path": "harness-submit/checklist.md",
|
|
@@ -210,15 +211,15 @@
|
|
|
210
211
|
},
|
|
211
212
|
{
|
|
212
213
|
"path": "harness-submit/SKILL.md",
|
|
213
|
-
"sha256": "
|
|
214
|
+
"sha256": "0670ea5dc5d9c456ffd2bbe87a0dc7a9758701f029d2670dd28b274110f34b8b"
|
|
214
215
|
},
|
|
215
216
|
{
|
|
216
217
|
"path": "harness-sync/reference.md",
|
|
217
|
-
"sha256": "
|
|
218
|
+
"sha256": "d841ffde8afd2739ed14c765e4d2dd40b4a799771e8256f0ac07d11e0c97f54d"
|
|
218
219
|
},
|
|
219
220
|
{
|
|
220
221
|
"path": "harness-sync/SKILL.md",
|
|
221
|
-
"sha256": "
|
|
222
|
+
"sha256": "7242000a34b35c6a8d5f14c157c663feb19b8ecf71a471f5253b293e436a57fd"
|
|
222
223
|
},
|
|
223
224
|
{
|
|
224
225
|
"path": "harness-test/checklist.md",
|
|
@@ -242,7 +243,7 @@
|
|
|
242
243
|
},
|
|
243
244
|
{
|
|
244
245
|
"path": "harness-test/SKILL.md",
|
|
245
|
-
"sha256": "
|
|
246
|
+
"sha256": "e334e4c1367ec61b63e260a872c0f46396445b679471819fce6ed3690e4fe99d"
|
|
246
247
|
},
|
|
247
248
|
{
|
|
248
249
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -256,6 +257,10 @@
|
|
|
256
257
|
"path": "protocols/evidence-based-reporting-protocol.md",
|
|
257
258
|
"sha256": "f78ea87823c0935a3033175b393582319da433cf4226e1705070b20d53890ba2"
|
|
258
259
|
},
|
|
260
|
+
{
|
|
261
|
+
"path": "protocols/execution-session-protocol.md",
|
|
262
|
+
"sha256": "d0ac7ab78cb0bac155e5ca92186168c31779cdd0da1fabbbb2c493dd132f02c2"
|
|
263
|
+
},
|
|
259
264
|
{
|
|
260
265
|
"path": "protocols/external-platform-protocol.md",
|
|
261
266
|
"sha256": "6893e3b6a5615ee3eda567952797f91f4d2fcec59c1f8fd947e472a4c1f6ed71"
|
|
@@ -290,7 +295,7 @@
|
|
|
290
295
|
},
|
|
291
296
|
{
|
|
292
297
|
"path": "protocols/state-layout-protocol.md",
|
|
293
|
-
"sha256": "
|
|
298
|
+
"sha256": "517bfa32a9446a898e753344ac652e16cf282fe19abc59490e90926f35ee1e81"
|
|
294
299
|
},
|
|
295
300
|
{
|
|
296
301
|
"path": "protocols/submit-protocol.md",
|
|
@@ -298,7 +303,7 @@
|
|
|
298
303
|
},
|
|
299
304
|
{
|
|
300
305
|
"path": "protocols/verification-graph-protocol.md",
|
|
301
|
-
"sha256": "
|
|
306
|
+
"sha256": "8f1b140c4e51b1f3b437971b6d3154c2aeaf8dad404512f7bc2fbad5f640f0ca"
|
|
302
307
|
},
|
|
303
308
|
{
|
|
304
309
|
"path": "README.md",
|
|
@@ -310,7 +315,7 @@
|
|
|
310
315
|
},
|
|
311
316
|
{
|
|
312
317
|
"path": "scripts/harness_archive.py",
|
|
313
|
-
"sha256": "
|
|
318
|
+
"sha256": "4ffdd0b5a61a60ee263d32d61b67da7c5ba4101968d0de7510894044c4f4b407"
|
|
314
319
|
},
|
|
315
320
|
{
|
|
316
321
|
"path": "scripts/harness_change.py",
|
|
@@ -328,14 +333,22 @@
|
|
|
328
333
|
"path": "scripts/harness_deploy.py",
|
|
329
334
|
"sha256": "fb4290c2dd5c28a09c378da5ee7be491bdefe0410f277ec5dd2af1952cfddbca"
|
|
330
335
|
},
|
|
336
|
+
{
|
|
337
|
+
"path": "scripts/harness_efficiency.py",
|
|
338
|
+
"sha256": "36b2ecbe75a453b35cf6085bbc5e61c04f82e627f9f4f243d29837fad6568c9d"
|
|
339
|
+
},
|
|
331
340
|
{
|
|
332
341
|
"path": "scripts/harness_environment.py",
|
|
333
|
-
"sha256": "
|
|
342
|
+
"sha256": "35ffcf5d76c7165f1aee7ed2953b1b86c943e9c751827b81c126e99a58fdd641"
|
|
334
343
|
},
|
|
335
344
|
{
|
|
336
345
|
"path": "scripts/harness_events.py",
|
|
337
346
|
"sha256": "0d4db19d71d5945837c255192f7c915af447f98e2ac66bf60e25b93f1613b391"
|
|
338
347
|
},
|
|
348
|
+
{
|
|
349
|
+
"path": "scripts/harness_fixback.py",
|
|
350
|
+
"sha256": "723c48a0034648f8a96967749baacbfdde59774cec2a66b1b26a34ea5f7f2b0f"
|
|
351
|
+
},
|
|
339
352
|
{
|
|
340
353
|
"path": "scripts/harness_gate.py",
|
|
341
354
|
"sha256": "404ad6fdf0f5508a22e12086a05f728df41074bbc2c8072f577d500a797c91c5"
|
|
@@ -374,7 +387,7 @@
|
|
|
374
387
|
},
|
|
375
388
|
{
|
|
376
389
|
"path": "scripts/harness_profile.py",
|
|
377
|
-
"sha256": "
|
|
390
|
+
"sha256": "0d6ec71588058e6ca7442ea7148169d1bf2f9db83a756ec29be1aa4b4281413a"
|
|
378
391
|
},
|
|
379
392
|
{
|
|
380
393
|
"path": "scripts/harness_report_model.py",
|
|
@@ -390,11 +403,11 @@
|
|
|
390
403
|
},
|
|
391
404
|
{
|
|
392
405
|
"path": "scripts/harness_runtime.py",
|
|
393
|
-
"sha256": "
|
|
406
|
+
"sha256": "a50cfc9dd5f157251a7ecb8287384319663ec44408bceb0d58e3507c9f8fe340"
|
|
394
407
|
},
|
|
395
408
|
{
|
|
396
409
|
"path": "scripts/harness_service.py",
|
|
397
|
-
"sha256": "
|
|
410
|
+
"sha256": "d3dd9bf79d4b89fe1b40b3564e2831b89008dfc781034875d72c034216079d24"
|
|
398
411
|
},
|
|
399
412
|
{
|
|
400
413
|
"path": "scripts/harness_state.py",
|
|
@@ -414,11 +427,11 @@
|
|
|
414
427
|
},
|
|
415
428
|
{
|
|
416
429
|
"path": "scripts/harness_test_runner.py",
|
|
417
|
-
"sha256": "
|
|
430
|
+
"sha256": "562b6bf2ab69b2c85c77ae300f25c6fdfbfb19d35791aea0c92350a99034af2e"
|
|
418
431
|
},
|
|
419
432
|
{
|
|
420
433
|
"path": "scripts/harness_verification.py",
|
|
421
|
-
"sha256": "
|
|
434
|
+
"sha256": "038f1f19b2ff10c65f6f66f48df63334a1834342107237c8bca1aeefea87515d"
|
|
422
435
|
},
|
|
423
436
|
{
|
|
424
437
|
"path": "scripts/harness_workflow_policy.py",
|