@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": "general",
|
|
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": "cf5a74d847533327f7c4840e932c1779eefeb11e7fa5720b1e7ee275eedc2d45"
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
28
|
"path": "CONTEXT.md",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
},
|
|
51
51
|
{
|
|
52
52
|
"path": "harness-archive/checklist.md",
|
|
53
|
-
"sha256": "
|
|
53
|
+
"sha256": "5087988f03878439519da40b0a9bc630fec87c1b42b7749a4f0e43baf7c5fd5d"
|
|
54
54
|
},
|
|
55
55
|
{
|
|
56
56
|
"path": "harness-archive/reference.md",
|
|
@@ -62,11 +62,11 @@
|
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
"path": "harness-archive/SKILL.md",
|
|
65
|
-
"sha256": "
|
|
65
|
+
"sha256": "d445fab2dda24d35a8e639cac993d907acddd17cc1f866fcea5b9f79a89371ad"
|
|
66
66
|
},
|
|
67
67
|
{
|
|
68
68
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
69
|
-
"sha256": "
|
|
69
|
+
"sha256": "a4d1a98de2cf6a6ab74ddba33b6529459f7f5b009f31c5a7021f6abe2c0afef0"
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
72
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
},
|
|
83
83
|
{
|
|
84
84
|
"path": "harness-codebase-map/SKILL.md",
|
|
85
|
-
"sha256": "
|
|
85
|
+
"sha256": "7ce6cab6d2a05b2a6b92cf3e7ad4d13f3447375aa46a4e9cfd50138a56a565c1"
|
|
86
86
|
},
|
|
87
87
|
{
|
|
88
88
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
},
|
|
135
135
|
{
|
|
136
136
|
"path": "harness-knowledge-ingest/reference.md",
|
|
137
|
-
"sha256": "
|
|
137
|
+
"sha256": "aaff0f08ff72f17ad610d6db51e9482b4eaeda87962765f679b2893dff9762e7"
|
|
138
138
|
},
|
|
139
139
|
{
|
|
140
140
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge_mcp.py",
|
|
@@ -142,15 +142,15 @@
|
|
|
142
142
|
},
|
|
143
143
|
{
|
|
144
144
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
145
|
-
"sha256": "
|
|
145
|
+
"sha256": "1d7e6a59fcee223c6988f4993bc838a6bf435eae9d195afd015596298c3162b3"
|
|
146
146
|
},
|
|
147
147
|
{
|
|
148
148
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
149
|
-
"sha256": "
|
|
149
|
+
"sha256": "81d75aebc5e6b82e905fc5c20a989ba45dccadc2e1edc6a466f49842569502a5"
|
|
150
150
|
},
|
|
151
151
|
{
|
|
152
152
|
"path": "harness-knowledge-query/SKILL.md",
|
|
153
|
-
"sha256": "
|
|
153
|
+
"sha256": "40f1bfa2f1657e0a7af25a77784476d9682eabfa4311f38c5faaa2d2d3ea5793"
|
|
154
154
|
},
|
|
155
155
|
{
|
|
156
156
|
"path": "harness-plan/checklist.md",
|
|
@@ -162,11 +162,11 @@
|
|
|
162
162
|
},
|
|
163
163
|
{
|
|
164
164
|
"path": "harness-plan/reference.md",
|
|
165
|
-
"sha256": "
|
|
165
|
+
"sha256": "9f35188a5c15bee784b920e0dee6c077edf05a6db68eaab3aedb4c16b0ce644f"
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
168
|
"path": "harness-plan/SKILL.md",
|
|
169
|
-
"sha256": "
|
|
169
|
+
"sha256": "90e6f538ff014b35316de5616b154963a2dd7cc18856b511fde6f5c4a23b886a"
|
|
170
170
|
},
|
|
171
171
|
{
|
|
172
172
|
"path": "harness-review/checklist.md",
|
|
@@ -182,7 +182,7 @@
|
|
|
182
182
|
},
|
|
183
183
|
{
|
|
184
184
|
"path": "harness-review/SKILL.md",
|
|
185
|
-
"sha256": "
|
|
185
|
+
"sha256": "20a6d9993fef4b5ae8b4ba456b06e001a1116c751db17e8ed79054562fb7abfb"
|
|
186
186
|
},
|
|
187
187
|
{
|
|
188
188
|
"path": "harness-run/checklist.md",
|
|
@@ -194,11 +194,11 @@
|
|
|
194
194
|
},
|
|
195
195
|
{
|
|
196
196
|
"path": "harness-run/reference.md",
|
|
197
|
-
"sha256": "
|
|
197
|
+
"sha256": "6b25813eb7d4ae78772e2f85fda4875698633538e562e8a18d31c773d1689a8a"
|
|
198
198
|
},
|
|
199
199
|
{
|
|
200
200
|
"path": "harness-run/SKILL.md",
|
|
201
|
-
"sha256": "
|
|
201
|
+
"sha256": "b2a45e99134297e9d9c6395c700727aa046a4d07932b61a2a8d2e597a20558fc"
|
|
202
202
|
},
|
|
203
203
|
{
|
|
204
204
|
"path": "harness-submit/checklist.md",
|
|
@@ -210,15 +210,15 @@
|
|
|
210
210
|
},
|
|
211
211
|
{
|
|
212
212
|
"path": "harness-submit/SKILL.md",
|
|
213
|
-
"sha256": "
|
|
213
|
+
"sha256": "0f5f407f13ca43fc32157e71229b53a1786b16028821bf47b48b81bca9ce5b7f"
|
|
214
214
|
},
|
|
215
215
|
{
|
|
216
216
|
"path": "harness-sync/reference.md",
|
|
217
|
-
"sha256": "
|
|
217
|
+
"sha256": "d841ffde8afd2739ed14c765e4d2dd40b4a799771e8256f0ac07d11e0c97f54d"
|
|
218
218
|
},
|
|
219
219
|
{
|
|
220
220
|
"path": "harness-sync/SKILL.md",
|
|
221
|
-
"sha256": "
|
|
221
|
+
"sha256": "413a93db18dd96141ebb49790a3fd2747058a3ac80522b770fcc91c76cd4f6fa"
|
|
222
222
|
},
|
|
223
223
|
{
|
|
224
224
|
"path": "harness-test/checklist.md",
|
|
@@ -242,11 +242,11 @@
|
|
|
242
242
|
},
|
|
243
243
|
{
|
|
244
244
|
"path": "harness-test/SKILL.md",
|
|
245
|
-
"sha256": "
|
|
245
|
+
"sha256": "cd4b2a34e551ea33d114f06548cb9212b79911821564491d6d4e8456d13abccb"
|
|
246
246
|
},
|
|
247
247
|
{
|
|
248
248
|
"path": "protocols/archive-report-protocol.md",
|
|
249
|
-
"sha256": "
|
|
249
|
+
"sha256": "4237892699de6e4a45cf9196733029d82bbbc67ba3b22751449842c49ea0a68e"
|
|
250
250
|
},
|
|
251
251
|
{
|
|
252
252
|
"path": "protocols/ci-layering-protocol.md",
|
|
@@ -262,7 +262,7 @@
|
|
|
262
262
|
},
|
|
263
263
|
{
|
|
264
264
|
"path": "protocols/ledger-protocol.md",
|
|
265
|
-
"sha256": "
|
|
265
|
+
"sha256": "279e37a76ccd59cf6d89891418677a527a2be6061325c8cd9c7039dd84956d97"
|
|
266
266
|
},
|
|
267
267
|
{
|
|
268
268
|
"path": "protocols/memory-closeout-protocol.md",
|
|
@@ -274,7 +274,7 @@
|
|
|
274
274
|
},
|
|
275
275
|
{
|
|
276
276
|
"path": "protocols/powershell-protocol.md",
|
|
277
|
-
"sha256": "
|
|
277
|
+
"sha256": "948d217c9d651f1f9060efc2f869cc4e0f7172b516283966d027154d683c3a89"
|
|
278
278
|
},
|
|
279
279
|
{
|
|
280
280
|
"path": "protocols/registry-governance-protocol.md",
|
|
@@ -290,7 +290,7 @@
|
|
|
290
290
|
},
|
|
291
291
|
{
|
|
292
292
|
"path": "protocols/state-layout-protocol.md",
|
|
293
|
-
"sha256": "
|
|
293
|
+
"sha256": "8f20ae2dac0244f39b7dad162bf58f3a502b23dea968dc97d7f2b4d82f4a4cba"
|
|
294
294
|
},
|
|
295
295
|
{
|
|
296
296
|
"path": "protocols/submit-protocol.md",
|
|
@@ -310,7 +310,7 @@
|
|
|
310
310
|
},
|
|
311
311
|
{
|
|
312
312
|
"path": "scripts/harness_archive.py",
|
|
313
|
-
"sha256": "
|
|
313
|
+
"sha256": "428273edc77d4c8ee5f7488abd7e0dbc8c6f82b3d8267d02e9e144fe06bb53e4"
|
|
314
314
|
},
|
|
315
315
|
{
|
|
316
316
|
"path": "scripts/harness_change.py",
|
|
@@ -330,7 +330,7 @@
|
|
|
330
330
|
},
|
|
331
331
|
{
|
|
332
332
|
"path": "scripts/harness_environment.py",
|
|
333
|
-
"sha256": "
|
|
333
|
+
"sha256": "beeef14f7b5f6a14e15ba518236c2cee40c63e4a61d057d046edab3a48e629a2"
|
|
334
334
|
},
|
|
335
335
|
{
|
|
336
336
|
"path": "scripts/harness_events.py",
|
|
@@ -338,7 +338,7 @@
|
|
|
338
338
|
},
|
|
339
339
|
{
|
|
340
340
|
"path": "scripts/harness_gate.py",
|
|
341
|
-
"sha256": "
|
|
341
|
+
"sha256": "404ad6fdf0f5508a22e12086a05f728df41074bbc2c8072f577d500a797c91c5"
|
|
342
342
|
},
|
|
343
343
|
{
|
|
344
344
|
"path": "scripts/harness_integration.py",
|
|
@@ -346,7 +346,7 @@
|
|
|
346
346
|
},
|
|
347
347
|
{
|
|
348
348
|
"path": "scripts/harness_ledger.py",
|
|
349
|
-
"sha256": "
|
|
349
|
+
"sha256": "7b93a3b2afdbb6262124e1e91f947f11f52006604af612c1acd708fd268f5921"
|
|
350
350
|
},
|
|
351
351
|
{
|
|
352
352
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -366,7 +366,7 @@
|
|
|
366
366
|
},
|
|
367
367
|
{
|
|
368
368
|
"path": "scripts/harness_plan_finalize.py",
|
|
369
|
-
"sha256": "
|
|
369
|
+
"sha256": "5d6a4b7e61f96ae72d320afba21719512eaacb12c6a11c609161bf333fbcf68a"
|
|
370
370
|
},
|
|
371
371
|
{
|
|
372
372
|
"path": "scripts/harness_preflight.py",
|
|
@@ -394,7 +394,7 @@
|
|
|
394
394
|
},
|
|
395
395
|
{
|
|
396
396
|
"path": "scripts/harness_service.py",
|
|
397
|
-
"sha256": "
|
|
397
|
+
"sha256": "56862b94d43314ad6515c37ad2945d256672cde66db3da1cbfbde8aebf94847c"
|
|
398
398
|
},
|
|
399
399
|
{
|
|
400
400
|
"path": "scripts/harness_state.py",
|
|
@@ -414,7 +414,7 @@
|
|
|
414
414
|
},
|
|
415
415
|
{
|
|
416
416
|
"path": "scripts/harness_test_runner.py",
|
|
417
|
-
"sha256": "
|
|
417
|
+
"sha256": "119a884794c0a417e6ffd128dfa601ac17ed5630b3db6b923d357875d3739c7e"
|
|
418
418
|
},
|
|
419
419
|
{
|
|
420
420
|
"path": "scripts/harness_verification.py",
|
|
@@ -2,18 +2,18 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "general",
|
|
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": "cb845a42d7f95ac4fa32fba84dd5b8ba9a76940bbe354e7edd81a14dae68a05c"
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
28
|
"path": "CONTEXT.md",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
},
|
|
51
51
|
{
|
|
52
52
|
"path": "harness-archive/checklist.md",
|
|
53
|
-
"sha256": "
|
|
53
|
+
"sha256": "5087988f03878439519da40b0a9bc630fec87c1b42b7749a4f0e43baf7c5fd5d"
|
|
54
54
|
},
|
|
55
55
|
{
|
|
56
56
|
"path": "harness-archive/reference.md",
|
|
@@ -62,11 +62,11 @@
|
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
"path": "harness-archive/SKILL.md",
|
|
65
|
-
"sha256": "
|
|
65
|
+
"sha256": "38122b7b6eef9ddfac7575489be08692d98017b7d75def4038ce8a7176ee4daa"
|
|
66
66
|
},
|
|
67
67
|
{
|
|
68
68
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
69
|
-
"sha256": "
|
|
69
|
+
"sha256": "a4d1a98de2cf6a6ab74ddba33b6529459f7f5b009f31c5a7021f6abe2c0afef0"
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
72
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
},
|
|
83
83
|
{
|
|
84
84
|
"path": "harness-codebase-map/SKILL.md",
|
|
85
|
-
"sha256": "
|
|
85
|
+
"sha256": "b0860552aa2f5de7068db20fb9be59a5e376ea55f1c587455f3e9ce72945ea11"
|
|
86
86
|
},
|
|
87
87
|
{
|
|
88
88
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
},
|
|
135
135
|
{
|
|
136
136
|
"path": "harness-knowledge-ingest/reference.md",
|
|
137
|
-
"sha256": "
|
|
137
|
+
"sha256": "aaff0f08ff72f17ad610d6db51e9482b4eaeda87962765f679b2893dff9762e7"
|
|
138
138
|
},
|
|
139
139
|
{
|
|
140
140
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge_mcp.py",
|
|
@@ -142,15 +142,15 @@
|
|
|
142
142
|
},
|
|
143
143
|
{
|
|
144
144
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
145
|
-
"sha256": "
|
|
145
|
+
"sha256": "1d7e6a59fcee223c6988f4993bc838a6bf435eae9d195afd015596298c3162b3"
|
|
146
146
|
},
|
|
147
147
|
{
|
|
148
148
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
149
|
-
"sha256": "
|
|
149
|
+
"sha256": "4f74cadc507f074df06cd8e316236529431db9375b1cd0785045f34d543298dd"
|
|
150
150
|
},
|
|
151
151
|
{
|
|
152
152
|
"path": "harness-knowledge-query/SKILL.md",
|
|
153
|
-
"sha256": "
|
|
153
|
+
"sha256": "e6e0bbea3dc6ebe4987bb6fad090b42cfda3fc9b9276a518f98ce94fc1e26f4f"
|
|
154
154
|
},
|
|
155
155
|
{
|
|
156
156
|
"path": "harness-plan/checklist.md",
|
|
@@ -162,11 +162,11 @@
|
|
|
162
162
|
},
|
|
163
163
|
{
|
|
164
164
|
"path": "harness-plan/reference.md",
|
|
165
|
-
"sha256": "
|
|
165
|
+
"sha256": "9f35188a5c15bee784b920e0dee6c077edf05a6db68eaab3aedb4c16b0ce644f"
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
168
|
"path": "harness-plan/SKILL.md",
|
|
169
|
-
"sha256": "
|
|
169
|
+
"sha256": "b3a6b8e8a6145391eb22c390d50f110ac705e0e57b9fd3dfe15d3ee6661c58bd"
|
|
170
170
|
},
|
|
171
171
|
{
|
|
172
172
|
"path": "harness-review/checklist.md",
|
|
@@ -182,7 +182,7 @@
|
|
|
182
182
|
},
|
|
183
183
|
{
|
|
184
184
|
"path": "harness-review/SKILL.md",
|
|
185
|
-
"sha256": "
|
|
185
|
+
"sha256": "602634abb1d35663eb2fdaf3b62af40d717eaab54d6267b6e1ac2910835b75ea"
|
|
186
186
|
},
|
|
187
187
|
{
|
|
188
188
|
"path": "harness-run/checklist.md",
|
|
@@ -194,11 +194,11 @@
|
|
|
194
194
|
},
|
|
195
195
|
{
|
|
196
196
|
"path": "harness-run/reference.md",
|
|
197
|
-
"sha256": "
|
|
197
|
+
"sha256": "6b25813eb7d4ae78772e2f85fda4875698633538e562e8a18d31c773d1689a8a"
|
|
198
198
|
},
|
|
199
199
|
{
|
|
200
200
|
"path": "harness-run/SKILL.md",
|
|
201
|
-
"sha256": "
|
|
201
|
+
"sha256": "67bbc0d6701fe54b589fa06b863562d71efb1a8a9f795c8d1ab1134312a7c698"
|
|
202
202
|
},
|
|
203
203
|
{
|
|
204
204
|
"path": "harness-submit/checklist.md",
|
|
@@ -210,15 +210,15 @@
|
|
|
210
210
|
},
|
|
211
211
|
{
|
|
212
212
|
"path": "harness-submit/SKILL.md",
|
|
213
|
-
"sha256": "
|
|
213
|
+
"sha256": "65eb7a87e179a848b6fa8570820f739bc8813cc4f60430396f33ad2a39c6f7d8"
|
|
214
214
|
},
|
|
215
215
|
{
|
|
216
216
|
"path": "harness-sync/reference.md",
|
|
217
|
-
"sha256": "
|
|
217
|
+
"sha256": "d841ffde8afd2739ed14c765e4d2dd40b4a799771e8256f0ac07d11e0c97f54d"
|
|
218
218
|
},
|
|
219
219
|
{
|
|
220
220
|
"path": "harness-sync/SKILL.md",
|
|
221
|
-
"sha256": "
|
|
221
|
+
"sha256": "c28b23b3a01b123c58b51c20907d7be402b5902bcac6372dad75352a0a47c01d"
|
|
222
222
|
},
|
|
223
223
|
{
|
|
224
224
|
"path": "harness-test/checklist.md",
|
|
@@ -242,11 +242,11 @@
|
|
|
242
242
|
},
|
|
243
243
|
{
|
|
244
244
|
"path": "harness-test/SKILL.md",
|
|
245
|
-
"sha256": "
|
|
245
|
+
"sha256": "97cb7c9231f60931db2f44dbb150755ee636cc3fe0d7d2eddf7ca92c3d87f2c6"
|
|
246
246
|
},
|
|
247
247
|
{
|
|
248
248
|
"path": "protocols/archive-report-protocol.md",
|
|
249
|
-
"sha256": "
|
|
249
|
+
"sha256": "4237892699de6e4a45cf9196733029d82bbbc67ba3b22751449842c49ea0a68e"
|
|
250
250
|
},
|
|
251
251
|
{
|
|
252
252
|
"path": "protocols/ci-layering-protocol.md",
|
|
@@ -262,7 +262,7 @@
|
|
|
262
262
|
},
|
|
263
263
|
{
|
|
264
264
|
"path": "protocols/ledger-protocol.md",
|
|
265
|
-
"sha256": "
|
|
265
|
+
"sha256": "279e37a76ccd59cf6d89891418677a527a2be6061325c8cd9c7039dd84956d97"
|
|
266
266
|
},
|
|
267
267
|
{
|
|
268
268
|
"path": "protocols/memory-closeout-protocol.md",
|
|
@@ -274,7 +274,7 @@
|
|
|
274
274
|
},
|
|
275
275
|
{
|
|
276
276
|
"path": "protocols/powershell-protocol.md",
|
|
277
|
-
"sha256": "
|
|
277
|
+
"sha256": "948d217c9d651f1f9060efc2f869cc4e0f7172b516283966d027154d683c3a89"
|
|
278
278
|
},
|
|
279
279
|
{
|
|
280
280
|
"path": "protocols/registry-governance-protocol.md",
|
|
@@ -290,7 +290,7 @@
|
|
|
290
290
|
},
|
|
291
291
|
{
|
|
292
292
|
"path": "protocols/state-layout-protocol.md",
|
|
293
|
-
"sha256": "
|
|
293
|
+
"sha256": "8f20ae2dac0244f39b7dad162bf58f3a502b23dea968dc97d7f2b4d82f4a4cba"
|
|
294
294
|
},
|
|
295
295
|
{
|
|
296
296
|
"path": "protocols/submit-protocol.md",
|
|
@@ -310,7 +310,7 @@
|
|
|
310
310
|
},
|
|
311
311
|
{
|
|
312
312
|
"path": "scripts/harness_archive.py",
|
|
313
|
-
"sha256": "
|
|
313
|
+
"sha256": "428273edc77d4c8ee5f7488abd7e0dbc8c6f82b3d8267d02e9e144fe06bb53e4"
|
|
314
314
|
},
|
|
315
315
|
{
|
|
316
316
|
"path": "scripts/harness_change.py",
|
|
@@ -330,7 +330,7 @@
|
|
|
330
330
|
},
|
|
331
331
|
{
|
|
332
332
|
"path": "scripts/harness_environment.py",
|
|
333
|
-
"sha256": "
|
|
333
|
+
"sha256": "beeef14f7b5f6a14e15ba518236c2cee40c63e4a61d057d046edab3a48e629a2"
|
|
334
334
|
},
|
|
335
335
|
{
|
|
336
336
|
"path": "scripts/harness_events.py",
|
|
@@ -338,7 +338,7 @@
|
|
|
338
338
|
},
|
|
339
339
|
{
|
|
340
340
|
"path": "scripts/harness_gate.py",
|
|
341
|
-
"sha256": "
|
|
341
|
+
"sha256": "404ad6fdf0f5508a22e12086a05f728df41074bbc2c8072f577d500a797c91c5"
|
|
342
342
|
},
|
|
343
343
|
{
|
|
344
344
|
"path": "scripts/harness_integration.py",
|
|
@@ -346,7 +346,7 @@
|
|
|
346
346
|
},
|
|
347
347
|
{
|
|
348
348
|
"path": "scripts/harness_ledger.py",
|
|
349
|
-
"sha256": "
|
|
349
|
+
"sha256": "7b93a3b2afdbb6262124e1e91f947f11f52006604af612c1acd708fd268f5921"
|
|
350
350
|
},
|
|
351
351
|
{
|
|
352
352
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -366,7 +366,7 @@
|
|
|
366
366
|
},
|
|
367
367
|
{
|
|
368
368
|
"path": "scripts/harness_plan_finalize.py",
|
|
369
|
-
"sha256": "
|
|
369
|
+
"sha256": "5d6a4b7e61f96ae72d320afba21719512eaacb12c6a11c609161bf333fbcf68a"
|
|
370
370
|
},
|
|
371
371
|
{
|
|
372
372
|
"path": "scripts/harness_preflight.py",
|
|
@@ -394,7 +394,7 @@
|
|
|
394
394
|
},
|
|
395
395
|
{
|
|
396
396
|
"path": "scripts/harness_service.py",
|
|
397
|
-
"sha256": "
|
|
397
|
+
"sha256": "56862b94d43314ad6515c37ad2945d256672cde66db3da1cbfbde8aebf94847c"
|
|
398
398
|
},
|
|
399
399
|
{
|
|
400
400
|
"path": "scripts/harness_state.py",
|
|
@@ -414,7 +414,7 @@
|
|
|
414
414
|
},
|
|
415
415
|
{
|
|
416
416
|
"path": "scripts/harness_test_runner.py",
|
|
417
|
-
"sha256": "
|
|
417
|
+
"sha256": "119a884794c0a417e6ffd128dfa601ac17ed5630b3db6b923d357875d3739c7e"
|
|
418
418
|
},
|
|
419
419
|
{
|
|
420
420
|
"path": "scripts/harness_verification.py",
|