@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": "claude-code",
|
|
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": "2bc63b2a999812dad07176ee1b887caac1053046cc1150ba7e504e1f04a13963"
|
|
26
27
|
},
|
|
27
28
|
{
|
|
28
29
|
"path": "agents/harness-evaluator.md",
|
|
@@ -42,7 +43,7 @@
|
|
|
42
43
|
},
|
|
43
44
|
{
|
|
44
45
|
"path": "contracts/build-profile-v3.schema.json",
|
|
45
|
-
"sha256": "
|
|
46
|
+
"sha256": "12be5f258673f18d271aec962b333c6a25be1af19726c1565a568a4f085aadd7"
|
|
46
47
|
},
|
|
47
48
|
{
|
|
48
49
|
"path": "contracts/ci-metrics.schema.json",
|
|
@@ -66,7 +67,7 @@
|
|
|
66
67
|
},
|
|
67
68
|
{
|
|
68
69
|
"path": "harness-archive/reference.md",
|
|
69
|
-
"sha256": "
|
|
70
|
+
"sha256": "7564286fae2b73a9a646819b408d0dcd3ed757fdc833d19e8a130861f92ffb03"
|
|
70
71
|
},
|
|
71
72
|
{
|
|
72
73
|
"path": "harness-archive/scripts/gen-manifest.ps1",
|
|
@@ -74,15 +75,15 @@
|
|
|
74
75
|
},
|
|
75
76
|
{
|
|
76
77
|
"path": "harness-archive/SKILL.md",
|
|
77
|
-
"sha256": "
|
|
78
|
+
"sha256": "087bccc2059780f405111656bf3a6a586e0e83af2408a5ccdc0110b0d69741de"
|
|
78
79
|
},
|
|
79
80
|
{
|
|
80
81
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
81
|
-
"sha256": "
|
|
82
|
+
"sha256": "970585dcd1c590a6fc985289954b60c41b2cf012df7ea2dd790260e452e404c9"
|
|
82
83
|
},
|
|
83
84
|
{
|
|
84
85
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
85
|
-
"sha256": "
|
|
86
|
+
"sha256": "6d2a1ef5b02287150f14f530902e78382fcf0111beeff4eb63bcf1a88f26b05c"
|
|
86
87
|
},
|
|
87
88
|
{
|
|
88
89
|
"path": "harness-codebase-map/checklist.md",
|
|
@@ -94,7 +95,7 @@
|
|
|
94
95
|
},
|
|
95
96
|
{
|
|
96
97
|
"path": "harness-codebase-map/SKILL.md",
|
|
97
|
-
"sha256": "
|
|
98
|
+
"sha256": "6c358466447cb65726f5208b324dc3585cd99e60449b2d6594f434ac2bc1b3be"
|
|
98
99
|
},
|
|
99
100
|
{
|
|
100
101
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -146,7 +147,7 @@
|
|
|
146
147
|
},
|
|
147
148
|
{
|
|
148
149
|
"path": "harness-knowledge-ingest/reference.md",
|
|
149
|
-
"sha256": "
|
|
150
|
+
"sha256": "aaff0f08ff72f17ad610d6db51e9482b4eaeda87962765f679b2893dff9762e7"
|
|
150
151
|
},
|
|
151
152
|
{
|
|
152
153
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge_mcp.py",
|
|
@@ -154,15 +155,15 @@
|
|
|
154
155
|
},
|
|
155
156
|
{
|
|
156
157
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
157
|
-
"sha256": "
|
|
158
|
+
"sha256": "1d7e6a59fcee223c6988f4993bc838a6bf435eae9d195afd015596298c3162b3"
|
|
158
159
|
},
|
|
159
160
|
{
|
|
160
161
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
161
|
-
"sha256": "
|
|
162
|
+
"sha256": "71f060cac1fbb20de5546cb9c701b19b0c94bc7c88a96c89e8a63e8346da1fb1"
|
|
162
163
|
},
|
|
163
164
|
{
|
|
164
165
|
"path": "harness-knowledge-query/SKILL.md",
|
|
165
|
-
"sha256": "
|
|
166
|
+
"sha256": "da4b65dfc7a599a8f74b4c1dec021d3ce22da82e14d7f6df79f915dc0394f7ce"
|
|
166
167
|
},
|
|
167
168
|
{
|
|
168
169
|
"path": "harness-plan/checklist.md",
|
|
@@ -178,7 +179,7 @@
|
|
|
178
179
|
},
|
|
179
180
|
{
|
|
180
181
|
"path": "harness-plan/SKILL.md",
|
|
181
|
-
"sha256": "
|
|
182
|
+
"sha256": "c977aa7851fb32e9d82bf0c147cb209fee43010437ec3feabb3138dfbeba70d1"
|
|
182
183
|
},
|
|
183
184
|
{
|
|
184
185
|
"path": "harness-review/checklist.md",
|
|
@@ -194,7 +195,7 @@
|
|
|
194
195
|
},
|
|
195
196
|
{
|
|
196
197
|
"path": "harness-review/SKILL.md",
|
|
197
|
-
"sha256": "
|
|
198
|
+
"sha256": "a496c7ed5914a4c14b3b2b05adb2a45d49f3bc816435c83979fd8660f7476467"
|
|
198
199
|
},
|
|
199
200
|
{
|
|
200
201
|
"path": "harness-run/checklist.md",
|
|
@@ -206,11 +207,11 @@
|
|
|
206
207
|
},
|
|
207
208
|
{
|
|
208
209
|
"path": "harness-run/reference.md",
|
|
209
|
-
"sha256": "
|
|
210
|
+
"sha256": "b6887480549e86434d9cfce0003ffe698e81e8ed0b63512e303278f21267748b"
|
|
210
211
|
},
|
|
211
212
|
{
|
|
212
213
|
"path": "harness-run/SKILL.md",
|
|
213
|
-
"sha256": "
|
|
214
|
+
"sha256": "5547c82ac3cbce6467db81d50e745b876b15cd944bcb89cc7433348eab2f004c"
|
|
214
215
|
},
|
|
215
216
|
{
|
|
216
217
|
"path": "harness-submit/checklist.md",
|
|
@@ -222,15 +223,15 @@
|
|
|
222
223
|
},
|
|
223
224
|
{
|
|
224
225
|
"path": "harness-submit/SKILL.md",
|
|
225
|
-
"sha256": "
|
|
226
|
+
"sha256": "b6dbf2271dcb5aa3c549c0e9f8a22941c0ce18164ce6e4efbec1f5c1b3fbae7e"
|
|
226
227
|
},
|
|
227
228
|
{
|
|
228
229
|
"path": "harness-sync/reference.md",
|
|
229
|
-
"sha256": "
|
|
230
|
+
"sha256": "d841ffde8afd2739ed14c765e4d2dd40b4a799771e8256f0ac07d11e0c97f54d"
|
|
230
231
|
},
|
|
231
232
|
{
|
|
232
233
|
"path": "harness-sync/SKILL.md",
|
|
233
|
-
"sha256": "
|
|
234
|
+
"sha256": "b59e3a519c106f992160920f7f546152bbb1039432358eb7472288dffb4ff270"
|
|
234
235
|
},
|
|
235
236
|
{
|
|
236
237
|
"path": "harness-test/checklist.md",
|
|
@@ -254,7 +255,7 @@
|
|
|
254
255
|
},
|
|
255
256
|
{
|
|
256
257
|
"path": "harness-test/SKILL.md",
|
|
257
|
-
"sha256": "
|
|
258
|
+
"sha256": "f81237ccd069f9daa77ad2302d97b33e3fc4bcf24e8bc04ade22d31a2202f101"
|
|
258
259
|
},
|
|
259
260
|
{
|
|
260
261
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -268,6 +269,10 @@
|
|
|
268
269
|
"path": "protocols/evidence-based-reporting-protocol.md",
|
|
269
270
|
"sha256": "f78ea87823c0935a3033175b393582319da433cf4226e1705070b20d53890ba2"
|
|
270
271
|
},
|
|
272
|
+
{
|
|
273
|
+
"path": "protocols/execution-session-protocol.md",
|
|
274
|
+
"sha256": "d0ac7ab78cb0bac155e5ca92186168c31779cdd0da1fabbbb2c493dd132f02c2"
|
|
275
|
+
},
|
|
271
276
|
{
|
|
272
277
|
"path": "protocols/external-platform-protocol.md",
|
|
273
278
|
"sha256": "6893e3b6a5615ee3eda567952797f91f4d2fcec59c1f8fd947e472a4c1f6ed71"
|
|
@@ -302,7 +307,7 @@
|
|
|
302
307
|
},
|
|
303
308
|
{
|
|
304
309
|
"path": "protocols/state-layout-protocol.md",
|
|
305
|
-
"sha256": "
|
|
310
|
+
"sha256": "517bfa32a9446a898e753344ac652e16cf282fe19abc59490e90926f35ee1e81"
|
|
306
311
|
},
|
|
307
312
|
{
|
|
308
313
|
"path": "protocols/submit-protocol.md",
|
|
@@ -310,7 +315,7 @@
|
|
|
310
315
|
},
|
|
311
316
|
{
|
|
312
317
|
"path": "protocols/verification-graph-protocol.md",
|
|
313
|
-
"sha256": "
|
|
318
|
+
"sha256": "8f1b140c4e51b1f3b437971b6d3154c2aeaf8dad404512f7bc2fbad5f640f0ca"
|
|
314
319
|
},
|
|
315
320
|
{
|
|
316
321
|
"path": "README.md",
|
|
@@ -322,7 +327,7 @@
|
|
|
322
327
|
},
|
|
323
328
|
{
|
|
324
329
|
"path": "scripts/harness_archive.py",
|
|
325
|
-
"sha256": "
|
|
330
|
+
"sha256": "4ffdd0b5a61a60ee263d32d61b67da7c5ba4101968d0de7510894044c4f4b407"
|
|
326
331
|
},
|
|
327
332
|
{
|
|
328
333
|
"path": "scripts/harness_change.py",
|
|
@@ -340,14 +345,22 @@
|
|
|
340
345
|
"path": "scripts/harness_deploy.py",
|
|
341
346
|
"sha256": "fb4290c2dd5c28a09c378da5ee7be491bdefe0410f277ec5dd2af1952cfddbca"
|
|
342
347
|
},
|
|
348
|
+
{
|
|
349
|
+
"path": "scripts/harness_efficiency.py",
|
|
350
|
+
"sha256": "36b2ecbe75a453b35cf6085bbc5e61c04f82e627f9f4f243d29837fad6568c9d"
|
|
351
|
+
},
|
|
343
352
|
{
|
|
344
353
|
"path": "scripts/harness_environment.py",
|
|
345
|
-
"sha256": "
|
|
354
|
+
"sha256": "35ffcf5d76c7165f1aee7ed2953b1b86c943e9c751827b81c126e99a58fdd641"
|
|
346
355
|
},
|
|
347
356
|
{
|
|
348
357
|
"path": "scripts/harness_events.py",
|
|
349
358
|
"sha256": "0d4db19d71d5945837c255192f7c915af447f98e2ac66bf60e25b93f1613b391"
|
|
350
359
|
},
|
|
360
|
+
{
|
|
361
|
+
"path": "scripts/harness_fixback.py",
|
|
362
|
+
"sha256": "723c48a0034648f8a96967749baacbfdde59774cec2a66b1b26a34ea5f7f2b0f"
|
|
363
|
+
},
|
|
351
364
|
{
|
|
352
365
|
"path": "scripts/harness_gate.py",
|
|
353
366
|
"sha256": "404ad6fdf0f5508a22e12086a05f728df41074bbc2c8072f577d500a797c91c5"
|
|
@@ -386,7 +399,7 @@
|
|
|
386
399
|
},
|
|
387
400
|
{
|
|
388
401
|
"path": "scripts/harness_profile.py",
|
|
389
|
-
"sha256": "
|
|
402
|
+
"sha256": "0d6ec71588058e6ca7442ea7148169d1bf2f9db83a756ec29be1aa4b4281413a"
|
|
390
403
|
},
|
|
391
404
|
{
|
|
392
405
|
"path": "scripts/harness_report_model.py",
|
|
@@ -402,11 +415,11 @@
|
|
|
402
415
|
},
|
|
403
416
|
{
|
|
404
417
|
"path": "scripts/harness_runtime.py",
|
|
405
|
-
"sha256": "
|
|
418
|
+
"sha256": "a50cfc9dd5f157251a7ecb8287384319663ec44408bceb0d58e3507c9f8fe340"
|
|
406
419
|
},
|
|
407
420
|
{
|
|
408
421
|
"path": "scripts/harness_service.py",
|
|
409
|
-
"sha256": "
|
|
422
|
+
"sha256": "d3dd9bf79d4b89fe1b40b3564e2831b89008dfc781034875d72c034216079d24"
|
|
410
423
|
},
|
|
411
424
|
{
|
|
412
425
|
"path": "scripts/harness_state.py",
|
|
@@ -426,11 +439,11 @@
|
|
|
426
439
|
},
|
|
427
440
|
{
|
|
428
441
|
"path": "scripts/harness_test_runner.py",
|
|
429
|
-
"sha256": "
|
|
442
|
+
"sha256": "562b6bf2ab69b2c85c77ae300f25c6fdfbfb19d35791aea0c92350a99034af2e"
|
|
430
443
|
},
|
|
431
444
|
{
|
|
432
445
|
"path": "scripts/harness_verification.py",
|
|
433
|
-
"sha256": "
|
|
446
|
+
"sha256": "038f1f19b2ff10c65f6f66f48df63334a1834342107237c8bca1aeefea87515d"
|
|
434
447
|
},
|
|
435
448
|
{
|
|
436
449
|
"path": "scripts/harness_workflow_policy.py",
|
|
@@ -2,18 +2,19 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "general",
|
|
4
4
|
"adapter": "codebuddy",
|
|
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": "0033b4c9b6fbdcf99541b15145d8d106257de1757862699d8e0a51fb9c9190cf"
|
|
26
27
|
},
|
|
27
28
|
{
|
|
28
29
|
"path": "agents/harness-evaluator.md",
|
|
@@ -42,7 +43,7 @@
|
|
|
42
43
|
},
|
|
43
44
|
{
|
|
44
45
|
"path": "contracts/build-profile-v3.schema.json",
|
|
45
|
-
"sha256": "
|
|
46
|
+
"sha256": "12be5f258673f18d271aec962b333c6a25be1af19726c1565a568a4f085aadd7"
|
|
46
47
|
},
|
|
47
48
|
{
|
|
48
49
|
"path": "contracts/ci-metrics.schema.json",
|
|
@@ -66,7 +67,7 @@
|
|
|
66
67
|
},
|
|
67
68
|
{
|
|
68
69
|
"path": "harness-archive/reference.md",
|
|
69
|
-
"sha256": "
|
|
70
|
+
"sha256": "7564286fae2b73a9a646819b408d0dcd3ed757fdc833d19e8a130861f92ffb03"
|
|
70
71
|
},
|
|
71
72
|
{
|
|
72
73
|
"path": "harness-archive/scripts/gen-manifest.ps1",
|
|
@@ -74,15 +75,15 @@
|
|
|
74
75
|
},
|
|
75
76
|
{
|
|
76
77
|
"path": "harness-archive/SKILL.md",
|
|
77
|
-
"sha256": "
|
|
78
|
+
"sha256": "88a2e5a292261345aa2e66a4a2fb706eda4f527b4ff6644895bd955922fe871e"
|
|
78
79
|
},
|
|
79
80
|
{
|
|
80
81
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
81
|
-
"sha256": "
|
|
82
|
+
"sha256": "970585dcd1c590a6fc985289954b60c41b2cf012df7ea2dd790260e452e404c9"
|
|
82
83
|
},
|
|
83
84
|
{
|
|
84
85
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
85
|
-
"sha256": "
|
|
86
|
+
"sha256": "6d2a1ef5b02287150f14f530902e78382fcf0111beeff4eb63bcf1a88f26b05c"
|
|
86
87
|
},
|
|
87
88
|
{
|
|
88
89
|
"path": "harness-codebase-map/checklist.md",
|
|
@@ -94,7 +95,7 @@
|
|
|
94
95
|
},
|
|
95
96
|
{
|
|
96
97
|
"path": "harness-codebase-map/SKILL.md",
|
|
97
|
-
"sha256": "
|
|
98
|
+
"sha256": "3420fbde3dbeea9327dada082dd94d2a01e3a0e46b034bde22378a66cd6aa78e"
|
|
98
99
|
},
|
|
99
100
|
{
|
|
100
101
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -146,7 +147,7 @@
|
|
|
146
147
|
},
|
|
147
148
|
{
|
|
148
149
|
"path": "harness-knowledge-ingest/reference.md",
|
|
149
|
-
"sha256": "
|
|
150
|
+
"sha256": "aaff0f08ff72f17ad610d6db51e9482b4eaeda87962765f679b2893dff9762e7"
|
|
150
151
|
},
|
|
151
152
|
{
|
|
152
153
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge_mcp.py",
|
|
@@ -154,15 +155,15 @@
|
|
|
154
155
|
},
|
|
155
156
|
{
|
|
156
157
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
157
|
-
"sha256": "
|
|
158
|
+
"sha256": "1d7e6a59fcee223c6988f4993bc838a6bf435eae9d195afd015596298c3162b3"
|
|
158
159
|
},
|
|
159
160
|
{
|
|
160
161
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
161
|
-
"sha256": "
|
|
162
|
+
"sha256": "a2ada5579065b29fa0d824650784e818c800fba7c866b15f412fa2438d6069b6"
|
|
162
163
|
},
|
|
163
164
|
{
|
|
164
165
|
"path": "harness-knowledge-query/SKILL.md",
|
|
165
|
-
"sha256": "
|
|
166
|
+
"sha256": "41efa2e1bdf3232be7d270efe2cdf7c1a3a09eae87ad1524f573dbf13ab38c6b"
|
|
166
167
|
},
|
|
167
168
|
{
|
|
168
169
|
"path": "harness-plan/checklist.md",
|
|
@@ -178,7 +179,7 @@
|
|
|
178
179
|
},
|
|
179
180
|
{
|
|
180
181
|
"path": "harness-plan/SKILL.md",
|
|
181
|
-
"sha256": "
|
|
182
|
+
"sha256": "7ae24f505e0e2a3c7d3c462c278fb770b35476f7da07a4760537aba5a26b5475"
|
|
182
183
|
},
|
|
183
184
|
{
|
|
184
185
|
"path": "harness-review/checklist.md",
|
|
@@ -194,7 +195,7 @@
|
|
|
194
195
|
},
|
|
195
196
|
{
|
|
196
197
|
"path": "harness-review/SKILL.md",
|
|
197
|
-
"sha256": "
|
|
198
|
+
"sha256": "4d129fdd18f8f5c15fdfbfdfda1c3937299e42a8462d0c4ab8955aadaced14b8"
|
|
198
199
|
},
|
|
199
200
|
{
|
|
200
201
|
"path": "harness-run/checklist.md",
|
|
@@ -206,11 +207,11 @@
|
|
|
206
207
|
},
|
|
207
208
|
{
|
|
208
209
|
"path": "harness-run/reference.md",
|
|
209
|
-
"sha256": "
|
|
210
|
+
"sha256": "b6887480549e86434d9cfce0003ffe698e81e8ed0b63512e303278f21267748b"
|
|
210
211
|
},
|
|
211
212
|
{
|
|
212
213
|
"path": "harness-run/SKILL.md",
|
|
213
|
-
"sha256": "
|
|
214
|
+
"sha256": "bbd57241a2864a4f5ba85ff09724016ab16aed2210e97e3853ea948c6584970f"
|
|
214
215
|
},
|
|
215
216
|
{
|
|
216
217
|
"path": "harness-submit/checklist.md",
|
|
@@ -222,15 +223,15 @@
|
|
|
222
223
|
},
|
|
223
224
|
{
|
|
224
225
|
"path": "harness-submit/SKILL.md",
|
|
225
|
-
"sha256": "
|
|
226
|
+
"sha256": "3ba09ad30ec3e6e2970358566c7753da1cae6c65cb3086600707308b71aedb53"
|
|
226
227
|
},
|
|
227
228
|
{
|
|
228
229
|
"path": "harness-sync/reference.md",
|
|
229
|
-
"sha256": "
|
|
230
|
+
"sha256": "d841ffde8afd2739ed14c765e4d2dd40b4a799771e8256f0ac07d11e0c97f54d"
|
|
230
231
|
},
|
|
231
232
|
{
|
|
232
233
|
"path": "harness-sync/SKILL.md",
|
|
233
|
-
"sha256": "
|
|
234
|
+
"sha256": "a3c82ccbc0b864af3e1bce063ff663f70a6b45e85d865c85d8098f4d743b95a9"
|
|
234
235
|
},
|
|
235
236
|
{
|
|
236
237
|
"path": "harness-test/checklist.md",
|
|
@@ -254,7 +255,7 @@
|
|
|
254
255
|
},
|
|
255
256
|
{
|
|
256
257
|
"path": "harness-test/SKILL.md",
|
|
257
|
-
"sha256": "
|
|
258
|
+
"sha256": "560d6e6e4801e5773cbdc43d07c4e289427572d1a992438da730f09cc6e1318d"
|
|
258
259
|
},
|
|
259
260
|
{
|
|
260
261
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -268,6 +269,10 @@
|
|
|
268
269
|
"path": "protocols/evidence-based-reporting-protocol.md",
|
|
269
270
|
"sha256": "f78ea87823c0935a3033175b393582319da433cf4226e1705070b20d53890ba2"
|
|
270
271
|
},
|
|
272
|
+
{
|
|
273
|
+
"path": "protocols/execution-session-protocol.md",
|
|
274
|
+
"sha256": "d0ac7ab78cb0bac155e5ca92186168c31779cdd0da1fabbbb2c493dd132f02c2"
|
|
275
|
+
},
|
|
271
276
|
{
|
|
272
277
|
"path": "protocols/external-platform-protocol.md",
|
|
273
278
|
"sha256": "6893e3b6a5615ee3eda567952797f91f4d2fcec59c1f8fd947e472a4c1f6ed71"
|
|
@@ -302,7 +307,7 @@
|
|
|
302
307
|
},
|
|
303
308
|
{
|
|
304
309
|
"path": "protocols/state-layout-protocol.md",
|
|
305
|
-
"sha256": "
|
|
310
|
+
"sha256": "517bfa32a9446a898e753344ac652e16cf282fe19abc59490e90926f35ee1e81"
|
|
306
311
|
},
|
|
307
312
|
{
|
|
308
313
|
"path": "protocols/submit-protocol.md",
|
|
@@ -310,7 +315,7 @@
|
|
|
310
315
|
},
|
|
311
316
|
{
|
|
312
317
|
"path": "protocols/verification-graph-protocol.md",
|
|
313
|
-
"sha256": "
|
|
318
|
+
"sha256": "8f1b140c4e51b1f3b437971b6d3154c2aeaf8dad404512f7bc2fbad5f640f0ca"
|
|
314
319
|
},
|
|
315
320
|
{
|
|
316
321
|
"path": "README.md",
|
|
@@ -322,7 +327,7 @@
|
|
|
322
327
|
},
|
|
323
328
|
{
|
|
324
329
|
"path": "scripts/harness_archive.py",
|
|
325
|
-
"sha256": "
|
|
330
|
+
"sha256": "4ffdd0b5a61a60ee263d32d61b67da7c5ba4101968d0de7510894044c4f4b407"
|
|
326
331
|
},
|
|
327
332
|
{
|
|
328
333
|
"path": "scripts/harness_change.py",
|
|
@@ -340,14 +345,22 @@
|
|
|
340
345
|
"path": "scripts/harness_deploy.py",
|
|
341
346
|
"sha256": "fb4290c2dd5c28a09c378da5ee7be491bdefe0410f277ec5dd2af1952cfddbca"
|
|
342
347
|
},
|
|
348
|
+
{
|
|
349
|
+
"path": "scripts/harness_efficiency.py",
|
|
350
|
+
"sha256": "36b2ecbe75a453b35cf6085bbc5e61c04f82e627f9f4f243d29837fad6568c9d"
|
|
351
|
+
},
|
|
343
352
|
{
|
|
344
353
|
"path": "scripts/harness_environment.py",
|
|
345
|
-
"sha256": "
|
|
354
|
+
"sha256": "35ffcf5d76c7165f1aee7ed2953b1b86c943e9c751827b81c126e99a58fdd641"
|
|
346
355
|
},
|
|
347
356
|
{
|
|
348
357
|
"path": "scripts/harness_events.py",
|
|
349
358
|
"sha256": "0d4db19d71d5945837c255192f7c915af447f98e2ac66bf60e25b93f1613b391"
|
|
350
359
|
},
|
|
360
|
+
{
|
|
361
|
+
"path": "scripts/harness_fixback.py",
|
|
362
|
+
"sha256": "723c48a0034648f8a96967749baacbfdde59774cec2a66b1b26a34ea5f7f2b0f"
|
|
363
|
+
},
|
|
351
364
|
{
|
|
352
365
|
"path": "scripts/harness_gate.py",
|
|
353
366
|
"sha256": "404ad6fdf0f5508a22e12086a05f728df41074bbc2c8072f577d500a797c91c5"
|
|
@@ -386,7 +399,7 @@
|
|
|
386
399
|
},
|
|
387
400
|
{
|
|
388
401
|
"path": "scripts/harness_profile.py",
|
|
389
|
-
"sha256": "
|
|
402
|
+
"sha256": "0d6ec71588058e6ca7442ea7148169d1bf2f9db83a756ec29be1aa4b4281413a"
|
|
390
403
|
},
|
|
391
404
|
{
|
|
392
405
|
"path": "scripts/harness_report_model.py",
|
|
@@ -402,11 +415,11 @@
|
|
|
402
415
|
},
|
|
403
416
|
{
|
|
404
417
|
"path": "scripts/harness_runtime.py",
|
|
405
|
-
"sha256": "
|
|
418
|
+
"sha256": "a50cfc9dd5f157251a7ecb8287384319663ec44408bceb0d58e3507c9f8fe340"
|
|
406
419
|
},
|
|
407
420
|
{
|
|
408
421
|
"path": "scripts/harness_service.py",
|
|
409
|
-
"sha256": "
|
|
422
|
+
"sha256": "d3dd9bf79d4b89fe1b40b3564e2831b89008dfc781034875d72c034216079d24"
|
|
410
423
|
},
|
|
411
424
|
{
|
|
412
425
|
"path": "scripts/harness_state.py",
|
|
@@ -426,11 +439,11 @@
|
|
|
426
439
|
},
|
|
427
440
|
{
|
|
428
441
|
"path": "scripts/harness_test_runner.py",
|
|
429
|
-
"sha256": "
|
|
442
|
+
"sha256": "562b6bf2ab69b2c85c77ae300f25c6fdfbfb19d35791aea0c92350a99034af2e"
|
|
430
443
|
},
|
|
431
444
|
{
|
|
432
445
|
"path": "scripts/harness_verification.py",
|
|
433
|
-
"sha256": "
|
|
446
|
+
"sha256": "038f1f19b2ff10c65f6f66f48df63334a1834342107237c8bca1aeefea87515d"
|
|
434
447
|
},
|
|
435
448
|
{
|
|
436
449
|
"path": "scripts/harness_workflow_policy.py",
|