@hunter-harness/workflow-harness 0.2.40 → 0.2.42
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/checklist.md +3 -0
- package/harness/bundles/general/claude-code/harness-archive/templates/render-summary.mjs +22 -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-plan/reference.md +16 -16
- 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 +1 -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 +3 -1
- package/harness/bundles/general/claude-code/protocols/archive-report-protocol.md +10 -0
- package/harness/bundles/general/claude-code/protocols/ledger-protocol.md +12 -0
- package/harness/bundles/general/claude-code/protocols/powershell-protocol.md +21 -0
- package/harness/bundles/general/claude-code/protocols/state-layout-protocol.md +11 -0
- package/harness/bundles/general/claude-code/scripts/harness_archive.py +413 -2
- package/harness/bundles/general/claude-code/scripts/harness_environment.py +556 -39
- package/harness/bundles/general/claude-code/scripts/harness_gate.py +145 -0
- package/harness/bundles/general/claude-code/scripts/harness_ledger.py +581 -55
- package/harness/bundles/general/claude-code/scripts/harness_plan_finalize.py +85 -6
- package/harness/bundles/general/claude-code/scripts/harness_service.py +291 -22
- package/harness/bundles/general/claude-code/scripts/harness_test_runner.py +405 -25
- 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/checklist.md +3 -0
- package/harness/bundles/general/codebuddy/harness-archive/templates/render-summary.mjs +22 -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-plan/reference.md +16 -16
- 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 +1 -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 +3 -1
- package/harness/bundles/general/codebuddy/protocols/archive-report-protocol.md +10 -0
- package/harness/bundles/general/codebuddy/protocols/ledger-protocol.md +12 -0
- package/harness/bundles/general/codebuddy/protocols/powershell-protocol.md +21 -0
- package/harness/bundles/general/codebuddy/protocols/state-layout-protocol.md +11 -0
- package/harness/bundles/general/codebuddy/scripts/harness_archive.py +413 -2
- package/harness/bundles/general/codebuddy/scripts/harness_environment.py +556 -39
- package/harness/bundles/general/codebuddy/scripts/harness_gate.py +145 -0
- package/harness/bundles/general/codebuddy/scripts/harness_ledger.py +581 -55
- package/harness/bundles/general/codebuddy/scripts/harness_plan_finalize.py +85 -6
- package/harness/bundles/general/codebuddy/scripts/harness_service.py +291 -22
- package/harness/bundles/general/codebuddy/scripts/harness_test_runner.py +405 -25
- 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/checklist.md +3 -0
- package/harness/bundles/general/codex/harness-archive/templates/render-summary.mjs +22 -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-plan/reference.md +16 -16
- 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 +1 -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 +3 -1
- package/harness/bundles/general/codex/protocols/archive-report-protocol.md +10 -0
- package/harness/bundles/general/codex/protocols/ledger-protocol.md +12 -0
- package/harness/bundles/general/codex/protocols/powershell-protocol.md +21 -0
- package/harness/bundles/general/codex/protocols/state-layout-protocol.md +11 -0
- package/harness/bundles/general/codex/scripts/harness_archive.py +413 -2
- package/harness/bundles/general/codex/scripts/harness_environment.py +556 -39
- package/harness/bundles/general/codex/scripts/harness_gate.py +145 -0
- package/harness/bundles/general/codex/scripts/harness_ledger.py +581 -55
- package/harness/bundles/general/codex/scripts/harness_plan_finalize.py +85 -6
- package/harness/bundles/general/codex/scripts/harness_service.py +291 -22
- package/harness/bundles/general/codex/scripts/harness_test_runner.py +405 -25
- 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/checklist.md +3 -0
- package/harness/bundles/general/cursor/harness-archive/templates/render-summary.mjs +22 -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-plan/reference.md +16 -16
- 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 +1 -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 +3 -1
- package/harness/bundles/general/cursor/protocols/archive-report-protocol.md +10 -0
- package/harness/bundles/general/cursor/protocols/ledger-protocol.md +12 -0
- package/harness/bundles/general/cursor/protocols/powershell-protocol.md +21 -0
- package/harness/bundles/general/cursor/protocols/state-layout-protocol.md +11 -0
- package/harness/bundles/general/cursor/scripts/harness_archive.py +413 -2
- package/harness/bundles/general/cursor/scripts/harness_environment.py +556 -39
- package/harness/bundles/general/cursor/scripts/harness_gate.py +145 -0
- package/harness/bundles/general/cursor/scripts/harness_ledger.py +581 -55
- package/harness/bundles/general/cursor/scripts/harness_plan_finalize.py +85 -6
- package/harness/bundles/general/cursor/scripts/harness_service.py +291 -22
- package/harness/bundles/general/cursor/scripts/harness_test_runner.py +405 -25
- 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/checklist.md +3 -0
- package/harness/bundles/java/claude-code/harness-archive/templates/render-summary.mjs +22 -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-plan/reference.md +16 -16
- 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 +3 -1
- package/harness/bundles/java/claude-code/protocols/archive-report-protocol.md +10 -0
- package/harness/bundles/java/claude-code/protocols/ledger-protocol.md +12 -0
- package/harness/bundles/java/claude-code/protocols/powershell-protocol.md +21 -0
- package/harness/bundles/java/claude-code/protocols/state-layout-protocol.md +11 -0
- package/harness/bundles/java/claude-code/scripts/harness_archive.py +413 -2
- package/harness/bundles/java/claude-code/scripts/harness_environment.py +556 -39
- package/harness/bundles/java/claude-code/scripts/harness_gate.py +145 -0
- package/harness/bundles/java/claude-code/scripts/harness_ledger.py +581 -55
- package/harness/bundles/java/claude-code/scripts/harness_plan_finalize.py +85 -6
- package/harness/bundles/java/claude-code/scripts/harness_service.py +291 -22
- package/harness/bundles/java/claude-code/scripts/harness_test_runner.py +405 -25
- 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/checklist.md +3 -0
- package/harness/bundles/java/codebuddy/harness-archive/templates/render-summary.mjs +22 -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-plan/reference.md +16 -16
- 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 +3 -1
- package/harness/bundles/java/codebuddy/protocols/archive-report-protocol.md +10 -0
- package/harness/bundles/java/codebuddy/protocols/ledger-protocol.md +12 -0
- package/harness/bundles/java/codebuddy/protocols/powershell-protocol.md +21 -0
- package/harness/bundles/java/codebuddy/protocols/state-layout-protocol.md +11 -0
- package/harness/bundles/java/codebuddy/scripts/harness_archive.py +413 -2
- package/harness/bundles/java/codebuddy/scripts/harness_environment.py +556 -39
- package/harness/bundles/java/codebuddy/scripts/harness_gate.py +145 -0
- package/harness/bundles/java/codebuddy/scripts/harness_ledger.py +581 -55
- package/harness/bundles/java/codebuddy/scripts/harness_plan_finalize.py +85 -6
- package/harness/bundles/java/codebuddy/scripts/harness_service.py +291 -22
- package/harness/bundles/java/codebuddy/scripts/harness_test_runner.py +405 -25
- 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/checklist.md +3 -0
- package/harness/bundles/java/codex/harness-archive/templates/render-summary.mjs +22 -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-plan/reference.md +16 -16
- 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 +3 -1
- package/harness/bundles/java/codex/protocols/archive-report-protocol.md +10 -0
- package/harness/bundles/java/codex/protocols/ledger-protocol.md +12 -0
- package/harness/bundles/java/codex/protocols/powershell-protocol.md +21 -0
- package/harness/bundles/java/codex/protocols/state-layout-protocol.md +11 -0
- package/harness/bundles/java/codex/scripts/harness_archive.py +413 -2
- package/harness/bundles/java/codex/scripts/harness_environment.py +556 -39
- package/harness/bundles/java/codex/scripts/harness_gate.py +145 -0
- package/harness/bundles/java/codex/scripts/harness_ledger.py +581 -55
- package/harness/bundles/java/codex/scripts/harness_plan_finalize.py +85 -6
- package/harness/bundles/java/codex/scripts/harness_service.py +291 -22
- package/harness/bundles/java/codex/scripts/harness_test_runner.py +405 -25
- 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/checklist.md +3 -0
- package/harness/bundles/java/cursor/harness-archive/templates/render-summary.mjs +22 -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-plan/reference.md +16 -16
- 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 +3 -1
- package/harness/bundles/java/cursor/protocols/archive-report-protocol.md +10 -0
- package/harness/bundles/java/cursor/protocols/ledger-protocol.md +12 -0
- package/harness/bundles/java/cursor/protocols/powershell-protocol.md +21 -0
- package/harness/bundles/java/cursor/protocols/state-layout-protocol.md +11 -0
- package/harness/bundles/java/cursor/scripts/harness_archive.py +413 -2
- package/harness/bundles/java/cursor/scripts/harness_environment.py +556 -39
- package/harness/bundles/java/cursor/scripts/harness_gate.py +145 -0
- package/harness/bundles/java/cursor/scripts/harness_ledger.py +581 -55
- package/harness/bundles/java/cursor/scripts/harness_plan_finalize.py +85 -6
- package/harness/bundles/java/cursor/scripts/harness_service.py +291 -22
- package/harness/bundles/java/cursor/scripts/harness_test_runner.py +405 -25
- package/harness/manifests/general/claude-code.json +34 -34
- package/harness/manifests/general/codebuddy.json +34 -34
- package/harness/manifests/general/codex.json +34 -34
- package/harness/manifests/general/cursor.json +34 -34
- package/harness/manifests/java/claude-code.json +35 -35
- package/harness/manifests/java/codebuddy.json +35 -35
- package/harness/manifests/java/codex.json +35 -35
- package/harness/manifests/java/cursor.json +35 -35
- package/hunter-workflow-family.json +10 -10
- package/package.json +1 -1
|
@@ -2,18 +2,18 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "codex",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.31",
|
|
6
6
|
"requires": {
|
|
7
|
-
"minimumCliVersion": "0.2.
|
|
7
|
+
"minimumCliVersion": "0.2.44",
|
|
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
15
|
"external-convergence@1",
|
|
16
|
-
"codegraph-status@
|
|
16
|
+
"codegraph-status@2",
|
|
17
17
|
"doctor-capability@1",
|
|
18
18
|
"registry-governance@1"
|
|
19
19
|
]
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"files": [
|
|
23
23
|
{
|
|
24
24
|
"path": ".harness-build.json",
|
|
25
|
-
"sha256": "
|
|
25
|
+
"sha256": "179ba7253e1189da03a3b71545e6cc63d14f9c6075e694074389a374b3d48c5e"
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
28
|
"path": "CONTEXT.md",
|
|
@@ -58,11 +58,11 @@
|
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
60
|
"path": "harness-apidoc/SKILL.md",
|
|
61
|
-
"sha256": "
|
|
61
|
+
"sha256": "9a6b5cc8727298b8b6ce2181c8814b4dec9ee6386dbfb76d1cef7267c18f851d"
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
"path": "harness-archive/checklist.md",
|
|
65
|
-
"sha256": "
|
|
65
|
+
"sha256": "5087988f03878439519da40b0a9bc630fec87c1b42b7749a4f0e43baf7c5fd5d"
|
|
66
66
|
},
|
|
67
67
|
{
|
|
68
68
|
"path": "harness-archive/reference.md",
|
|
@@ -74,11 +74,11 @@
|
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
76
|
"path": "harness-archive/SKILL.md",
|
|
77
|
-
"sha256": "
|
|
77
|
+
"sha256": "e007e10245f6681f97a4a7727d59d3eb0de4bc4f88b323a06dce9b1df403dfa0"
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
80
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
81
|
-
"sha256": "
|
|
81
|
+
"sha256": "a4d1a98de2cf6a6ab74ddba33b6529459f7f5b009f31c5a7021f6abe2c0afef0"
|
|
82
82
|
},
|
|
83
83
|
{
|
|
84
84
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
96
|
"path": "harness-codebase-map/SKILL.md",
|
|
97
|
-
"sha256": "
|
|
97
|
+
"sha256": "7d5cbec4e082bb00a0a74520450b9d4a1c7992b3045e2301a24a98855aa061a0"
|
|
98
98
|
},
|
|
99
99
|
{
|
|
100
100
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
},
|
|
147
147
|
{
|
|
148
148
|
"path": "harness-knowledge-ingest/reference.md",
|
|
149
|
-
"sha256": "
|
|
149
|
+
"sha256": "aaff0f08ff72f17ad610d6db51e9482b4eaeda87962765f679b2893dff9762e7"
|
|
150
150
|
},
|
|
151
151
|
{
|
|
152
152
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge_mcp.py",
|
|
@@ -154,15 +154,15 @@
|
|
|
154
154
|
},
|
|
155
155
|
{
|
|
156
156
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
157
|
-
"sha256": "
|
|
157
|
+
"sha256": "1d7e6a59fcee223c6988f4993bc838a6bf435eae9d195afd015596298c3162b3"
|
|
158
158
|
},
|
|
159
159
|
{
|
|
160
160
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
161
|
-
"sha256": "
|
|
161
|
+
"sha256": "b88460dbee46f3c443a08f4fb6266279509f6b8c6482f587dcdf46ee8c62fc90"
|
|
162
162
|
},
|
|
163
163
|
{
|
|
164
164
|
"path": "harness-knowledge-query/SKILL.md",
|
|
165
|
-
"sha256": "
|
|
165
|
+
"sha256": "c32791e8c71ff81e82cba2f74533de040323b04ca0a8004014cef46e5c072c7d"
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
168
|
"path": "harness-package/checklist.md",
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
},
|
|
175
175
|
{
|
|
176
176
|
"path": "harness-package/SKILL.md",
|
|
177
|
-
"sha256": "
|
|
177
|
+
"sha256": "b2b15be339e10d11c30209f5bbd6df963f1b99aa2dd7546467443be9d1dbd6d7"
|
|
178
178
|
},
|
|
179
179
|
{
|
|
180
180
|
"path": "harness-plan/checklist.md",
|
|
@@ -186,11 +186,11 @@
|
|
|
186
186
|
},
|
|
187
187
|
{
|
|
188
188
|
"path": "harness-plan/reference.md",
|
|
189
|
-
"sha256": "
|
|
189
|
+
"sha256": "9f35188a5c15bee784b920e0dee6c077edf05a6db68eaab3aedb4c16b0ce644f"
|
|
190
190
|
},
|
|
191
191
|
{
|
|
192
192
|
"path": "harness-plan/SKILL.md",
|
|
193
|
-
"sha256": "
|
|
193
|
+
"sha256": "61e222b18dfbf8ca1e15cecfc8938b4629fa94899987d5e5a4c559fa04704957"
|
|
194
194
|
},
|
|
195
195
|
{
|
|
196
196
|
"path": "harness-review/checklist.md",
|
|
@@ -206,7 +206,7 @@
|
|
|
206
206
|
},
|
|
207
207
|
{
|
|
208
208
|
"path": "harness-review/SKILL.md",
|
|
209
|
-
"sha256": "
|
|
209
|
+
"sha256": "4246fd02899428621cb55d3992d1a67d69b094bc9b2a21db2b590eaed4951873"
|
|
210
210
|
},
|
|
211
211
|
{
|
|
212
212
|
"path": "harness-run/checklist.md",
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
},
|
|
223
223
|
{
|
|
224
224
|
"path": "harness-run/SKILL.md",
|
|
225
|
-
"sha256": "
|
|
225
|
+
"sha256": "e666e9885ad65995990cec02f0d09b0a2b6e81f97f178d6450df0683af290724"
|
|
226
226
|
},
|
|
227
227
|
{
|
|
228
228
|
"path": "harness-submit/checklist.md",
|
|
@@ -234,15 +234,15 @@
|
|
|
234
234
|
},
|
|
235
235
|
{
|
|
236
236
|
"path": "harness-submit/SKILL.md",
|
|
237
|
-
"sha256": "
|
|
237
|
+
"sha256": "4246e69658cfd25b774337c013a95ec265fcb16eaa1b5dae5aa975e9ca19b97b"
|
|
238
238
|
},
|
|
239
239
|
{
|
|
240
240
|
"path": "harness-sync/reference.md",
|
|
241
|
-
"sha256": "
|
|
241
|
+
"sha256": "d841ffde8afd2739ed14c765e4d2dd40b4a799771e8256f0ac07d11e0c97f54d"
|
|
242
242
|
},
|
|
243
243
|
{
|
|
244
244
|
"path": "harness-sync/SKILL.md",
|
|
245
|
-
"sha256": "
|
|
245
|
+
"sha256": "3eeca09fece601df67bbb5f3ca96605dd800fdcacdaef5c5022d997469c9eed3"
|
|
246
246
|
},
|
|
247
247
|
{
|
|
248
248
|
"path": "harness-test/checklist.md",
|
|
@@ -266,11 +266,11 @@
|
|
|
266
266
|
},
|
|
267
267
|
{
|
|
268
268
|
"path": "harness-test/SKILL.md",
|
|
269
|
-
"sha256": "
|
|
269
|
+
"sha256": "c6f066977fb13471930d0203ebd7001c06e97ee87d051c156efe389ae277b023"
|
|
270
270
|
},
|
|
271
271
|
{
|
|
272
272
|
"path": "protocols/archive-report-protocol.md",
|
|
273
|
-
"sha256": "
|
|
273
|
+
"sha256": "4237892699de6e4a45cf9196733029d82bbbc67ba3b22751449842c49ea0a68e"
|
|
274
274
|
},
|
|
275
275
|
{
|
|
276
276
|
"path": "protocols/ci-layering-protocol.md",
|
|
@@ -286,7 +286,7 @@
|
|
|
286
286
|
},
|
|
287
287
|
{
|
|
288
288
|
"path": "protocols/ledger-protocol.md",
|
|
289
|
-
"sha256": "
|
|
289
|
+
"sha256": "279e37a76ccd59cf6d89891418677a527a2be6061325c8cd9c7039dd84956d97"
|
|
290
290
|
},
|
|
291
291
|
{
|
|
292
292
|
"path": "protocols/memory-closeout-protocol.md",
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
},
|
|
299
299
|
{
|
|
300
300
|
"path": "protocols/powershell-protocol.md",
|
|
301
|
-
"sha256": "
|
|
301
|
+
"sha256": "948d217c9d651f1f9060efc2f869cc4e0f7172b516283966d027154d683c3a89"
|
|
302
302
|
},
|
|
303
303
|
{
|
|
304
304
|
"path": "protocols/registry-governance-protocol.md",
|
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
},
|
|
315
315
|
{
|
|
316
316
|
"path": "protocols/state-layout-protocol.md",
|
|
317
|
-
"sha256": "
|
|
317
|
+
"sha256": "8f20ae2dac0244f39b7dad162bf58f3a502b23dea968dc97d7f2b4d82f4a4cba"
|
|
318
318
|
},
|
|
319
319
|
{
|
|
320
320
|
"path": "protocols/submit-protocol.md",
|
|
@@ -334,7 +334,7 @@
|
|
|
334
334
|
},
|
|
335
335
|
{
|
|
336
336
|
"path": "scripts/harness_archive.py",
|
|
337
|
-
"sha256": "
|
|
337
|
+
"sha256": "428273edc77d4c8ee5f7488abd7e0dbc8c6f82b3d8267d02e9e144fe06bb53e4"
|
|
338
338
|
},
|
|
339
339
|
{
|
|
340
340
|
"path": "scripts/harness_change.py",
|
|
@@ -354,7 +354,7 @@
|
|
|
354
354
|
},
|
|
355
355
|
{
|
|
356
356
|
"path": "scripts/harness_environment.py",
|
|
357
|
-
"sha256": "
|
|
357
|
+
"sha256": "beeef14f7b5f6a14e15ba518236c2cee40c63e4a61d057d046edab3a48e629a2"
|
|
358
358
|
},
|
|
359
359
|
{
|
|
360
360
|
"path": "scripts/harness_events.py",
|
|
@@ -362,7 +362,7 @@
|
|
|
362
362
|
},
|
|
363
363
|
{
|
|
364
364
|
"path": "scripts/harness_gate.py",
|
|
365
|
-
"sha256": "
|
|
365
|
+
"sha256": "404ad6fdf0f5508a22e12086a05f728df41074bbc2c8072f577d500a797c91c5"
|
|
366
366
|
},
|
|
367
367
|
{
|
|
368
368
|
"path": "scripts/harness_integration.py",
|
|
@@ -370,7 +370,7 @@
|
|
|
370
370
|
},
|
|
371
371
|
{
|
|
372
372
|
"path": "scripts/harness_ledger.py",
|
|
373
|
-
"sha256": "
|
|
373
|
+
"sha256": "7b93a3b2afdbb6262124e1e91f947f11f52006604af612c1acd708fd268f5921"
|
|
374
374
|
},
|
|
375
375
|
{
|
|
376
376
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
},
|
|
391
391
|
{
|
|
392
392
|
"path": "scripts/harness_plan_finalize.py",
|
|
393
|
-
"sha256": "
|
|
393
|
+
"sha256": "5d6a4b7e61f96ae72d320afba21719512eaacb12c6a11c609161bf333fbcf68a"
|
|
394
394
|
},
|
|
395
395
|
{
|
|
396
396
|
"path": "scripts/harness_preflight.py",
|
|
@@ -418,7 +418,7 @@
|
|
|
418
418
|
},
|
|
419
419
|
{
|
|
420
420
|
"path": "scripts/harness_service.py",
|
|
421
|
-
"sha256": "
|
|
421
|
+
"sha256": "56862b94d43314ad6515c37ad2945d256672cde66db3da1cbfbde8aebf94847c"
|
|
422
422
|
},
|
|
423
423
|
{
|
|
424
424
|
"path": "scripts/harness_state.py",
|
|
@@ -438,7 +438,7 @@
|
|
|
438
438
|
},
|
|
439
439
|
{
|
|
440
440
|
"path": "scripts/harness_test_runner.py",
|
|
441
|
-
"sha256": "
|
|
441
|
+
"sha256": "119a884794c0a417e6ffd128dfa601ac17ed5630b3db6b923d357875d3739c7e"
|
|
442
442
|
},
|
|
443
443
|
{
|
|
444
444
|
"path": "scripts/harness_verification.py",
|
|
@@ -2,18 +2,18 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "cursor",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.31",
|
|
6
6
|
"requires": {
|
|
7
|
-
"minimumCliVersion": "0.2.
|
|
7
|
+
"minimumCliVersion": "0.2.44",
|
|
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
15
|
"external-convergence@1",
|
|
16
|
-
"codegraph-status@
|
|
16
|
+
"codegraph-status@2",
|
|
17
17
|
"doctor-capability@1",
|
|
18
18
|
"registry-governance@1"
|
|
19
19
|
]
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"files": [
|
|
23
23
|
{
|
|
24
24
|
"path": ".harness-build.json",
|
|
25
|
-
"sha256": "
|
|
25
|
+
"sha256": "4b4353b4d030b81c7d7c94379fe3bbac7ac80ed65a1b026b2cfee020ecf5f5cf"
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
28
|
"path": "CONTEXT.md",
|
|
@@ -58,11 +58,11 @@
|
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
60
|
"path": "harness-apidoc/SKILL.md",
|
|
61
|
-
"sha256": "
|
|
61
|
+
"sha256": "23d0adcd4f9e3f53e2b0a276dc48b670549e1176e18bc1013045614bebbe1317"
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
"path": "harness-archive/checklist.md",
|
|
65
|
-
"sha256": "
|
|
65
|
+
"sha256": "5087988f03878439519da40b0a9bc630fec87c1b42b7749a4f0e43baf7c5fd5d"
|
|
66
66
|
},
|
|
67
67
|
{
|
|
68
68
|
"path": "harness-archive/reference.md",
|
|
@@ -74,11 +74,11 @@
|
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
76
|
"path": "harness-archive/SKILL.md",
|
|
77
|
-
"sha256": "
|
|
77
|
+
"sha256": "801fd56b66b6076514ff2ce28de10ddc11b4059347d6f36a2b65fff4daa84b09"
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
80
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
81
|
-
"sha256": "
|
|
81
|
+
"sha256": "a4d1a98de2cf6a6ab74ddba33b6529459f7f5b009f31c5a7021f6abe2c0afef0"
|
|
82
82
|
},
|
|
83
83
|
{
|
|
84
84
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
96
|
"path": "harness-codebase-map/SKILL.md",
|
|
97
|
-
"sha256": "
|
|
97
|
+
"sha256": "41f2c23fbf408aa36a9d3fb67c68687d005fb9c2ea71d1081f2c6b6fc866896f"
|
|
98
98
|
},
|
|
99
99
|
{
|
|
100
100
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
},
|
|
147
147
|
{
|
|
148
148
|
"path": "harness-knowledge-ingest/reference.md",
|
|
149
|
-
"sha256": "
|
|
149
|
+
"sha256": "aaff0f08ff72f17ad610d6db51e9482b4eaeda87962765f679b2893dff9762e7"
|
|
150
150
|
},
|
|
151
151
|
{
|
|
152
152
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge_mcp.py",
|
|
@@ -154,15 +154,15 @@
|
|
|
154
154
|
},
|
|
155
155
|
{
|
|
156
156
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
157
|
-
"sha256": "
|
|
157
|
+
"sha256": "1d7e6a59fcee223c6988f4993bc838a6bf435eae9d195afd015596298c3162b3"
|
|
158
158
|
},
|
|
159
159
|
{
|
|
160
160
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
161
|
-
"sha256": "
|
|
161
|
+
"sha256": "ba305462c4fe1f556099465ef70c2e39bc8048517cc976031ff4c50142d7f927"
|
|
162
162
|
},
|
|
163
163
|
{
|
|
164
164
|
"path": "harness-knowledge-query/SKILL.md",
|
|
165
|
-
"sha256": "
|
|
165
|
+
"sha256": "339b44b080dae5f609ff55b0752d5db7f441cd57cc7532550ad16b4a629c17ea"
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
168
|
"path": "harness-package/checklist.md",
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
},
|
|
175
175
|
{
|
|
176
176
|
"path": "harness-package/SKILL.md",
|
|
177
|
-
"sha256": "
|
|
177
|
+
"sha256": "95a4251c92f8476c7845cbdbe1018bdac82f46408b83dcb4139da290b82377b0"
|
|
178
178
|
},
|
|
179
179
|
{
|
|
180
180
|
"path": "harness-plan/checklist.md",
|
|
@@ -186,11 +186,11 @@
|
|
|
186
186
|
},
|
|
187
187
|
{
|
|
188
188
|
"path": "harness-plan/reference.md",
|
|
189
|
-
"sha256": "
|
|
189
|
+
"sha256": "9f35188a5c15bee784b920e0dee6c077edf05a6db68eaab3aedb4c16b0ce644f"
|
|
190
190
|
},
|
|
191
191
|
{
|
|
192
192
|
"path": "harness-plan/SKILL.md",
|
|
193
|
-
"sha256": "
|
|
193
|
+
"sha256": "df5555600f274cdb799918eb412b485a1c154a930f0ab3a5f144a9c04ffaaf68"
|
|
194
194
|
},
|
|
195
195
|
{
|
|
196
196
|
"path": "harness-review/checklist.md",
|
|
@@ -206,7 +206,7 @@
|
|
|
206
206
|
},
|
|
207
207
|
{
|
|
208
208
|
"path": "harness-review/SKILL.md",
|
|
209
|
-
"sha256": "
|
|
209
|
+
"sha256": "1666915066c94466734787611362bb7cb7dcdb701488b273e605b3ed77a3b144"
|
|
210
210
|
},
|
|
211
211
|
{
|
|
212
212
|
"path": "harness-run/checklist.md",
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
},
|
|
223
223
|
{
|
|
224
224
|
"path": "harness-run/SKILL.md",
|
|
225
|
-
"sha256": "
|
|
225
|
+
"sha256": "7999891b3db667e800f8e69020c054070a04d1f54e003910ebabec229866d195"
|
|
226
226
|
},
|
|
227
227
|
{
|
|
228
228
|
"path": "harness-submit/checklist.md",
|
|
@@ -234,15 +234,15 @@
|
|
|
234
234
|
},
|
|
235
235
|
{
|
|
236
236
|
"path": "harness-submit/SKILL.md",
|
|
237
|
-
"sha256": "
|
|
237
|
+
"sha256": "cfc7260ee431b277633890ea078a64c6745c7a44a78b3c745a5204087d555594"
|
|
238
238
|
},
|
|
239
239
|
{
|
|
240
240
|
"path": "harness-sync/reference.md",
|
|
241
|
-
"sha256": "
|
|
241
|
+
"sha256": "d841ffde8afd2739ed14c765e4d2dd40b4a799771e8256f0ac07d11e0c97f54d"
|
|
242
242
|
},
|
|
243
243
|
{
|
|
244
244
|
"path": "harness-sync/SKILL.md",
|
|
245
|
-
"sha256": "
|
|
245
|
+
"sha256": "0dc335a6b809891f388d458d1d4cfbfa60fdfb52116b659a9cc82186182ffca8"
|
|
246
246
|
},
|
|
247
247
|
{
|
|
248
248
|
"path": "harness-test/checklist.md",
|
|
@@ -266,11 +266,11 @@
|
|
|
266
266
|
},
|
|
267
267
|
{
|
|
268
268
|
"path": "harness-test/SKILL.md",
|
|
269
|
-
"sha256": "
|
|
269
|
+
"sha256": "6e98a7c3fbf279fbcab4964ae95c34611c0a73fd791fde9c9bac4fc9374c4087"
|
|
270
270
|
},
|
|
271
271
|
{
|
|
272
272
|
"path": "protocols/archive-report-protocol.md",
|
|
273
|
-
"sha256": "
|
|
273
|
+
"sha256": "4237892699de6e4a45cf9196733029d82bbbc67ba3b22751449842c49ea0a68e"
|
|
274
274
|
},
|
|
275
275
|
{
|
|
276
276
|
"path": "protocols/ci-layering-protocol.md",
|
|
@@ -286,7 +286,7 @@
|
|
|
286
286
|
},
|
|
287
287
|
{
|
|
288
288
|
"path": "protocols/ledger-protocol.md",
|
|
289
|
-
"sha256": "
|
|
289
|
+
"sha256": "279e37a76ccd59cf6d89891418677a527a2be6061325c8cd9c7039dd84956d97"
|
|
290
290
|
},
|
|
291
291
|
{
|
|
292
292
|
"path": "protocols/memory-closeout-protocol.md",
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
},
|
|
299
299
|
{
|
|
300
300
|
"path": "protocols/powershell-protocol.md",
|
|
301
|
-
"sha256": "
|
|
301
|
+
"sha256": "948d217c9d651f1f9060efc2f869cc4e0f7172b516283966d027154d683c3a89"
|
|
302
302
|
},
|
|
303
303
|
{
|
|
304
304
|
"path": "protocols/registry-governance-protocol.md",
|
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
},
|
|
315
315
|
{
|
|
316
316
|
"path": "protocols/state-layout-protocol.md",
|
|
317
|
-
"sha256": "
|
|
317
|
+
"sha256": "8f20ae2dac0244f39b7dad162bf58f3a502b23dea968dc97d7f2b4d82f4a4cba"
|
|
318
318
|
},
|
|
319
319
|
{
|
|
320
320
|
"path": "protocols/submit-protocol.md",
|
|
@@ -334,7 +334,7 @@
|
|
|
334
334
|
},
|
|
335
335
|
{
|
|
336
336
|
"path": "scripts/harness_archive.py",
|
|
337
|
-
"sha256": "
|
|
337
|
+
"sha256": "428273edc77d4c8ee5f7488abd7e0dbc8c6f82b3d8267d02e9e144fe06bb53e4"
|
|
338
338
|
},
|
|
339
339
|
{
|
|
340
340
|
"path": "scripts/harness_change.py",
|
|
@@ -354,7 +354,7 @@
|
|
|
354
354
|
},
|
|
355
355
|
{
|
|
356
356
|
"path": "scripts/harness_environment.py",
|
|
357
|
-
"sha256": "
|
|
357
|
+
"sha256": "beeef14f7b5f6a14e15ba518236c2cee40c63e4a61d057d046edab3a48e629a2"
|
|
358
358
|
},
|
|
359
359
|
{
|
|
360
360
|
"path": "scripts/harness_events.py",
|
|
@@ -362,7 +362,7 @@
|
|
|
362
362
|
},
|
|
363
363
|
{
|
|
364
364
|
"path": "scripts/harness_gate.py",
|
|
365
|
-
"sha256": "
|
|
365
|
+
"sha256": "404ad6fdf0f5508a22e12086a05f728df41074bbc2c8072f577d500a797c91c5"
|
|
366
366
|
},
|
|
367
367
|
{
|
|
368
368
|
"path": "scripts/harness_integration.py",
|
|
@@ -370,7 +370,7 @@
|
|
|
370
370
|
},
|
|
371
371
|
{
|
|
372
372
|
"path": "scripts/harness_ledger.py",
|
|
373
|
-
"sha256": "
|
|
373
|
+
"sha256": "7b93a3b2afdbb6262124e1e91f947f11f52006604af612c1acd708fd268f5921"
|
|
374
374
|
},
|
|
375
375
|
{
|
|
376
376
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
},
|
|
391
391
|
{
|
|
392
392
|
"path": "scripts/harness_plan_finalize.py",
|
|
393
|
-
"sha256": "
|
|
393
|
+
"sha256": "5d6a4b7e61f96ae72d320afba21719512eaacb12c6a11c609161bf333fbcf68a"
|
|
394
394
|
},
|
|
395
395
|
{
|
|
396
396
|
"path": "scripts/harness_preflight.py",
|
|
@@ -418,7 +418,7 @@
|
|
|
418
418
|
},
|
|
419
419
|
{
|
|
420
420
|
"path": "scripts/harness_service.py",
|
|
421
|
-
"sha256": "
|
|
421
|
+
"sha256": "56862b94d43314ad6515c37ad2945d256672cde66db3da1cbfbde8aebf94847c"
|
|
422
422
|
},
|
|
423
423
|
{
|
|
424
424
|
"path": "scripts/harness_state.py",
|
|
@@ -438,7 +438,7 @@
|
|
|
438
438
|
},
|
|
439
439
|
{
|
|
440
440
|
"path": "scripts/harness_test_runner.py",
|
|
441
|
-
"sha256": "
|
|
441
|
+
"sha256": "119a884794c0a417e6ffd128dfa601ac17ed5630b3db6b923d357875d3739c7e"
|
|
442
442
|
},
|
|
443
443
|
{
|
|
444
444
|
"path": "scripts/harness_verification.py",
|
|
@@ -6,32 +6,32 @@
|
|
|
6
6
|
"general",
|
|
7
7
|
"java"
|
|
8
8
|
],
|
|
9
|
-
"bundle_version": "0.2.
|
|
10
|
-
"content_sha256": "sha256:
|
|
11
|
-
"minimumCliVersion": "0.2.
|
|
9
|
+
"bundle_version": "0.2.31",
|
|
10
|
+
"content_sha256": "sha256:b4d7a31fa5a6b583bb3e51428c35421cd17e4dde2c3fd7113c4544c221fcdc30",
|
|
11
|
+
"minimumCliVersion": "0.2.44",
|
|
12
12
|
"capabilities": [
|
|
13
|
-
"sync@
|
|
13
|
+
"sync@2",
|
|
14
14
|
"rules-sync@1",
|
|
15
15
|
"rules-review@1",
|
|
16
|
-
"knowledge-sync@
|
|
16
|
+
"knowledge-sync@3",
|
|
17
17
|
"build-profile@3",
|
|
18
18
|
"verification-graph@1",
|
|
19
19
|
"external-convergence@1",
|
|
20
|
-
"codegraph-status@
|
|
20
|
+
"codegraph-status@2",
|
|
21
21
|
"doctor-capability@1",
|
|
22
22
|
"registry-governance@1"
|
|
23
23
|
],
|
|
24
24
|
"requires": {
|
|
25
|
-
"minimumCliVersion": "0.2.
|
|
25
|
+
"minimumCliVersion": "0.2.44",
|
|
26
26
|
"capabilities": [
|
|
27
|
-
"sync@
|
|
27
|
+
"sync@2",
|
|
28
28
|
"rules-sync@1",
|
|
29
29
|
"rules-review@1",
|
|
30
|
-
"knowledge-sync@
|
|
30
|
+
"knowledge-sync@3",
|
|
31
31
|
"build-profile@3",
|
|
32
32
|
"verification-graph@1",
|
|
33
33
|
"external-convergence@1",
|
|
34
|
-
"codegraph-status@
|
|
34
|
+
"codegraph-status@2",
|
|
35
35
|
"doctor-capability@1",
|
|
36
36
|
"registry-governance@1"
|
|
37
37
|
]
|