@hunter-harness/workflow-harness 0.2.10 → 0.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/harness/bundles/general/claude-code/.harness-build.json +1 -1
- package/harness/bundles/general/claude-code/contracts/ci-metrics.schema.json +36 -0
- package/harness/bundles/general/claude-code/contracts/workflow-policy.json +30 -0
- package/harness/bundles/general/claude-code/harness-archive/SKILL.md +1 -1
- 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 +24 -2
- package/harness/bundles/general/claude-code/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-plan/SKILL.md +4 -4
- package/harness/bundles/general/claude-code/harness-plan/checklist.md +6 -0
- package/harness/bundles/general/claude-code/harness-plan/reference.md +7 -2
- 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/checklist.md +3 -2
- package/harness/bundles/general/claude-code/harness-run/reference.md +6 -4
- package/harness/bundles/general/claude-code/harness-submit/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-test/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/scripts/harness_archive.py +282 -120
- package/harness/bundles/general/claude-code/scripts/harness_events.py +400 -24
- package/harness/bundles/general/claude-code/scripts/harness_gate.py +585 -21
- package/harness/bundles/general/claude-code/scripts/harness_integration.py +403 -18
- package/harness/bundles/general/claude-code/scripts/harness_ledger.py +225 -29
- package/harness/bundles/general/claude-code/scripts/harness_phase.py +926 -0
- package/harness/bundles/general/claude-code/scripts/harness_plan_finalize.py +361 -0
- package/harness/bundles/general/claude-code/scripts/harness_profile.py +50 -0
- package/harness/bundles/general/claude-code/scripts/harness_runtime.py +248 -0
- package/harness/bundles/general/claude-code/scripts/harness_state.py +15 -2
- package/harness/bundles/general/claude-code/scripts/harness_test_guard.py +188 -0
- package/harness/bundles/general/claude-code/scripts/harness_workflow_policy.py +19 -0
- package/harness/bundles/general/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/general/codebuddy/contracts/ci-metrics.schema.json +36 -0
- package/harness/bundles/general/codebuddy/contracts/workflow-policy.json +30 -0
- package/harness/bundles/general/codebuddy/harness-archive/SKILL.md +1 -1
- 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 +24 -2
- package/harness/bundles/general/codebuddy/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-plan/SKILL.md +4 -4
- package/harness/bundles/general/codebuddy/harness-plan/checklist.md +6 -0
- package/harness/bundles/general/codebuddy/harness-plan/reference.md +7 -2
- 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/checklist.md +3 -2
- package/harness/bundles/general/codebuddy/harness-run/reference.md +6 -4
- package/harness/bundles/general/codebuddy/harness-submit/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-test/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/scripts/harness_archive.py +282 -120
- package/harness/bundles/general/codebuddy/scripts/harness_events.py +400 -24
- package/harness/bundles/general/codebuddy/scripts/harness_gate.py +585 -21
- package/harness/bundles/general/codebuddy/scripts/harness_integration.py +403 -18
- package/harness/bundles/general/codebuddy/scripts/harness_ledger.py +225 -29
- package/harness/bundles/general/codebuddy/scripts/harness_phase.py +926 -0
- package/harness/bundles/general/codebuddy/scripts/harness_plan_finalize.py +361 -0
- package/harness/bundles/general/codebuddy/scripts/harness_profile.py +50 -0
- package/harness/bundles/general/codebuddy/scripts/harness_runtime.py +248 -0
- package/harness/bundles/general/codebuddy/scripts/harness_state.py +15 -2
- package/harness/bundles/general/codebuddy/scripts/harness_test_guard.py +188 -0
- package/harness/bundles/general/codebuddy/scripts/harness_workflow_policy.py +19 -0
- package/harness/bundles/general/codex/.harness-build.json +1 -1
- package/harness/bundles/general/codex/contracts/ci-metrics.schema.json +36 -0
- package/harness/bundles/general/codex/contracts/workflow-policy.json +30 -0
- package/harness/bundles/general/codex/harness-archive/SKILL.md +1 -1
- 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 +24 -2
- package/harness/bundles/general/codex/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-plan/SKILL.md +4 -4
- package/harness/bundles/general/codex/harness-plan/checklist.md +6 -0
- package/harness/bundles/general/codex/harness-plan/reference.md +7 -2
- 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/checklist.md +3 -2
- package/harness/bundles/general/codex/harness-run/reference.md +6 -4
- package/harness/bundles/general/codex/harness-submit/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-test/SKILL.md +1 -1
- package/harness/bundles/general/codex/scripts/harness_archive.py +282 -120
- package/harness/bundles/general/codex/scripts/harness_events.py +400 -24
- package/harness/bundles/general/codex/scripts/harness_gate.py +585 -21
- package/harness/bundles/general/codex/scripts/harness_integration.py +403 -18
- package/harness/bundles/general/codex/scripts/harness_ledger.py +225 -29
- package/harness/bundles/general/codex/scripts/harness_phase.py +926 -0
- package/harness/bundles/general/codex/scripts/harness_plan_finalize.py +361 -0
- package/harness/bundles/general/codex/scripts/harness_profile.py +50 -0
- package/harness/bundles/general/codex/scripts/harness_runtime.py +248 -0
- package/harness/bundles/general/codex/scripts/harness_state.py +15 -2
- package/harness/bundles/general/codex/scripts/harness_test_guard.py +188 -0
- package/harness/bundles/general/codex/scripts/harness_workflow_policy.py +19 -0
- package/harness/bundles/general/cursor/.harness-build.json +1 -1
- package/harness/bundles/general/cursor/contracts/ci-metrics.schema.json +36 -0
- package/harness/bundles/general/cursor/contracts/workflow-policy.json +30 -0
- package/harness/bundles/general/cursor/harness-archive/SKILL.md +1 -1
- 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 +24 -2
- package/harness/bundles/general/cursor/harness-knowledge-query/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-plan/SKILL.md +4 -4
- package/harness/bundles/general/cursor/harness-plan/checklist.md +6 -0
- package/harness/bundles/general/cursor/harness-plan/reference.md +7 -2
- 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/checklist.md +3 -2
- package/harness/bundles/general/cursor/harness-run/reference.md +6 -4
- package/harness/bundles/general/cursor/harness-submit/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-test/SKILL.md +1 -1
- package/harness/bundles/general/cursor/scripts/harness_archive.py +282 -120
- package/harness/bundles/general/cursor/scripts/harness_events.py +400 -24
- package/harness/bundles/general/cursor/scripts/harness_gate.py +585 -21
- package/harness/bundles/general/cursor/scripts/harness_integration.py +403 -18
- package/harness/bundles/general/cursor/scripts/harness_ledger.py +225 -29
- package/harness/bundles/general/cursor/scripts/harness_phase.py +926 -0
- package/harness/bundles/general/cursor/scripts/harness_plan_finalize.py +361 -0
- package/harness/bundles/general/cursor/scripts/harness_profile.py +50 -0
- package/harness/bundles/general/cursor/scripts/harness_runtime.py +248 -0
- package/harness/bundles/general/cursor/scripts/harness_state.py +15 -2
- package/harness/bundles/general/cursor/scripts/harness_test_guard.py +188 -0
- package/harness/bundles/general/cursor/scripts/harness_workflow_policy.py +19 -0
- package/harness/bundles/java/claude-code/.harness-build.json +1 -1
- package/harness/bundles/java/claude-code/contracts/ci-metrics.schema.json +36 -0
- package/harness/bundles/java/claude-code/contracts/workflow-policy.json +30 -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-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 +24 -2
- 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 +4 -4
- package/harness/bundles/java/claude-code/harness-plan/checklist.md +6 -0
- package/harness/bundles/java/claude-code/harness-plan/reference.md +7 -2
- 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 +1 -1
- package/harness/bundles/java/claude-code/harness-test/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/scripts/harness_archive.py +282 -120
- package/harness/bundles/java/claude-code/scripts/harness_events.py +400 -24
- package/harness/bundles/java/claude-code/scripts/harness_gate.py +585 -21
- package/harness/bundles/java/claude-code/scripts/harness_integration.py +403 -18
- package/harness/bundles/java/claude-code/scripts/harness_ledger.py +225 -29
- package/harness/bundles/java/claude-code/scripts/harness_phase.py +926 -0
- package/harness/bundles/java/claude-code/scripts/harness_plan_finalize.py +361 -0
- package/harness/bundles/java/claude-code/scripts/harness_profile.py +50 -0
- package/harness/bundles/java/claude-code/scripts/harness_runtime.py +248 -0
- package/harness/bundles/java/claude-code/scripts/harness_state.py +15 -2
- package/harness/bundles/java/claude-code/scripts/harness_test_guard.py +188 -0
- package/harness/bundles/java/claude-code/scripts/harness_workflow_policy.py +19 -0
- package/harness/bundles/java/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/java/codebuddy/contracts/ci-metrics.schema.json +36 -0
- package/harness/bundles/java/codebuddy/contracts/workflow-policy.json +30 -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-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 +24 -2
- 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 +4 -4
- package/harness/bundles/java/codebuddy/harness-plan/checklist.md +6 -0
- package/harness/bundles/java/codebuddy/harness-plan/reference.md +7 -2
- 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 +1 -1
- package/harness/bundles/java/codebuddy/harness-test/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/scripts/harness_archive.py +282 -120
- package/harness/bundles/java/codebuddy/scripts/harness_events.py +400 -24
- package/harness/bundles/java/codebuddy/scripts/harness_gate.py +585 -21
- package/harness/bundles/java/codebuddy/scripts/harness_integration.py +403 -18
- package/harness/bundles/java/codebuddy/scripts/harness_ledger.py +225 -29
- package/harness/bundles/java/codebuddy/scripts/harness_phase.py +926 -0
- package/harness/bundles/java/codebuddy/scripts/harness_plan_finalize.py +361 -0
- package/harness/bundles/java/codebuddy/scripts/harness_profile.py +50 -0
- package/harness/bundles/java/codebuddy/scripts/harness_runtime.py +248 -0
- package/harness/bundles/java/codebuddy/scripts/harness_state.py +15 -2
- package/harness/bundles/java/codebuddy/scripts/harness_test_guard.py +188 -0
- package/harness/bundles/java/codebuddy/scripts/harness_workflow_policy.py +19 -0
- package/harness/bundles/java/codex/.harness-build.json +1 -1
- package/harness/bundles/java/codex/contracts/ci-metrics.schema.json +36 -0
- package/harness/bundles/java/codex/contracts/workflow-policy.json +30 -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-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 +24 -2
- 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 +4 -4
- package/harness/bundles/java/codex/harness-plan/checklist.md +6 -0
- package/harness/bundles/java/codex/harness-plan/reference.md +7 -2
- 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 +1 -1
- package/harness/bundles/java/codex/harness-test/SKILL.md +1 -1
- package/harness/bundles/java/codex/scripts/harness_archive.py +282 -120
- package/harness/bundles/java/codex/scripts/harness_events.py +400 -24
- package/harness/bundles/java/codex/scripts/harness_gate.py +585 -21
- package/harness/bundles/java/codex/scripts/harness_integration.py +403 -18
- package/harness/bundles/java/codex/scripts/harness_ledger.py +225 -29
- package/harness/bundles/java/codex/scripts/harness_phase.py +926 -0
- package/harness/bundles/java/codex/scripts/harness_plan_finalize.py +361 -0
- package/harness/bundles/java/codex/scripts/harness_profile.py +50 -0
- package/harness/bundles/java/codex/scripts/harness_runtime.py +248 -0
- package/harness/bundles/java/codex/scripts/harness_state.py +15 -2
- package/harness/bundles/java/codex/scripts/harness_test_guard.py +188 -0
- package/harness/bundles/java/codex/scripts/harness_workflow_policy.py +19 -0
- package/harness/bundles/java/cursor/.harness-build.json +1 -1
- package/harness/bundles/java/cursor/contracts/ci-metrics.schema.json +36 -0
- package/harness/bundles/java/cursor/contracts/workflow-policy.json +30 -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-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 +24 -2
- 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 +4 -4
- package/harness/bundles/java/cursor/harness-plan/checklist.md +6 -0
- package/harness/bundles/java/cursor/harness-plan/reference.md +7 -2
- 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 +1 -1
- package/harness/bundles/java/cursor/harness-test/SKILL.md +1 -1
- package/harness/bundles/java/cursor/scripts/harness_archive.py +282 -120
- package/harness/bundles/java/cursor/scripts/harness_events.py +400 -24
- package/harness/bundles/java/cursor/scripts/harness_gate.py +585 -21
- package/harness/bundles/java/cursor/scripts/harness_integration.py +403 -18
- package/harness/bundles/java/cursor/scripts/harness_ledger.py +225 -29
- package/harness/bundles/java/cursor/scripts/harness_phase.py +926 -0
- package/harness/bundles/java/cursor/scripts/harness_plan_finalize.py +361 -0
- package/harness/bundles/java/cursor/scripts/harness_profile.py +50 -0
- package/harness/bundles/java/cursor/scripts/harness_runtime.py +248 -0
- package/harness/bundles/java/cursor/scripts/harness_state.py +15 -2
- package/harness/bundles/java/cursor/scripts/harness_test_guard.py +188 -0
- package/harness/bundles/java/cursor/scripts/harness_workflow_policy.py +19 -0
- package/harness/manifests/general/claude-code.json +43 -27
- package/harness/manifests/general/codebuddy.json +43 -27
- package/harness/manifests/general/codex.json +43 -27
- package/harness/manifests/general/cursor.json +43 -27
- package/harness/manifests/java/claude-code.json +43 -27
- package/harness/manifests/java/codebuddy.json +43 -27
- package/harness/manifests/java/codex.json +43 -27
- package/harness/manifests/java/cursor.json +43 -27
- package/hunter-workflow-family.json +2 -2
- package/package.json +1 -1
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "claude-code",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.12",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "364058ef2d22343584604fd65d068af633cd5d2c63545dde6e48fdeaa6b9f32f"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "agents/harness-evaluator.md",
|
|
@@ -25,9 +25,13 @@
|
|
|
25
25
|
"path": "CONTEXT.md",
|
|
26
26
|
"sha256": "19c75b493f6f760d0e607a88bd355acdd232fcb66660887ef94d10425f39507b"
|
|
27
27
|
},
|
|
28
|
+
{
|
|
29
|
+
"path": "contracts/ci-metrics.schema.json",
|
|
30
|
+
"sha256": "63e05a5ee620069dac7f63ab5780a07900114534c201e3f449b1bd8de9365757"
|
|
31
|
+
},
|
|
28
32
|
{
|
|
29
33
|
"path": "contracts/workflow-policy.json",
|
|
30
|
-
"sha256": "
|
|
34
|
+
"sha256": "3f39160c6905338a527170c0f15d83715ad56ac9fb449f4f568a6714ccdd3c9a"
|
|
31
35
|
},
|
|
32
36
|
{
|
|
33
37
|
"path": "harness-apidoc/checklist.md",
|
|
@@ -39,7 +43,7 @@
|
|
|
39
43
|
},
|
|
40
44
|
{
|
|
41
45
|
"path": "harness-apidoc/SKILL.md",
|
|
42
|
-
"sha256": "
|
|
46
|
+
"sha256": "50d3e5751c7f96da9c930f529c6208b82c38aab47028515e05e3c4f3bb401281"
|
|
43
47
|
},
|
|
44
48
|
{
|
|
45
49
|
"path": "harness-archive/checklist.md",
|
|
@@ -55,7 +59,7 @@
|
|
|
55
59
|
},
|
|
56
60
|
{
|
|
57
61
|
"path": "harness-archive/SKILL.md",
|
|
58
|
-
"sha256": "
|
|
62
|
+
"sha256": "31982433cf2b405addfe08abad7d369dbd6a21bf74506d78d46315aaff8f11a4"
|
|
59
63
|
},
|
|
60
64
|
{
|
|
61
65
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
@@ -75,7 +79,7 @@
|
|
|
75
79
|
},
|
|
76
80
|
{
|
|
77
81
|
"path": "harness-codebase-map/SKILL.md",
|
|
78
|
-
"sha256": "
|
|
82
|
+
"sha256": "37842bbd42b12334d244c616ad6d9258e881a30cd3b25c6c3ddb16e0697c1c0e"
|
|
79
83
|
},
|
|
80
84
|
{
|
|
81
85
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -135,15 +139,15 @@
|
|
|
135
139
|
},
|
|
136
140
|
{
|
|
137
141
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
138
|
-
"sha256": "
|
|
142
|
+
"sha256": "48620b3aa57da3cbc39c556b73006108e0ae4e40d7b662709869dfc1877158ee"
|
|
139
143
|
},
|
|
140
144
|
{
|
|
141
145
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
142
|
-
"sha256": "
|
|
146
|
+
"sha256": "8539dd6b5f4aaf7e067cd9a8ca34fbfd31bc50340e1fa7635ed5cd2d35e129cf"
|
|
143
147
|
},
|
|
144
148
|
{
|
|
145
149
|
"path": "harness-knowledge-query/SKILL.md",
|
|
146
|
-
"sha256": "
|
|
150
|
+
"sha256": "9afdc43eb319e5d43943ce1b2ce30778477ebb2b09c6f4d77f969afe330a465f"
|
|
147
151
|
},
|
|
148
152
|
{
|
|
149
153
|
"path": "harness-package/checklist.md",
|
|
@@ -155,11 +159,11 @@
|
|
|
155
159
|
},
|
|
156
160
|
{
|
|
157
161
|
"path": "harness-package/SKILL.md",
|
|
158
|
-
"sha256": "
|
|
162
|
+
"sha256": "00c404b498b7300ba3bfb081bceee1372b8c58c5ef7d9a7599dc69289f7c814c"
|
|
159
163
|
},
|
|
160
164
|
{
|
|
161
165
|
"path": "harness-plan/checklist.md",
|
|
162
|
-
"sha256": "
|
|
166
|
+
"sha256": "897649058dea86440bcbf4fcb7f2323a6c361318da48737ca69b282f7a9b1870"
|
|
163
167
|
},
|
|
164
168
|
{
|
|
165
169
|
"path": "harness-plan/protocols.md",
|
|
@@ -167,11 +171,11 @@
|
|
|
167
171
|
},
|
|
168
172
|
{
|
|
169
173
|
"path": "harness-plan/reference.md",
|
|
170
|
-
"sha256": "
|
|
174
|
+
"sha256": "5f3ee154ad79f4b5906efffbd09f14d26ca629540002fb06e35208c21bd5efa4"
|
|
171
175
|
},
|
|
172
176
|
{
|
|
173
177
|
"path": "harness-plan/SKILL.md",
|
|
174
|
-
"sha256": "
|
|
178
|
+
"sha256": "7dd99af2ed7e5744f27f7325bdbc0841c400f921a63730b9c759ba63776c87b4"
|
|
175
179
|
},
|
|
176
180
|
{
|
|
177
181
|
"path": "harness-review/checklist.md",
|
|
@@ -187,7 +191,7 @@
|
|
|
187
191
|
},
|
|
188
192
|
{
|
|
189
193
|
"path": "harness-review/SKILL.md",
|
|
190
|
-
"sha256": "
|
|
194
|
+
"sha256": "6dc125535e5b26a02b314553495314e2381bfa0b62ffffeab85bd56160ca320b"
|
|
191
195
|
},
|
|
192
196
|
{
|
|
193
197
|
"path": "harness-run/checklist.md",
|
|
@@ -203,7 +207,7 @@
|
|
|
203
207
|
},
|
|
204
208
|
{
|
|
205
209
|
"path": "harness-run/SKILL.md",
|
|
206
|
-
"sha256": "
|
|
210
|
+
"sha256": "b99a9581f3c11f396aa9aa00fb5f2fa118e7d69baabaec2599c2bd6d677131b3"
|
|
207
211
|
},
|
|
208
212
|
{
|
|
209
213
|
"path": "harness-submit/checklist.md",
|
|
@@ -215,7 +219,7 @@
|
|
|
215
219
|
},
|
|
216
220
|
{
|
|
217
221
|
"path": "harness-submit/SKILL.md",
|
|
218
|
-
"sha256": "
|
|
222
|
+
"sha256": "3924392cb8cdf01a0c3a77f0723fe9b0df0e8cd8c6de2304c829d5d90fc50153"
|
|
219
223
|
},
|
|
220
224
|
{
|
|
221
225
|
"path": "harness-sync/reference.md",
|
|
@@ -223,7 +227,7 @@
|
|
|
223
227
|
},
|
|
224
228
|
{
|
|
225
229
|
"path": "harness-sync/SKILL.md",
|
|
226
|
-
"sha256": "
|
|
230
|
+
"sha256": "7b8130718d988a5edabdd44c5157ddb94a76b143d9cc289a8a343e277d242cb7"
|
|
227
231
|
},
|
|
228
232
|
{
|
|
229
233
|
"path": "harness-test/checklist.md",
|
|
@@ -247,7 +251,7 @@
|
|
|
247
251
|
},
|
|
248
252
|
{
|
|
249
253
|
"path": "harness-test/SKILL.md",
|
|
250
|
-
"sha256": "
|
|
254
|
+
"sha256": "139c45d0803516db64fe4d94d1630c8ba56e1c36b6d59a7987d9d2913dda8c37"
|
|
251
255
|
},
|
|
252
256
|
{
|
|
253
257
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -291,7 +295,7 @@
|
|
|
291
295
|
},
|
|
292
296
|
{
|
|
293
297
|
"path": "scripts/harness_archive.py",
|
|
294
|
-
"sha256": "
|
|
298
|
+
"sha256": "b0c29fd8505de3ece4efa7415424c68564116a17f0ba9e3d2718f3ee0cdec0f2"
|
|
295
299
|
},
|
|
296
300
|
{
|
|
297
301
|
"path": "scripts/harness_change.py",
|
|
@@ -307,43 +311,55 @@
|
|
|
307
311
|
},
|
|
308
312
|
{
|
|
309
313
|
"path": "scripts/harness_events.py",
|
|
310
|
-
"sha256": "
|
|
314
|
+
"sha256": "287436f60ce4aded0869233f9148112d612b74e61d79d1d4be358f802751c736"
|
|
311
315
|
},
|
|
312
316
|
{
|
|
313
317
|
"path": "scripts/harness_gate.py",
|
|
314
|
-
"sha256": "
|
|
318
|
+
"sha256": "76c7a4e82d89ef121b47bcb3b3e7f180b9f421a9406bfb9d1de9cfbb9d27bfba"
|
|
315
319
|
},
|
|
316
320
|
{
|
|
317
321
|
"path": "scripts/harness_integration.py",
|
|
318
|
-
"sha256": "
|
|
322
|
+
"sha256": "8c4d143affe1fc37ea028cc9d85581774ddecc4849f298094f1d4d831f3929f7"
|
|
319
323
|
},
|
|
320
324
|
{
|
|
321
325
|
"path": "scripts/harness_ledger.py",
|
|
322
|
-
"sha256": "
|
|
326
|
+
"sha256": "28e87fbdbac579f87e7c374bce59c60e689c61d2ac1298b4fdd868562e2abbac"
|
|
323
327
|
},
|
|
324
328
|
{
|
|
325
329
|
"path": "scripts/harness_paths.py",
|
|
326
330
|
"sha256": "75560c0141172b335811014320001a299846e4fba45dd0589cba86da058ab01a"
|
|
327
331
|
},
|
|
332
|
+
{
|
|
333
|
+
"path": "scripts/harness_phase.py",
|
|
334
|
+
"sha256": "5f16f9b03dc01a08f3dbc0bb0a416856833836f4c3fcb2c4c0799a876079c43d"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"path": "scripts/harness_plan_finalize.py",
|
|
338
|
+
"sha256": "8557e392b34711811a7fa220a2c388c60fec79e916fbd61b42f3e6e6dc50b22c"
|
|
339
|
+
},
|
|
328
340
|
{
|
|
329
341
|
"path": "scripts/harness_preflight.py",
|
|
330
342
|
"sha256": "245f70d6c1f9979f2921e14e5d7a6078bd5126ae6c5d8c0bcd6cfd9c4fd8e135"
|
|
331
343
|
},
|
|
332
344
|
{
|
|
333
345
|
"path": "scripts/harness_profile.py",
|
|
334
|
-
"sha256": "
|
|
346
|
+
"sha256": "7c02010be79352e552d028ac7a5884f273b832af304cb2336824d41a4371a800"
|
|
335
347
|
},
|
|
336
348
|
{
|
|
337
349
|
"path": "scripts/harness_review.py",
|
|
338
350
|
"sha256": "78009e09b79867a13c66a8c71114b6cd04fe75c72054f5ec35d63c7be990bb04"
|
|
339
351
|
},
|
|
352
|
+
{
|
|
353
|
+
"path": "scripts/harness_runtime.py",
|
|
354
|
+
"sha256": "8959e8702bf703380dc2de92bf33aef3f9520d66ffd790c2295ce6cae1c28cab"
|
|
355
|
+
},
|
|
340
356
|
{
|
|
341
357
|
"path": "scripts/harness_service.py",
|
|
342
358
|
"sha256": "17c26b40ed3e7d110b74ef61e627fa0ad1bc84718a1721a066e6d72ee0e37649"
|
|
343
359
|
},
|
|
344
360
|
{
|
|
345
361
|
"path": "scripts/harness_state.py",
|
|
346
|
-
"sha256": "
|
|
362
|
+
"sha256": "5a35c8ceb1d1cbb1e52347f150139029dd78e57ed47b6d9f2a69066ce33b6084"
|
|
347
363
|
},
|
|
348
364
|
{
|
|
349
365
|
"path": "scripts/harness_sync.py",
|
|
@@ -351,11 +367,11 @@
|
|
|
351
367
|
},
|
|
352
368
|
{
|
|
353
369
|
"path": "scripts/harness_test_guard.py",
|
|
354
|
-
"sha256": "
|
|
370
|
+
"sha256": "1817c2b0ceeb14a98149e704decd4e6cbcaf16121f95320ef61cd36805abe03d"
|
|
355
371
|
},
|
|
356
372
|
{
|
|
357
373
|
"path": "scripts/harness_workflow_policy.py",
|
|
358
|
-
"sha256": "
|
|
374
|
+
"sha256": "a01530d0992cd589129b847c15f1d038cb54992387f694748c09fa182a2de240"
|
|
359
375
|
}
|
|
360
376
|
]
|
|
361
377
|
}
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "codebuddy",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.12",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "a9e9be54ad28ca907635caf5060d32d3df699793bbedbcaa86fa34ebb22fee50"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "agents/harness-evaluator.md",
|
|
@@ -25,9 +25,13 @@
|
|
|
25
25
|
"path": "CONTEXT.md",
|
|
26
26
|
"sha256": "19c75b493f6f760d0e607a88bd355acdd232fcb66660887ef94d10425f39507b"
|
|
27
27
|
},
|
|
28
|
+
{
|
|
29
|
+
"path": "contracts/ci-metrics.schema.json",
|
|
30
|
+
"sha256": "63e05a5ee620069dac7f63ab5780a07900114534c201e3f449b1bd8de9365757"
|
|
31
|
+
},
|
|
28
32
|
{
|
|
29
33
|
"path": "contracts/workflow-policy.json",
|
|
30
|
-
"sha256": "
|
|
34
|
+
"sha256": "3f39160c6905338a527170c0f15d83715ad56ac9fb449f4f568a6714ccdd3c9a"
|
|
31
35
|
},
|
|
32
36
|
{
|
|
33
37
|
"path": "harness-apidoc/checklist.md",
|
|
@@ -39,7 +43,7 @@
|
|
|
39
43
|
},
|
|
40
44
|
{
|
|
41
45
|
"path": "harness-apidoc/SKILL.md",
|
|
42
|
-
"sha256": "
|
|
46
|
+
"sha256": "b257c728a0bc2304e5865416765bcb9d2e395128c1bb2b97863481c784092f86"
|
|
43
47
|
},
|
|
44
48
|
{
|
|
45
49
|
"path": "harness-archive/checklist.md",
|
|
@@ -55,7 +59,7 @@
|
|
|
55
59
|
},
|
|
56
60
|
{
|
|
57
61
|
"path": "harness-archive/SKILL.md",
|
|
58
|
-
"sha256": "
|
|
62
|
+
"sha256": "b1dcb4ccb7ebf4ba15371c06c11bd9af234825ffec14a3cb0234845a2954fc54"
|
|
59
63
|
},
|
|
60
64
|
{
|
|
61
65
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
@@ -75,7 +79,7 @@
|
|
|
75
79
|
},
|
|
76
80
|
{
|
|
77
81
|
"path": "harness-codebase-map/SKILL.md",
|
|
78
|
-
"sha256": "
|
|
82
|
+
"sha256": "34a297604a6e972a2e95a386986ba5cef3276092531c715a74052f5d94b72e51"
|
|
79
83
|
},
|
|
80
84
|
{
|
|
81
85
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -135,15 +139,15 @@
|
|
|
135
139
|
},
|
|
136
140
|
{
|
|
137
141
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
138
|
-
"sha256": "
|
|
142
|
+
"sha256": "48620b3aa57da3cbc39c556b73006108e0ae4e40d7b662709869dfc1877158ee"
|
|
139
143
|
},
|
|
140
144
|
{
|
|
141
145
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
142
|
-
"sha256": "
|
|
146
|
+
"sha256": "ded6a4960fbec94cefd33ecf89dc9987636e1a9f8bb12fb424bc7b24d89667c4"
|
|
143
147
|
},
|
|
144
148
|
{
|
|
145
149
|
"path": "harness-knowledge-query/SKILL.md",
|
|
146
|
-
"sha256": "
|
|
150
|
+
"sha256": "2830dbfd34f3197db973304d3ba306efbcb125d3d73097f2332cfd6f38bea467"
|
|
147
151
|
},
|
|
148
152
|
{
|
|
149
153
|
"path": "harness-package/checklist.md",
|
|
@@ -155,11 +159,11 @@
|
|
|
155
159
|
},
|
|
156
160
|
{
|
|
157
161
|
"path": "harness-package/SKILL.md",
|
|
158
|
-
"sha256": "
|
|
162
|
+
"sha256": "5bc66ccdd4eff108d89ad4eb2bc7f23b8d36db93211b9d1e0e6ff8d153698604"
|
|
159
163
|
},
|
|
160
164
|
{
|
|
161
165
|
"path": "harness-plan/checklist.md",
|
|
162
|
-
"sha256": "
|
|
166
|
+
"sha256": "897649058dea86440bcbf4fcb7f2323a6c361318da48737ca69b282f7a9b1870"
|
|
163
167
|
},
|
|
164
168
|
{
|
|
165
169
|
"path": "harness-plan/protocols.md",
|
|
@@ -167,11 +171,11 @@
|
|
|
167
171
|
},
|
|
168
172
|
{
|
|
169
173
|
"path": "harness-plan/reference.md",
|
|
170
|
-
"sha256": "
|
|
174
|
+
"sha256": "5f3ee154ad79f4b5906efffbd09f14d26ca629540002fb06e35208c21bd5efa4"
|
|
171
175
|
},
|
|
172
176
|
{
|
|
173
177
|
"path": "harness-plan/SKILL.md",
|
|
174
|
-
"sha256": "
|
|
178
|
+
"sha256": "cfb00ee689ac956f29edd0e916337938842adbccd4f5c231de0d8ac0788b2446"
|
|
175
179
|
},
|
|
176
180
|
{
|
|
177
181
|
"path": "harness-review/checklist.md",
|
|
@@ -187,7 +191,7 @@
|
|
|
187
191
|
},
|
|
188
192
|
{
|
|
189
193
|
"path": "harness-review/SKILL.md",
|
|
190
|
-
"sha256": "
|
|
194
|
+
"sha256": "a5a40760d6f23f11ac5079303f7d4e3d60267aac291ec79fea7fc1b9986ac6a9"
|
|
191
195
|
},
|
|
192
196
|
{
|
|
193
197
|
"path": "harness-run/checklist.md",
|
|
@@ -203,7 +207,7 @@
|
|
|
203
207
|
},
|
|
204
208
|
{
|
|
205
209
|
"path": "harness-run/SKILL.md",
|
|
206
|
-
"sha256": "
|
|
210
|
+
"sha256": "99313400e7b6bcc70efefd117e5b35062115092dd6e5bb8f36abb32d03ef7f8d"
|
|
207
211
|
},
|
|
208
212
|
{
|
|
209
213
|
"path": "harness-submit/checklist.md",
|
|
@@ -215,7 +219,7 @@
|
|
|
215
219
|
},
|
|
216
220
|
{
|
|
217
221
|
"path": "harness-submit/SKILL.md",
|
|
218
|
-
"sha256": "
|
|
222
|
+
"sha256": "813c543f40108cc625ac7aa31d339f557753464a582380f5ce996a322b512754"
|
|
219
223
|
},
|
|
220
224
|
{
|
|
221
225
|
"path": "harness-sync/reference.md",
|
|
@@ -223,7 +227,7 @@
|
|
|
223
227
|
},
|
|
224
228
|
{
|
|
225
229
|
"path": "harness-sync/SKILL.md",
|
|
226
|
-
"sha256": "
|
|
230
|
+
"sha256": "41c899b0a09a921031fb5dc55c3e3c4450243d652f6b49d2a49e4ba3749e40d5"
|
|
227
231
|
},
|
|
228
232
|
{
|
|
229
233
|
"path": "harness-test/checklist.md",
|
|
@@ -247,7 +251,7 @@
|
|
|
247
251
|
},
|
|
248
252
|
{
|
|
249
253
|
"path": "harness-test/SKILL.md",
|
|
250
|
-
"sha256": "
|
|
254
|
+
"sha256": "89fe0517a43e75d20e68ab5918720c3394d6881060ae9f2aae0cb750272c51d7"
|
|
251
255
|
},
|
|
252
256
|
{
|
|
253
257
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -291,7 +295,7 @@
|
|
|
291
295
|
},
|
|
292
296
|
{
|
|
293
297
|
"path": "scripts/harness_archive.py",
|
|
294
|
-
"sha256": "
|
|
298
|
+
"sha256": "b0c29fd8505de3ece4efa7415424c68564116a17f0ba9e3d2718f3ee0cdec0f2"
|
|
295
299
|
},
|
|
296
300
|
{
|
|
297
301
|
"path": "scripts/harness_change.py",
|
|
@@ -307,43 +311,55 @@
|
|
|
307
311
|
},
|
|
308
312
|
{
|
|
309
313
|
"path": "scripts/harness_events.py",
|
|
310
|
-
"sha256": "
|
|
314
|
+
"sha256": "287436f60ce4aded0869233f9148112d612b74e61d79d1d4be358f802751c736"
|
|
311
315
|
},
|
|
312
316
|
{
|
|
313
317
|
"path": "scripts/harness_gate.py",
|
|
314
|
-
"sha256": "
|
|
318
|
+
"sha256": "76c7a4e82d89ef121b47bcb3b3e7f180b9f421a9406bfb9d1de9cfbb9d27bfba"
|
|
315
319
|
},
|
|
316
320
|
{
|
|
317
321
|
"path": "scripts/harness_integration.py",
|
|
318
|
-
"sha256": "
|
|
322
|
+
"sha256": "8c4d143affe1fc37ea028cc9d85581774ddecc4849f298094f1d4d831f3929f7"
|
|
319
323
|
},
|
|
320
324
|
{
|
|
321
325
|
"path": "scripts/harness_ledger.py",
|
|
322
|
-
"sha256": "
|
|
326
|
+
"sha256": "28e87fbdbac579f87e7c374bce59c60e689c61d2ac1298b4fdd868562e2abbac"
|
|
323
327
|
},
|
|
324
328
|
{
|
|
325
329
|
"path": "scripts/harness_paths.py",
|
|
326
330
|
"sha256": "75560c0141172b335811014320001a299846e4fba45dd0589cba86da058ab01a"
|
|
327
331
|
},
|
|
332
|
+
{
|
|
333
|
+
"path": "scripts/harness_phase.py",
|
|
334
|
+
"sha256": "5f16f9b03dc01a08f3dbc0bb0a416856833836f4c3fcb2c4c0799a876079c43d"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"path": "scripts/harness_plan_finalize.py",
|
|
338
|
+
"sha256": "8557e392b34711811a7fa220a2c388c60fec79e916fbd61b42f3e6e6dc50b22c"
|
|
339
|
+
},
|
|
328
340
|
{
|
|
329
341
|
"path": "scripts/harness_preflight.py",
|
|
330
342
|
"sha256": "245f70d6c1f9979f2921e14e5d7a6078bd5126ae6c5d8c0bcd6cfd9c4fd8e135"
|
|
331
343
|
},
|
|
332
344
|
{
|
|
333
345
|
"path": "scripts/harness_profile.py",
|
|
334
|
-
"sha256": "
|
|
346
|
+
"sha256": "7c02010be79352e552d028ac7a5884f273b832af304cb2336824d41a4371a800"
|
|
335
347
|
},
|
|
336
348
|
{
|
|
337
349
|
"path": "scripts/harness_review.py",
|
|
338
350
|
"sha256": "78009e09b79867a13c66a8c71114b6cd04fe75c72054f5ec35d63c7be990bb04"
|
|
339
351
|
},
|
|
352
|
+
{
|
|
353
|
+
"path": "scripts/harness_runtime.py",
|
|
354
|
+
"sha256": "8959e8702bf703380dc2de92bf33aef3f9520d66ffd790c2295ce6cae1c28cab"
|
|
355
|
+
},
|
|
340
356
|
{
|
|
341
357
|
"path": "scripts/harness_service.py",
|
|
342
358
|
"sha256": "17c26b40ed3e7d110b74ef61e627fa0ad1bc84718a1721a066e6d72ee0e37649"
|
|
343
359
|
},
|
|
344
360
|
{
|
|
345
361
|
"path": "scripts/harness_state.py",
|
|
346
|
-
"sha256": "
|
|
362
|
+
"sha256": "5a35c8ceb1d1cbb1e52347f150139029dd78e57ed47b6d9f2a69066ce33b6084"
|
|
347
363
|
},
|
|
348
364
|
{
|
|
349
365
|
"path": "scripts/harness_sync.py",
|
|
@@ -351,11 +367,11 @@
|
|
|
351
367
|
},
|
|
352
368
|
{
|
|
353
369
|
"path": "scripts/harness_test_guard.py",
|
|
354
|
-
"sha256": "
|
|
370
|
+
"sha256": "1817c2b0ceeb14a98149e704decd4e6cbcaf16121f95320ef61cd36805abe03d"
|
|
355
371
|
},
|
|
356
372
|
{
|
|
357
373
|
"path": "scripts/harness_workflow_policy.py",
|
|
358
|
-
"sha256": "
|
|
374
|
+
"sha256": "a01530d0992cd589129b847c15f1d038cb54992387f694748c09fa182a2de240"
|
|
359
375
|
}
|
|
360
376
|
]
|
|
361
377
|
}
|