@hunter-harness/workflow-harness 0.2.33 → 0.2.34
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/README.md +25 -25
- package/harness/bundles/general/claude-code/.harness-build.json +1 -1
- package/harness/bundles/general/claude-code/contracts/workflow-policy.json +1 -0
- package/harness/bundles/general/claude-code/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-archive/templates/render-summary.mjs +215 -106
- package/harness/bundles/general/claude-code/harness-archive/templates/summary-data-template.json +8 -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 +1 -1
- package/harness/bundles/general/claude-code/harness-knowledge-ingest/scripts/harness_knowledge.py +389 -117
- package/harness/bundles/general/claude-code/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-plan/SKILL.md +3 -3
- package/harness/bundles/general/claude-code/harness-review/SKILL.md +2 -2
- package/harness/bundles/general/claude-code/harness-run/SKILL.md +4 -4
- package/harness/bundles/general/claude-code/harness-submit/SKILL.md +2 -2
- package/harness/bundles/general/claude-code/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-test/SKILL.md +4 -4
- package/harness/bundles/general/claude-code/harness-test/checklist.md +1 -0
- package/harness/bundles/general/claude-code/harness-test/reference.md +2 -1
- package/harness/bundles/general/claude-code/protocols/ledger-protocol.md +2 -2
- package/harness/bundles/general/claude-code/scripts/harness_archive.py +404 -12
- package/harness/bundles/general/claude-code/scripts/harness_context.py +717 -0
- package/harness/bundles/general/claude-code/scripts/harness_gate.py +1 -0
- package/harness/bundles/general/claude-code/scripts/harness_ledger.py +77 -9
- package/harness/bundles/general/claude-code/scripts/harness_phase.py +1 -0
- package/harness/bundles/general/claude-code/scripts/harness_plan_aggregate.py +249 -0
- package/harness/bundles/general/claude-code/scripts/harness_profile.py +272 -15
- package/harness/bundles/general/claude-code/scripts/harness_report_model.py +420 -0
- package/harness/bundles/general/claude-code/scripts/harness_review.py +16 -1
- package/harness/bundles/general/claude-code/scripts/harness_verification.py +114 -0
- package/harness/bundles/general/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/general/codebuddy/contracts/workflow-policy.json +1 -0
- package/harness/bundles/general/codebuddy/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-archive/templates/render-summary.mjs +215 -106
- package/harness/bundles/general/codebuddy/harness-archive/templates/summary-data-template.json +8 -0
- package/harness/bundles/general/codebuddy/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge.py +389 -117
- package/harness/bundles/general/codebuddy/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-plan/SKILL.md +3 -3
- package/harness/bundles/general/codebuddy/harness-review/SKILL.md +2 -2
- package/harness/bundles/general/codebuddy/harness-run/SKILL.md +4 -4
- package/harness/bundles/general/codebuddy/harness-submit/SKILL.md +2 -2
- package/harness/bundles/general/codebuddy/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-test/SKILL.md +4 -4
- package/harness/bundles/general/codebuddy/harness-test/checklist.md +1 -0
- package/harness/bundles/general/codebuddy/harness-test/reference.md +2 -1
- package/harness/bundles/general/codebuddy/protocols/ledger-protocol.md +2 -2
- package/harness/bundles/general/codebuddy/scripts/harness_archive.py +404 -12
- package/harness/bundles/general/codebuddy/scripts/harness_context.py +717 -0
- package/harness/bundles/general/codebuddy/scripts/harness_gate.py +1 -0
- package/harness/bundles/general/codebuddy/scripts/harness_ledger.py +77 -9
- package/harness/bundles/general/codebuddy/scripts/harness_phase.py +1 -0
- package/harness/bundles/general/codebuddy/scripts/harness_plan_aggregate.py +249 -0
- package/harness/bundles/general/codebuddy/scripts/harness_profile.py +272 -15
- package/harness/bundles/general/codebuddy/scripts/harness_report_model.py +420 -0
- package/harness/bundles/general/codebuddy/scripts/harness_review.py +16 -1
- package/harness/bundles/general/codebuddy/scripts/harness_verification.py +114 -0
- package/harness/bundles/general/codex/.harness-build.json +1 -1
- package/harness/bundles/general/codex/contracts/workflow-policy.json +1 -0
- package/harness/bundles/general/codex/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-archive/templates/render-summary.mjs +215 -106
- package/harness/bundles/general/codex/harness-archive/templates/summary-data-template.json +8 -0
- package/harness/bundles/general/codex/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-knowledge-ingest/scripts/harness_knowledge.py +389 -117
- package/harness/bundles/general/codex/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-plan/SKILL.md +3 -3
- package/harness/bundles/general/codex/harness-review/SKILL.md +2 -2
- package/harness/bundles/general/codex/harness-run/SKILL.md +4 -4
- package/harness/bundles/general/codex/harness-submit/SKILL.md +2 -2
- package/harness/bundles/general/codex/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-test/SKILL.md +4 -4
- package/harness/bundles/general/codex/harness-test/checklist.md +1 -0
- package/harness/bundles/general/codex/harness-test/reference.md +2 -1
- package/harness/bundles/general/codex/protocols/ledger-protocol.md +2 -2
- package/harness/bundles/general/codex/scripts/harness_archive.py +404 -12
- package/harness/bundles/general/codex/scripts/harness_context.py +717 -0
- package/harness/bundles/general/codex/scripts/harness_gate.py +1 -0
- package/harness/bundles/general/codex/scripts/harness_ledger.py +77 -9
- package/harness/bundles/general/codex/scripts/harness_phase.py +1 -0
- package/harness/bundles/general/codex/scripts/harness_plan_aggregate.py +249 -0
- package/harness/bundles/general/codex/scripts/harness_profile.py +272 -15
- package/harness/bundles/general/codex/scripts/harness_report_model.py +420 -0
- package/harness/bundles/general/codex/scripts/harness_review.py +16 -1
- package/harness/bundles/general/codex/scripts/harness_verification.py +114 -0
- package/harness/bundles/general/cursor/.harness-build.json +1 -1
- package/harness/bundles/general/cursor/contracts/workflow-policy.json +1 -0
- package/harness/bundles/general/cursor/harness-archive/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-archive/templates/render-summary.mjs +215 -106
- package/harness/bundles/general/cursor/harness-archive/templates/summary-data-template.json +8 -0
- package/harness/bundles/general/cursor/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-knowledge-ingest/scripts/harness_knowledge.py +389 -117
- package/harness/bundles/general/cursor/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-plan/SKILL.md +3 -3
- package/harness/bundles/general/cursor/harness-review/SKILL.md +2 -2
- package/harness/bundles/general/cursor/harness-run/SKILL.md +4 -4
- package/harness/bundles/general/cursor/harness-submit/SKILL.md +2 -2
- package/harness/bundles/general/cursor/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-test/SKILL.md +4 -4
- package/harness/bundles/general/cursor/harness-test/checklist.md +1 -0
- package/harness/bundles/general/cursor/harness-test/reference.md +2 -1
- package/harness/bundles/general/cursor/protocols/ledger-protocol.md +2 -2
- package/harness/bundles/general/cursor/scripts/harness_archive.py +404 -12
- package/harness/bundles/general/cursor/scripts/harness_context.py +717 -0
- package/harness/bundles/general/cursor/scripts/harness_gate.py +1 -0
- package/harness/bundles/general/cursor/scripts/harness_ledger.py +77 -9
- package/harness/bundles/general/cursor/scripts/harness_phase.py +1 -0
- package/harness/bundles/general/cursor/scripts/harness_plan_aggregate.py +249 -0
- package/harness/bundles/general/cursor/scripts/harness_profile.py +272 -15
- package/harness/bundles/general/cursor/scripts/harness_report_model.py +420 -0
- package/harness/bundles/general/cursor/scripts/harness_review.py +16 -1
- package/harness/bundles/general/cursor/scripts/harness_verification.py +114 -0
- package/harness/bundles/java/claude-code/.harness-build.json +1 -1
- package/harness/bundles/java/claude-code/contracts/workflow-policy.json +1 -0
- 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/templates/render-summary.mjs +215 -106
- package/harness/bundles/java/claude-code/harness-archive/templates/summary-data-template.json +8 -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 +1 -1
- package/harness/bundles/java/claude-code/harness-knowledge-ingest/scripts/harness_knowledge.py +389 -117
- 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 +3 -3
- package/harness/bundles/java/claude-code/harness-review/SKILL.md +2 -2
- package/harness/bundles/java/claude-code/harness-run/SKILL.md +4 -4
- package/harness/bundles/java/claude-code/harness-submit/SKILL.md +2 -2
- package/harness/bundles/java/claude-code/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-test/SKILL.md +4 -4
- package/harness/bundles/java/claude-code/harness-test/checklist.md +1 -0
- package/harness/bundles/java/claude-code/harness-test/reference.md +2 -0
- package/harness/bundles/java/claude-code/protocols/ledger-protocol.md +2 -2
- package/harness/bundles/java/claude-code/scripts/harness_archive.py +404 -12
- package/harness/bundles/java/claude-code/scripts/harness_context.py +717 -0
- package/harness/bundles/java/claude-code/scripts/harness_gate.py +1 -0
- package/harness/bundles/java/claude-code/scripts/harness_ledger.py +77 -9
- package/harness/bundles/java/claude-code/scripts/harness_phase.py +1 -0
- package/harness/bundles/java/claude-code/scripts/harness_plan_aggregate.py +249 -0
- package/harness/bundles/java/claude-code/scripts/harness_profile.py +272 -15
- package/harness/bundles/java/claude-code/scripts/harness_report_model.py +420 -0
- package/harness/bundles/java/claude-code/scripts/harness_review.py +16 -1
- package/harness/bundles/java/claude-code/scripts/harness_verification.py +114 -0
- package/harness/bundles/java/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/java/codebuddy/contracts/workflow-policy.json +1 -0
- 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/templates/render-summary.mjs +215 -106
- package/harness/bundles/java/codebuddy/harness-archive/templates/summary-data-template.json +8 -0
- package/harness/bundles/java/codebuddy/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge.py +389 -117
- 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 +3 -3
- package/harness/bundles/java/codebuddy/harness-review/SKILL.md +2 -2
- package/harness/bundles/java/codebuddy/harness-run/SKILL.md +4 -4
- package/harness/bundles/java/codebuddy/harness-submit/SKILL.md +2 -2
- package/harness/bundles/java/codebuddy/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-test/SKILL.md +4 -4
- package/harness/bundles/java/codebuddy/harness-test/checklist.md +1 -0
- package/harness/bundles/java/codebuddy/harness-test/reference.md +2 -0
- package/harness/bundles/java/codebuddy/protocols/ledger-protocol.md +2 -2
- package/harness/bundles/java/codebuddy/scripts/harness_archive.py +404 -12
- package/harness/bundles/java/codebuddy/scripts/harness_context.py +717 -0
- package/harness/bundles/java/codebuddy/scripts/harness_gate.py +1 -0
- package/harness/bundles/java/codebuddy/scripts/harness_ledger.py +77 -9
- package/harness/bundles/java/codebuddy/scripts/harness_phase.py +1 -0
- package/harness/bundles/java/codebuddy/scripts/harness_plan_aggregate.py +249 -0
- package/harness/bundles/java/codebuddy/scripts/harness_profile.py +272 -15
- package/harness/bundles/java/codebuddy/scripts/harness_report_model.py +420 -0
- package/harness/bundles/java/codebuddy/scripts/harness_review.py +16 -1
- package/harness/bundles/java/codebuddy/scripts/harness_verification.py +114 -0
- package/harness/bundles/java/codex/.harness-build.json +1 -1
- package/harness/bundles/java/codex/contracts/workflow-policy.json +1 -0
- 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/templates/render-summary.mjs +215 -106
- package/harness/bundles/java/codex/harness-archive/templates/summary-data-template.json +8 -0
- package/harness/bundles/java/codex/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-knowledge-ingest/scripts/harness_knowledge.py +389 -117
- 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 +3 -3
- package/harness/bundles/java/codex/harness-review/SKILL.md +2 -2
- package/harness/bundles/java/codex/harness-run/SKILL.md +4 -4
- package/harness/bundles/java/codex/harness-submit/SKILL.md +2 -2
- package/harness/bundles/java/codex/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-test/SKILL.md +4 -4
- package/harness/bundles/java/codex/harness-test/checklist.md +1 -0
- package/harness/bundles/java/codex/harness-test/reference.md +2 -0
- package/harness/bundles/java/codex/protocols/ledger-protocol.md +2 -2
- package/harness/bundles/java/codex/scripts/harness_archive.py +404 -12
- package/harness/bundles/java/codex/scripts/harness_context.py +717 -0
- package/harness/bundles/java/codex/scripts/harness_gate.py +1 -0
- package/harness/bundles/java/codex/scripts/harness_ledger.py +77 -9
- package/harness/bundles/java/codex/scripts/harness_phase.py +1 -0
- package/harness/bundles/java/codex/scripts/harness_plan_aggregate.py +249 -0
- package/harness/bundles/java/codex/scripts/harness_profile.py +272 -15
- package/harness/bundles/java/codex/scripts/harness_report_model.py +420 -0
- package/harness/bundles/java/codex/scripts/harness_review.py +16 -1
- package/harness/bundles/java/codex/scripts/harness_verification.py +114 -0
- package/harness/bundles/java/cursor/.harness-build.json +1 -1
- package/harness/bundles/java/cursor/contracts/workflow-policy.json +1 -0
- 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/templates/render-summary.mjs +215 -106
- package/harness/bundles/java/cursor/harness-archive/templates/summary-data-template.json +8 -0
- package/harness/bundles/java/cursor/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-knowledge-ingest/scripts/harness_knowledge.py +389 -117
- 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 +3 -3
- package/harness/bundles/java/cursor/harness-review/SKILL.md +2 -2
- package/harness/bundles/java/cursor/harness-run/SKILL.md +4 -4
- package/harness/bundles/java/cursor/harness-submit/SKILL.md +2 -2
- package/harness/bundles/java/cursor/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-test/SKILL.md +4 -4
- package/harness/bundles/java/cursor/harness-test/checklist.md +1 -0
- package/harness/bundles/java/cursor/harness-test/reference.md +2 -0
- package/harness/bundles/java/cursor/protocols/ledger-protocol.md +2 -2
- package/harness/bundles/java/cursor/scripts/harness_archive.py +404 -12
- package/harness/bundles/java/cursor/scripts/harness_context.py +717 -0
- package/harness/bundles/java/cursor/scripts/harness_gate.py +1 -0
- package/harness/bundles/java/cursor/scripts/harness_ledger.py +77 -9
- package/harness/bundles/java/cursor/scripts/harness_phase.py +1 -0
- package/harness/bundles/java/cursor/scripts/harness_plan_aggregate.py +249 -0
- package/harness/bundles/java/cursor/scripts/harness_profile.py +272 -15
- package/harness/bundles/java/cursor/scripts/harness_report_model.py +420 -0
- package/harness/bundles/java/cursor/scripts/harness_review.py +16 -1
- package/harness/bundles/java/cursor/scripts/harness_verification.py +114 -0
- package/harness/manifests/general/claude-code.json +42 -26
- package/harness/manifests/general/codebuddy.json +42 -26
- package/harness/manifests/general/codex.json +42 -26
- package/harness/manifests/general/cursor.json +42 -26
- package/harness/manifests/java/claude-code.json +44 -28
- package/harness/manifests/java/codebuddy.json +44 -28
- package/harness/manifests/java/codex.json +44 -28
- package/harness/manifests/java/cursor.json +44 -28
- package/hunter-workflow-family.json +4 -4
- package/package.json +1 -1
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "general",
|
|
4
4
|
"adapter": "claude-code",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.26",
|
|
6
6
|
"requires": {
|
|
7
|
-
"minimumCliVersion": "0.2.
|
|
7
|
+
"minimumCliVersion": "0.2.36",
|
|
8
8
|
"capabilities": [
|
|
9
9
|
"sync@1",
|
|
10
10
|
"rules-sync@1",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"files": [
|
|
17
17
|
{
|
|
18
18
|
"path": ".harness-build.json",
|
|
19
|
-
"sha256": "
|
|
19
|
+
"sha256": "e16236e730fcce9858b84ea86b55805981fd412f5c382e715703974c5c77f620"
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
22
|
"path": "agents/harness-evaluator.md",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
42
|
"path": "contracts/workflow-policy.json",
|
|
43
|
-
"sha256": "
|
|
43
|
+
"sha256": "c979394cdecc6a1a8cfec4d319c8539c90d93e17eac6c66c388efdeec28446a5"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"path": "harness-archive/checklist.md",
|
|
@@ -56,15 +56,15 @@
|
|
|
56
56
|
},
|
|
57
57
|
{
|
|
58
58
|
"path": "harness-archive/SKILL.md",
|
|
59
|
-
"sha256": "
|
|
59
|
+
"sha256": "aaa9d9ec4353d4a0526026699dd68598b2378ea28d88ff9cf1df12b104b0066d"
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
62
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
63
|
-
"sha256": "
|
|
63
|
+
"sha256": "b437798e93e4bf1afc31305de9e448e4f292ed57513b059ffab59bc53f6dc347"
|
|
64
64
|
},
|
|
65
65
|
{
|
|
66
66
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
67
|
-
"sha256": "
|
|
67
|
+
"sha256": "4cc275012d59f22fae14b41c81b076b9865c3f0027addcea5e746dd303101dd7"
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
"path": "harness-codebase-map/checklist.md",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
78
|
"path": "harness-codebase-map/SKILL.md",
|
|
79
|
-
"sha256": "
|
|
79
|
+
"sha256": "b7c1cbebfc69ff38a3417dd0e5c7f8db67379a4a1b101c3906e91996052731b3"
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
82
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -136,15 +136,15 @@
|
|
|
136
136
|
},
|
|
137
137
|
{
|
|
138
138
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
139
|
-
"sha256": "
|
|
139
|
+
"sha256": "891e0d7b10ba2e0a608e818d5c4fef62117a808fe271af8b59731f889452e1b9"
|
|
140
140
|
},
|
|
141
141
|
{
|
|
142
142
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
143
|
-
"sha256": "
|
|
143
|
+
"sha256": "9e191548081c33b14318799ec1f718cbfea05a2b6ff18fa19d96394dd45c0d02"
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
146
|
"path": "harness-knowledge-query/SKILL.md",
|
|
147
|
-
"sha256": "
|
|
147
|
+
"sha256": "ea1fe5faec9012cd9dbada3db5517928dc6d6283687326dfd2134257543ddc07"
|
|
148
148
|
},
|
|
149
149
|
{
|
|
150
150
|
"path": "harness-plan/checklist.md",
|
|
@@ -160,7 +160,7 @@
|
|
|
160
160
|
},
|
|
161
161
|
{
|
|
162
162
|
"path": "harness-plan/SKILL.md",
|
|
163
|
-
"sha256": "
|
|
163
|
+
"sha256": "4caf6065d2d723d09c6ec71beee291748dd8f4b4327bfd754ed94abe85f92b1f"
|
|
164
164
|
},
|
|
165
165
|
{
|
|
166
166
|
"path": "harness-review/checklist.md",
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
},
|
|
177
177
|
{
|
|
178
178
|
"path": "harness-review/SKILL.md",
|
|
179
|
-
"sha256": "
|
|
179
|
+
"sha256": "a0ac46fb8ebdcff447bd24b6dbf6c5b343f4e7208353d9790a76167b77848c28"
|
|
180
180
|
},
|
|
181
181
|
{
|
|
182
182
|
"path": "harness-run/checklist.md",
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
},
|
|
193
193
|
{
|
|
194
194
|
"path": "harness-run/SKILL.md",
|
|
195
|
-
"sha256": "
|
|
195
|
+
"sha256": "e4db9aaf1986dc10746ac5a6a83a56291079aaacbb1d8a6eb929f11e1f3c78a0"
|
|
196
196
|
},
|
|
197
197
|
{
|
|
198
198
|
"path": "harness-submit/checklist.md",
|
|
@@ -204,7 +204,7 @@
|
|
|
204
204
|
},
|
|
205
205
|
{
|
|
206
206
|
"path": "harness-submit/SKILL.md",
|
|
207
|
-
"sha256": "
|
|
207
|
+
"sha256": "88828d9e90f226624be8ba4be0f03f72b5fc0b605d33ede4074d1672ed7b5b6b"
|
|
208
208
|
},
|
|
209
209
|
{
|
|
210
210
|
"path": "harness-sync/reference.md",
|
|
@@ -212,11 +212,11 @@
|
|
|
212
212
|
},
|
|
213
213
|
{
|
|
214
214
|
"path": "harness-sync/SKILL.md",
|
|
215
|
-
"sha256": "
|
|
215
|
+
"sha256": "e723586704a27fd5ac6a71d3c7c83f276ae98179864ef8414cc9a8f23f4c737b"
|
|
216
216
|
},
|
|
217
217
|
{
|
|
218
218
|
"path": "harness-test/checklist.md",
|
|
219
|
-
"sha256": "
|
|
219
|
+
"sha256": "bbe77038ac6fcd0b28e60e148691d1fde8b4338f6be6256d0b3e40331dfbc27e"
|
|
220
220
|
},
|
|
221
221
|
{
|
|
222
222
|
"path": "harness-test/pitfalls-java.md",
|
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
},
|
|
229
229
|
{
|
|
230
230
|
"path": "harness-test/reference.md",
|
|
231
|
-
"sha256": "
|
|
231
|
+
"sha256": "77d85dca80335be4f71824450464b2810a7192eb79f16c6d2e1233ee5e6e5e9a"
|
|
232
232
|
},
|
|
233
233
|
{
|
|
234
234
|
"path": "harness-test/scripts/runtime-helpers.mjs",
|
|
@@ -236,7 +236,7 @@
|
|
|
236
236
|
},
|
|
237
237
|
{
|
|
238
238
|
"path": "harness-test/SKILL.md",
|
|
239
|
-
"sha256": "
|
|
239
|
+
"sha256": "46b055cd48c9849066b53deeaa4eccda84fba7a20f323ce8bbbf5a534b22488d"
|
|
240
240
|
},
|
|
241
241
|
{
|
|
242
242
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
},
|
|
249
249
|
{
|
|
250
250
|
"path": "protocols/ledger-protocol.md",
|
|
251
|
-
"sha256": "
|
|
251
|
+
"sha256": "56608039fd1babd469cb36b0f1c3d0871df460ddc36ef11c80d96218979f5217"
|
|
252
252
|
},
|
|
253
253
|
{
|
|
254
254
|
"path": "protocols/model-routing-protocol.md",
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
},
|
|
285
285
|
{
|
|
286
286
|
"path": "scripts/harness_archive.py",
|
|
287
|
-
"sha256": "
|
|
287
|
+
"sha256": "7f1f03bdc35f1d2bebb895670fdf563b9ffa0fe4727ae45a68abba84e7e50ad7"
|
|
288
288
|
},
|
|
289
289
|
{
|
|
290
290
|
"path": "scripts/harness_change.py",
|
|
@@ -294,6 +294,10 @@
|
|
|
294
294
|
"path": "scripts/harness_check_gate.py",
|
|
295
295
|
"sha256": "9cae8f7fc2ff4519b0c27566b9d5aaa81bd8921153ec1f9534cb5d08af3a21b3"
|
|
296
296
|
},
|
|
297
|
+
{
|
|
298
|
+
"path": "scripts/harness_context.py",
|
|
299
|
+
"sha256": "1c4b5a2ff77abd76d9b46bb04dda82a661613f030a1ada9e70bb14e6185393c3"
|
|
300
|
+
},
|
|
297
301
|
{
|
|
298
302
|
"path": "scripts/harness_deploy.py",
|
|
299
303
|
"sha256": "c10045fc86f2ac87d6ba60b5bcd31e9698d306a2d94eccfcff4a623cf817bf5c"
|
|
@@ -308,7 +312,7 @@
|
|
|
308
312
|
},
|
|
309
313
|
{
|
|
310
314
|
"path": "scripts/harness_gate.py",
|
|
311
|
-
"sha256": "
|
|
315
|
+
"sha256": "37bdb2eaaac2652fe5cdf142572e99379b1b17630f365a01b6e3e71333055a8a"
|
|
312
316
|
},
|
|
313
317
|
{
|
|
314
318
|
"path": "scripts/harness_integration.py",
|
|
@@ -316,7 +320,7 @@
|
|
|
316
320
|
},
|
|
317
321
|
{
|
|
318
322
|
"path": "scripts/harness_ledger.py",
|
|
319
|
-
"sha256": "
|
|
323
|
+
"sha256": "85b96dbc3d750443f989bff994d894d0a7b9dccd2e53401b54481782e1ea6ae5"
|
|
320
324
|
},
|
|
321
325
|
{
|
|
322
326
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -328,7 +332,11 @@
|
|
|
328
332
|
},
|
|
329
333
|
{
|
|
330
334
|
"path": "scripts/harness_phase.py",
|
|
331
|
-
"sha256": "
|
|
335
|
+
"sha256": "b1e53c1f7becf198195cb9a4bcba835767aed82420450e1842cc07d89febf532"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"path": "scripts/harness_plan_aggregate.py",
|
|
339
|
+
"sha256": "9a43b6d44e4dbdf9f505ac6631b0ae19b48d6600e4e3aa4232c2eff783482601"
|
|
332
340
|
},
|
|
333
341
|
{
|
|
334
342
|
"path": "scripts/harness_plan_finalize.py",
|
|
@@ -340,7 +348,11 @@
|
|
|
340
348
|
},
|
|
341
349
|
{
|
|
342
350
|
"path": "scripts/harness_profile.py",
|
|
343
|
-
"sha256": "
|
|
351
|
+
"sha256": "6d52450b57d0a6eb21ab8f6116e5e3d14bd5cd6c668f518c895bf0f723e62826"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"path": "scripts/harness_report_model.py",
|
|
355
|
+
"sha256": "fd30968d429aed3a82bddd3203ccfe89807c00fa2d67787b625c67182a289feb"
|
|
344
356
|
},
|
|
345
357
|
{
|
|
346
358
|
"path": "scripts/harness_retry.py",
|
|
@@ -348,7 +360,7 @@
|
|
|
348
360
|
},
|
|
349
361
|
{
|
|
350
362
|
"path": "scripts/harness_review.py",
|
|
351
|
-
"sha256": "
|
|
363
|
+
"sha256": "f5b9170f5c3b35c87bd340e8368cd08d8940176a67fb11666518107ba3626e86"
|
|
352
364
|
},
|
|
353
365
|
{
|
|
354
366
|
"path": "scripts/harness_runtime.py",
|
|
@@ -378,6 +390,10 @@
|
|
|
378
390
|
"path": "scripts/harness_test_runner.py",
|
|
379
391
|
"sha256": "ba8b8b5628728593a1bcdab464b80b2a90536a909c0ce7df6a832f8ab16f08d1"
|
|
380
392
|
},
|
|
393
|
+
{
|
|
394
|
+
"path": "scripts/harness_verification.py",
|
|
395
|
+
"sha256": "a54a257d6c068f4e15f0174a841845cab61af02c4abc35503f99d7fdd206c4f7"
|
|
396
|
+
},
|
|
381
397
|
{
|
|
382
398
|
"path": "scripts/harness_workflow_policy.py",
|
|
383
399
|
"sha256": "3c05971bccef2422217f88bf0d0a2e346248e46964474f20d383b95acec185da"
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "general",
|
|
4
4
|
"adapter": "codebuddy",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.26",
|
|
6
6
|
"requires": {
|
|
7
|
-
"minimumCliVersion": "0.2.
|
|
7
|
+
"minimumCliVersion": "0.2.36",
|
|
8
8
|
"capabilities": [
|
|
9
9
|
"sync@1",
|
|
10
10
|
"rules-sync@1",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"files": [
|
|
17
17
|
{
|
|
18
18
|
"path": ".harness-build.json",
|
|
19
|
-
"sha256": "
|
|
19
|
+
"sha256": "8fbe6ee09077bb9e7c9edceaaf40c075e638837d5630ebba8057bc66fbf4838d"
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
22
|
"path": "agents/harness-evaluator.md",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
42
|
"path": "contracts/workflow-policy.json",
|
|
43
|
-
"sha256": "
|
|
43
|
+
"sha256": "c979394cdecc6a1a8cfec4d319c8539c90d93e17eac6c66c388efdeec28446a5"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"path": "harness-archive/checklist.md",
|
|
@@ -56,15 +56,15 @@
|
|
|
56
56
|
},
|
|
57
57
|
{
|
|
58
58
|
"path": "harness-archive/SKILL.md",
|
|
59
|
-
"sha256": "
|
|
59
|
+
"sha256": "5af5a30cd1084e4cc23a26c09789ef02c1a078530d8b80623b9199fbe60d5d7d"
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
62
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
63
|
-
"sha256": "
|
|
63
|
+
"sha256": "b437798e93e4bf1afc31305de9e448e4f292ed57513b059ffab59bc53f6dc347"
|
|
64
64
|
},
|
|
65
65
|
{
|
|
66
66
|
"path": "harness-archive/templates/summary-data-template.json",
|
|
67
|
-
"sha256": "
|
|
67
|
+
"sha256": "4cc275012d59f22fae14b41c81b076b9865c3f0027addcea5e746dd303101dd7"
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
"path": "harness-codebase-map/checklist.md",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
78
|
"path": "harness-codebase-map/SKILL.md",
|
|
79
|
-
"sha256": "
|
|
79
|
+
"sha256": "74d5c186b5b35b8b1302e064872ab811492c9161cc4deee81b39d29b2b262b91"
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
82
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -136,15 +136,15 @@
|
|
|
136
136
|
},
|
|
137
137
|
{
|
|
138
138
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
139
|
-
"sha256": "
|
|
139
|
+
"sha256": "891e0d7b10ba2e0a608e818d5c4fef62117a808fe271af8b59731f889452e1b9"
|
|
140
140
|
},
|
|
141
141
|
{
|
|
142
142
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
143
|
-
"sha256": "
|
|
143
|
+
"sha256": "85923964c4ec466a94bb7344c637dea41456894ca85ae1d0c398a85e0cfeb3dc"
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
146
|
"path": "harness-knowledge-query/SKILL.md",
|
|
147
|
-
"sha256": "
|
|
147
|
+
"sha256": "835ca89d7898c23c054c579b6a4b469c4799f5a672109a69900dc9cf89e6bc4b"
|
|
148
148
|
},
|
|
149
149
|
{
|
|
150
150
|
"path": "harness-plan/checklist.md",
|
|
@@ -160,7 +160,7 @@
|
|
|
160
160
|
},
|
|
161
161
|
{
|
|
162
162
|
"path": "harness-plan/SKILL.md",
|
|
163
|
-
"sha256": "
|
|
163
|
+
"sha256": "44201c0b54e63e60f6b91afccb84cbf2b4ae47f8fb4f2792b9f3faf13b7785f4"
|
|
164
164
|
},
|
|
165
165
|
{
|
|
166
166
|
"path": "harness-review/checklist.md",
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
},
|
|
177
177
|
{
|
|
178
178
|
"path": "harness-review/SKILL.md",
|
|
179
|
-
"sha256": "
|
|
179
|
+
"sha256": "387477f5d524a674533777925407ea40fd5089bbed8bf89245bd448294316574"
|
|
180
180
|
},
|
|
181
181
|
{
|
|
182
182
|
"path": "harness-run/checklist.md",
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
},
|
|
193
193
|
{
|
|
194
194
|
"path": "harness-run/SKILL.md",
|
|
195
|
-
"sha256": "
|
|
195
|
+
"sha256": "4c7d80a0dd96c0a847a219996ea3a0a4e43b26e7dba14045ec5a1e45c3710d83"
|
|
196
196
|
},
|
|
197
197
|
{
|
|
198
198
|
"path": "harness-submit/checklist.md",
|
|
@@ -204,7 +204,7 @@
|
|
|
204
204
|
},
|
|
205
205
|
{
|
|
206
206
|
"path": "harness-submit/SKILL.md",
|
|
207
|
-
"sha256": "
|
|
207
|
+
"sha256": "a5b11a67fe1955dc0e91726ac30682469431c297f9049e25d5c681bbf908e3a7"
|
|
208
208
|
},
|
|
209
209
|
{
|
|
210
210
|
"path": "harness-sync/reference.md",
|
|
@@ -212,11 +212,11 @@
|
|
|
212
212
|
},
|
|
213
213
|
{
|
|
214
214
|
"path": "harness-sync/SKILL.md",
|
|
215
|
-
"sha256": "
|
|
215
|
+
"sha256": "58cddcc731bb1900e441ed1147240999f00208d97e2fb06ffc8d5f7397be33f4"
|
|
216
216
|
},
|
|
217
217
|
{
|
|
218
218
|
"path": "harness-test/checklist.md",
|
|
219
|
-
"sha256": "
|
|
219
|
+
"sha256": "bbe77038ac6fcd0b28e60e148691d1fde8b4338f6be6256d0b3e40331dfbc27e"
|
|
220
220
|
},
|
|
221
221
|
{
|
|
222
222
|
"path": "harness-test/pitfalls-java.md",
|
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
},
|
|
229
229
|
{
|
|
230
230
|
"path": "harness-test/reference.md",
|
|
231
|
-
"sha256": "
|
|
231
|
+
"sha256": "77d85dca80335be4f71824450464b2810a7192eb79f16c6d2e1233ee5e6e5e9a"
|
|
232
232
|
},
|
|
233
233
|
{
|
|
234
234
|
"path": "harness-test/scripts/runtime-helpers.mjs",
|
|
@@ -236,7 +236,7 @@
|
|
|
236
236
|
},
|
|
237
237
|
{
|
|
238
238
|
"path": "harness-test/SKILL.md",
|
|
239
|
-
"sha256": "
|
|
239
|
+
"sha256": "387fbbad8f90a416a18c538caba4308009c5d498a8fab506670984e48ca27775"
|
|
240
240
|
},
|
|
241
241
|
{
|
|
242
242
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
},
|
|
249
249
|
{
|
|
250
250
|
"path": "protocols/ledger-protocol.md",
|
|
251
|
-
"sha256": "
|
|
251
|
+
"sha256": "56608039fd1babd469cb36b0f1c3d0871df460ddc36ef11c80d96218979f5217"
|
|
252
252
|
},
|
|
253
253
|
{
|
|
254
254
|
"path": "protocols/model-routing-protocol.md",
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
},
|
|
285
285
|
{
|
|
286
286
|
"path": "scripts/harness_archive.py",
|
|
287
|
-
"sha256": "
|
|
287
|
+
"sha256": "7f1f03bdc35f1d2bebb895670fdf563b9ffa0fe4727ae45a68abba84e7e50ad7"
|
|
288
288
|
},
|
|
289
289
|
{
|
|
290
290
|
"path": "scripts/harness_change.py",
|
|
@@ -294,6 +294,10 @@
|
|
|
294
294
|
"path": "scripts/harness_check_gate.py",
|
|
295
295
|
"sha256": "9cae8f7fc2ff4519b0c27566b9d5aaa81bd8921153ec1f9534cb5d08af3a21b3"
|
|
296
296
|
},
|
|
297
|
+
{
|
|
298
|
+
"path": "scripts/harness_context.py",
|
|
299
|
+
"sha256": "1c4b5a2ff77abd76d9b46bb04dda82a661613f030a1ada9e70bb14e6185393c3"
|
|
300
|
+
},
|
|
297
301
|
{
|
|
298
302
|
"path": "scripts/harness_deploy.py",
|
|
299
303
|
"sha256": "c10045fc86f2ac87d6ba60b5bcd31e9698d306a2d94eccfcff4a623cf817bf5c"
|
|
@@ -308,7 +312,7 @@
|
|
|
308
312
|
},
|
|
309
313
|
{
|
|
310
314
|
"path": "scripts/harness_gate.py",
|
|
311
|
-
"sha256": "
|
|
315
|
+
"sha256": "37bdb2eaaac2652fe5cdf142572e99379b1b17630f365a01b6e3e71333055a8a"
|
|
312
316
|
},
|
|
313
317
|
{
|
|
314
318
|
"path": "scripts/harness_integration.py",
|
|
@@ -316,7 +320,7 @@
|
|
|
316
320
|
},
|
|
317
321
|
{
|
|
318
322
|
"path": "scripts/harness_ledger.py",
|
|
319
|
-
"sha256": "
|
|
323
|
+
"sha256": "85b96dbc3d750443f989bff994d894d0a7b9dccd2e53401b54481782e1ea6ae5"
|
|
320
324
|
},
|
|
321
325
|
{
|
|
322
326
|
"path": "scripts/harness_migration_head.py",
|
|
@@ -328,7 +332,11 @@
|
|
|
328
332
|
},
|
|
329
333
|
{
|
|
330
334
|
"path": "scripts/harness_phase.py",
|
|
331
|
-
"sha256": "
|
|
335
|
+
"sha256": "b1e53c1f7becf198195cb9a4bcba835767aed82420450e1842cc07d89febf532"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"path": "scripts/harness_plan_aggregate.py",
|
|
339
|
+
"sha256": "9a43b6d44e4dbdf9f505ac6631b0ae19b48d6600e4e3aa4232c2eff783482601"
|
|
332
340
|
},
|
|
333
341
|
{
|
|
334
342
|
"path": "scripts/harness_plan_finalize.py",
|
|
@@ -340,7 +348,11 @@
|
|
|
340
348
|
},
|
|
341
349
|
{
|
|
342
350
|
"path": "scripts/harness_profile.py",
|
|
343
|
-
"sha256": "
|
|
351
|
+
"sha256": "6d52450b57d0a6eb21ab8f6116e5e3d14bd5cd6c668f518c895bf0f723e62826"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"path": "scripts/harness_report_model.py",
|
|
355
|
+
"sha256": "fd30968d429aed3a82bddd3203ccfe89807c00fa2d67787b625c67182a289feb"
|
|
344
356
|
},
|
|
345
357
|
{
|
|
346
358
|
"path": "scripts/harness_retry.py",
|
|
@@ -348,7 +360,7 @@
|
|
|
348
360
|
},
|
|
349
361
|
{
|
|
350
362
|
"path": "scripts/harness_review.py",
|
|
351
|
-
"sha256": "
|
|
363
|
+
"sha256": "f5b9170f5c3b35c87bd340e8368cd08d8940176a67fb11666518107ba3626e86"
|
|
352
364
|
},
|
|
353
365
|
{
|
|
354
366
|
"path": "scripts/harness_runtime.py",
|
|
@@ -378,6 +390,10 @@
|
|
|
378
390
|
"path": "scripts/harness_test_runner.py",
|
|
379
391
|
"sha256": "ba8b8b5628728593a1bcdab464b80b2a90536a909c0ce7df6a832f8ab16f08d1"
|
|
380
392
|
},
|
|
393
|
+
{
|
|
394
|
+
"path": "scripts/harness_verification.py",
|
|
395
|
+
"sha256": "a54a257d6c068f4e15f0174a841845cab61af02c4abc35503f99d7fdd206c4f7"
|
|
396
|
+
},
|
|
381
397
|
{
|
|
382
398
|
"path": "scripts/harness_workflow_policy.py",
|
|
383
399
|
"sha256": "3c05971bccef2422217f88bf0d0a2e346248e46964474f20d383b95acec185da"
|