@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,20 +2,24 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "codex",
|
|
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": "6874fa4a3ab44f55c9a160955c4c6cefca2db111dc6c5b585ff8cc57d3e2efc0"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "CONTEXT.md",
|
|
14
14
|
"sha256": "19c75b493f6f760d0e607a88bd355acdd232fcb66660887ef94d10425f39507b"
|
|
15
15
|
},
|
|
16
|
+
{
|
|
17
|
+
"path": "contracts/ci-metrics.schema.json",
|
|
18
|
+
"sha256": "63e05a5ee620069dac7f63ab5780a07900114534c201e3f449b1bd8de9365757"
|
|
19
|
+
},
|
|
16
20
|
{
|
|
17
21
|
"path": "contracts/workflow-policy.json",
|
|
18
|
-
"sha256": "
|
|
22
|
+
"sha256": "3f39160c6905338a527170c0f15d83715ad56ac9fb449f4f568a6714ccdd3c9a"
|
|
19
23
|
},
|
|
20
24
|
{
|
|
21
25
|
"path": "harness-apidoc/checklist.md",
|
|
@@ -27,7 +31,7 @@
|
|
|
27
31
|
},
|
|
28
32
|
{
|
|
29
33
|
"path": "harness-apidoc/SKILL.md",
|
|
30
|
-
"sha256": "
|
|
34
|
+
"sha256": "7895bd420fff4777385816b5ebb27d0bd28d51e56c0e69b74a2dffe3afdf33ca"
|
|
31
35
|
},
|
|
32
36
|
{
|
|
33
37
|
"path": "harness-archive/checklist.md",
|
|
@@ -43,7 +47,7 @@
|
|
|
43
47
|
},
|
|
44
48
|
{
|
|
45
49
|
"path": "harness-archive/SKILL.md",
|
|
46
|
-
"sha256": "
|
|
50
|
+
"sha256": "e720eeae075229dd7726344b2fd4d888074d9ae54c2a94923217f769c07195ea"
|
|
47
51
|
},
|
|
48
52
|
{
|
|
49
53
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
@@ -63,7 +67,7 @@
|
|
|
63
67
|
},
|
|
64
68
|
{
|
|
65
69
|
"path": "harness-codebase-map/SKILL.md",
|
|
66
|
-
"sha256": "
|
|
70
|
+
"sha256": "ea9481a4c0644ba6a86afee1f1605118908ee0c3db08a659e59125dad15d1d3e"
|
|
67
71
|
},
|
|
68
72
|
{
|
|
69
73
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -123,15 +127,15 @@
|
|
|
123
127
|
},
|
|
124
128
|
{
|
|
125
129
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
126
|
-
"sha256": "
|
|
130
|
+
"sha256": "48620b3aa57da3cbc39c556b73006108e0ae4e40d7b662709869dfc1877158ee"
|
|
127
131
|
},
|
|
128
132
|
{
|
|
129
133
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
130
|
-
"sha256": "
|
|
134
|
+
"sha256": "fc105865bc44bdfa6894dddb92698f19b983d64fb56ed50d2cc091d3e6b415b4"
|
|
131
135
|
},
|
|
132
136
|
{
|
|
133
137
|
"path": "harness-knowledge-query/SKILL.md",
|
|
134
|
-
"sha256": "
|
|
138
|
+
"sha256": "f960fa782a40a97082112b7174a1f37503324b98f9bd27c1b70484da6e7266b0"
|
|
135
139
|
},
|
|
136
140
|
{
|
|
137
141
|
"path": "harness-package/checklist.md",
|
|
@@ -143,11 +147,11 @@
|
|
|
143
147
|
},
|
|
144
148
|
{
|
|
145
149
|
"path": "harness-package/SKILL.md",
|
|
146
|
-
"sha256": "
|
|
150
|
+
"sha256": "314b308b3084ba0aa1db2277f3185a477ccbea4625d164114293464ad8980c88"
|
|
147
151
|
},
|
|
148
152
|
{
|
|
149
153
|
"path": "harness-plan/checklist.md",
|
|
150
|
-
"sha256": "
|
|
154
|
+
"sha256": "897649058dea86440bcbf4fcb7f2323a6c361318da48737ca69b282f7a9b1870"
|
|
151
155
|
},
|
|
152
156
|
{
|
|
153
157
|
"path": "harness-plan/protocols.md",
|
|
@@ -155,11 +159,11 @@
|
|
|
155
159
|
},
|
|
156
160
|
{
|
|
157
161
|
"path": "harness-plan/reference.md",
|
|
158
|
-
"sha256": "
|
|
162
|
+
"sha256": "5f3ee154ad79f4b5906efffbd09f14d26ca629540002fb06e35208c21bd5efa4"
|
|
159
163
|
},
|
|
160
164
|
{
|
|
161
165
|
"path": "harness-plan/SKILL.md",
|
|
162
|
-
"sha256": "
|
|
166
|
+
"sha256": "feaec33db24cc73b001c0772ca3eddac04e2b6ba1fb6c8dcf5ff3aa7c1da8523"
|
|
163
167
|
},
|
|
164
168
|
{
|
|
165
169
|
"path": "harness-review/checklist.md",
|
|
@@ -175,7 +179,7 @@
|
|
|
175
179
|
},
|
|
176
180
|
{
|
|
177
181
|
"path": "harness-review/SKILL.md",
|
|
178
|
-
"sha256": "
|
|
182
|
+
"sha256": "1b0a5949fd2083b7dcc5a1ec704c63adeab18a4928491438d42567b3ae6b4d3c"
|
|
179
183
|
},
|
|
180
184
|
{
|
|
181
185
|
"path": "harness-run/checklist.md",
|
|
@@ -191,7 +195,7 @@
|
|
|
191
195
|
},
|
|
192
196
|
{
|
|
193
197
|
"path": "harness-run/SKILL.md",
|
|
194
|
-
"sha256": "
|
|
198
|
+
"sha256": "aaa34575fac33c8ea1e053b6665ed877bca3cc85163fcc647e4ea63375602a75"
|
|
195
199
|
},
|
|
196
200
|
{
|
|
197
201
|
"path": "harness-submit/checklist.md",
|
|
@@ -203,7 +207,7 @@
|
|
|
203
207
|
},
|
|
204
208
|
{
|
|
205
209
|
"path": "harness-submit/SKILL.md",
|
|
206
|
-
"sha256": "
|
|
210
|
+
"sha256": "1fd8a81f77bc569108e5c0db9283af60885b9ae821d47816120a964171c049bd"
|
|
207
211
|
},
|
|
208
212
|
{
|
|
209
213
|
"path": "harness-sync/reference.md",
|
|
@@ -211,7 +215,7 @@
|
|
|
211
215
|
},
|
|
212
216
|
{
|
|
213
217
|
"path": "harness-sync/SKILL.md",
|
|
214
|
-
"sha256": "
|
|
218
|
+
"sha256": "f037a7d22492a3e91b7223d28f1354e16796529b5f20c8e37ed1a66706f77c93"
|
|
215
219
|
},
|
|
216
220
|
{
|
|
217
221
|
"path": "harness-test/checklist.md",
|
|
@@ -235,7 +239,7 @@
|
|
|
235
239
|
},
|
|
236
240
|
{
|
|
237
241
|
"path": "harness-test/SKILL.md",
|
|
238
|
-
"sha256": "
|
|
242
|
+
"sha256": "8438d181f9ff65d91d61f555d7cd751b0d92f80966bc2fbc132abecac585865f"
|
|
239
243
|
},
|
|
240
244
|
{
|
|
241
245
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -279,7 +283,7 @@
|
|
|
279
283
|
},
|
|
280
284
|
{
|
|
281
285
|
"path": "scripts/harness_archive.py",
|
|
282
|
-
"sha256": "
|
|
286
|
+
"sha256": "b0c29fd8505de3ece4efa7415424c68564116a17f0ba9e3d2718f3ee0cdec0f2"
|
|
283
287
|
},
|
|
284
288
|
{
|
|
285
289
|
"path": "scripts/harness_change.py",
|
|
@@ -295,43 +299,55 @@
|
|
|
295
299
|
},
|
|
296
300
|
{
|
|
297
301
|
"path": "scripts/harness_events.py",
|
|
298
|
-
"sha256": "
|
|
302
|
+
"sha256": "287436f60ce4aded0869233f9148112d612b74e61d79d1d4be358f802751c736"
|
|
299
303
|
},
|
|
300
304
|
{
|
|
301
305
|
"path": "scripts/harness_gate.py",
|
|
302
|
-
"sha256": "
|
|
306
|
+
"sha256": "76c7a4e82d89ef121b47bcb3b3e7f180b9f421a9406bfb9d1de9cfbb9d27bfba"
|
|
303
307
|
},
|
|
304
308
|
{
|
|
305
309
|
"path": "scripts/harness_integration.py",
|
|
306
|
-
"sha256": "
|
|
310
|
+
"sha256": "8c4d143affe1fc37ea028cc9d85581774ddecc4849f298094f1d4d831f3929f7"
|
|
307
311
|
},
|
|
308
312
|
{
|
|
309
313
|
"path": "scripts/harness_ledger.py",
|
|
310
|
-
"sha256": "
|
|
314
|
+
"sha256": "28e87fbdbac579f87e7c374bce59c60e689c61d2ac1298b4fdd868562e2abbac"
|
|
311
315
|
},
|
|
312
316
|
{
|
|
313
317
|
"path": "scripts/harness_paths.py",
|
|
314
318
|
"sha256": "75560c0141172b335811014320001a299846e4fba45dd0589cba86da058ab01a"
|
|
315
319
|
},
|
|
320
|
+
{
|
|
321
|
+
"path": "scripts/harness_phase.py",
|
|
322
|
+
"sha256": "5f16f9b03dc01a08f3dbc0bb0a416856833836f4c3fcb2c4c0799a876079c43d"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"path": "scripts/harness_plan_finalize.py",
|
|
326
|
+
"sha256": "8557e392b34711811a7fa220a2c388c60fec79e916fbd61b42f3e6e6dc50b22c"
|
|
327
|
+
},
|
|
316
328
|
{
|
|
317
329
|
"path": "scripts/harness_preflight.py",
|
|
318
330
|
"sha256": "245f70d6c1f9979f2921e14e5d7a6078bd5126ae6c5d8c0bcd6cfd9c4fd8e135"
|
|
319
331
|
},
|
|
320
332
|
{
|
|
321
333
|
"path": "scripts/harness_profile.py",
|
|
322
|
-
"sha256": "
|
|
334
|
+
"sha256": "7c02010be79352e552d028ac7a5884f273b832af304cb2336824d41a4371a800"
|
|
323
335
|
},
|
|
324
336
|
{
|
|
325
337
|
"path": "scripts/harness_review.py",
|
|
326
338
|
"sha256": "78009e09b79867a13c66a8c71114b6cd04fe75c72054f5ec35d63c7be990bb04"
|
|
327
339
|
},
|
|
340
|
+
{
|
|
341
|
+
"path": "scripts/harness_runtime.py",
|
|
342
|
+
"sha256": "8959e8702bf703380dc2de92bf33aef3f9520d66ffd790c2295ce6cae1c28cab"
|
|
343
|
+
},
|
|
328
344
|
{
|
|
329
345
|
"path": "scripts/harness_service.py",
|
|
330
346
|
"sha256": "17c26b40ed3e7d110b74ef61e627fa0ad1bc84718a1721a066e6d72ee0e37649"
|
|
331
347
|
},
|
|
332
348
|
{
|
|
333
349
|
"path": "scripts/harness_state.py",
|
|
334
|
-
"sha256": "
|
|
350
|
+
"sha256": "5a35c8ceb1d1cbb1e52347f150139029dd78e57ed47b6d9f2a69066ce33b6084"
|
|
335
351
|
},
|
|
336
352
|
{
|
|
337
353
|
"path": "scripts/harness_sync.py",
|
|
@@ -339,11 +355,11 @@
|
|
|
339
355
|
},
|
|
340
356
|
{
|
|
341
357
|
"path": "scripts/harness_test_guard.py",
|
|
342
|
-
"sha256": "
|
|
358
|
+
"sha256": "1817c2b0ceeb14a98149e704decd4e6cbcaf16121f95320ef61cd36805abe03d"
|
|
343
359
|
},
|
|
344
360
|
{
|
|
345
361
|
"path": "scripts/harness_workflow_policy.py",
|
|
346
|
-
"sha256": "
|
|
362
|
+
"sha256": "a01530d0992cd589129b847c15f1d038cb54992387f694748c09fa182a2de240"
|
|
347
363
|
}
|
|
348
364
|
]
|
|
349
365
|
}
|
|
@@ -2,20 +2,24 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "cursor",
|
|
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": "c36453a92d98d08acb2162ff5174a3b9a02f7c046831565d624c85f06400a938"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "CONTEXT.md",
|
|
14
14
|
"sha256": "19c75b493f6f760d0e607a88bd355acdd232fcb66660887ef94d10425f39507b"
|
|
15
15
|
},
|
|
16
|
+
{
|
|
17
|
+
"path": "contracts/ci-metrics.schema.json",
|
|
18
|
+
"sha256": "63e05a5ee620069dac7f63ab5780a07900114534c201e3f449b1bd8de9365757"
|
|
19
|
+
},
|
|
16
20
|
{
|
|
17
21
|
"path": "contracts/workflow-policy.json",
|
|
18
|
-
"sha256": "
|
|
22
|
+
"sha256": "3f39160c6905338a527170c0f15d83715ad56ac9fb449f4f568a6714ccdd3c9a"
|
|
19
23
|
},
|
|
20
24
|
{
|
|
21
25
|
"path": "harness-apidoc/checklist.md",
|
|
@@ -27,7 +31,7 @@
|
|
|
27
31
|
},
|
|
28
32
|
{
|
|
29
33
|
"path": "harness-apidoc/SKILL.md",
|
|
30
|
-
"sha256": "
|
|
34
|
+
"sha256": "8f9a7f52fadc07d7493aea58ad98167ccaf9a4963605940700d3c84a36cdf14f"
|
|
31
35
|
},
|
|
32
36
|
{
|
|
33
37
|
"path": "harness-archive/checklist.md",
|
|
@@ -43,7 +47,7 @@
|
|
|
43
47
|
},
|
|
44
48
|
{
|
|
45
49
|
"path": "harness-archive/SKILL.md",
|
|
46
|
-
"sha256": "
|
|
50
|
+
"sha256": "fd8b30a720c653078b95a40b54eb805e34dca7220056b78f3919ef254db005d3"
|
|
47
51
|
},
|
|
48
52
|
{
|
|
49
53
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
@@ -63,7 +67,7 @@
|
|
|
63
67
|
},
|
|
64
68
|
{
|
|
65
69
|
"path": "harness-codebase-map/SKILL.md",
|
|
66
|
-
"sha256": "
|
|
70
|
+
"sha256": "096f3f1161f994e41936b68a8df4475489bf15053f3dbf47c442c6dee74f5252"
|
|
67
71
|
},
|
|
68
72
|
{
|
|
69
73
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -123,15 +127,15 @@
|
|
|
123
127
|
},
|
|
124
128
|
{
|
|
125
129
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
126
|
-
"sha256": "
|
|
130
|
+
"sha256": "48620b3aa57da3cbc39c556b73006108e0ae4e40d7b662709869dfc1877158ee"
|
|
127
131
|
},
|
|
128
132
|
{
|
|
129
133
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
130
|
-
"sha256": "
|
|
134
|
+
"sha256": "6e0a62fece845602e79763fefda4711e833648c1de1194b58544f2e602840d22"
|
|
131
135
|
},
|
|
132
136
|
{
|
|
133
137
|
"path": "harness-knowledge-query/SKILL.md",
|
|
134
|
-
"sha256": "
|
|
138
|
+
"sha256": "d4611291ee87c6c888aa02611d4ca5360cee5cdf4d77dafbbc87750abaf20cbc"
|
|
135
139
|
},
|
|
136
140
|
{
|
|
137
141
|
"path": "harness-package/checklist.md",
|
|
@@ -143,11 +147,11 @@
|
|
|
143
147
|
},
|
|
144
148
|
{
|
|
145
149
|
"path": "harness-package/SKILL.md",
|
|
146
|
-
"sha256": "
|
|
150
|
+
"sha256": "b0b0cd77a731d4adcd0e13a34514ca814666fb1da581d2adf6437a14a76e22fa"
|
|
147
151
|
},
|
|
148
152
|
{
|
|
149
153
|
"path": "harness-plan/checklist.md",
|
|
150
|
-
"sha256": "
|
|
154
|
+
"sha256": "897649058dea86440bcbf4fcb7f2323a6c361318da48737ca69b282f7a9b1870"
|
|
151
155
|
},
|
|
152
156
|
{
|
|
153
157
|
"path": "harness-plan/protocols.md",
|
|
@@ -155,11 +159,11 @@
|
|
|
155
159
|
},
|
|
156
160
|
{
|
|
157
161
|
"path": "harness-plan/reference.md",
|
|
158
|
-
"sha256": "
|
|
162
|
+
"sha256": "5f3ee154ad79f4b5906efffbd09f14d26ca629540002fb06e35208c21bd5efa4"
|
|
159
163
|
},
|
|
160
164
|
{
|
|
161
165
|
"path": "harness-plan/SKILL.md",
|
|
162
|
-
"sha256": "
|
|
166
|
+
"sha256": "7fc87fca9fef6224bc3044cbd654a1069bcf8614cbf05d1be9cd1c0a690f9662"
|
|
163
167
|
},
|
|
164
168
|
{
|
|
165
169
|
"path": "harness-review/checklist.md",
|
|
@@ -175,7 +179,7 @@
|
|
|
175
179
|
},
|
|
176
180
|
{
|
|
177
181
|
"path": "harness-review/SKILL.md",
|
|
178
|
-
"sha256": "
|
|
182
|
+
"sha256": "2d39f495f19fa67128bf19ac860d7a113a34d2dfa753d4d48c59e64c90444beb"
|
|
179
183
|
},
|
|
180
184
|
{
|
|
181
185
|
"path": "harness-run/checklist.md",
|
|
@@ -191,7 +195,7 @@
|
|
|
191
195
|
},
|
|
192
196
|
{
|
|
193
197
|
"path": "harness-run/SKILL.md",
|
|
194
|
-
"sha256": "
|
|
198
|
+
"sha256": "de8082c00b822605baca7bd6273bb97d790a1afe44a968acd797e3c6730f3474"
|
|
195
199
|
},
|
|
196
200
|
{
|
|
197
201
|
"path": "harness-submit/checklist.md",
|
|
@@ -203,7 +207,7 @@
|
|
|
203
207
|
},
|
|
204
208
|
{
|
|
205
209
|
"path": "harness-submit/SKILL.md",
|
|
206
|
-
"sha256": "
|
|
210
|
+
"sha256": "f4bf440b21c227ee54c300a7f075f4b936c786ce99182c8062fa671c7a7963a0"
|
|
207
211
|
},
|
|
208
212
|
{
|
|
209
213
|
"path": "harness-sync/reference.md",
|
|
@@ -211,7 +215,7 @@
|
|
|
211
215
|
},
|
|
212
216
|
{
|
|
213
217
|
"path": "harness-sync/SKILL.md",
|
|
214
|
-
"sha256": "
|
|
218
|
+
"sha256": "7671903a48a87f5e8f32d9e755dee720c3d0a4e279cf547b0a632c46a4b4a2e9"
|
|
215
219
|
},
|
|
216
220
|
{
|
|
217
221
|
"path": "harness-test/checklist.md",
|
|
@@ -235,7 +239,7 @@
|
|
|
235
239
|
},
|
|
236
240
|
{
|
|
237
241
|
"path": "harness-test/SKILL.md",
|
|
238
|
-
"sha256": "
|
|
242
|
+
"sha256": "6042db099cab7d75bc8f88419802bd37a6b0eecb6081b6d3a1497fd35dbf4309"
|
|
239
243
|
},
|
|
240
244
|
{
|
|
241
245
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -279,7 +283,7 @@
|
|
|
279
283
|
},
|
|
280
284
|
{
|
|
281
285
|
"path": "scripts/harness_archive.py",
|
|
282
|
-
"sha256": "
|
|
286
|
+
"sha256": "b0c29fd8505de3ece4efa7415424c68564116a17f0ba9e3d2718f3ee0cdec0f2"
|
|
283
287
|
},
|
|
284
288
|
{
|
|
285
289
|
"path": "scripts/harness_change.py",
|
|
@@ -295,43 +299,55 @@
|
|
|
295
299
|
},
|
|
296
300
|
{
|
|
297
301
|
"path": "scripts/harness_events.py",
|
|
298
|
-
"sha256": "
|
|
302
|
+
"sha256": "287436f60ce4aded0869233f9148112d612b74e61d79d1d4be358f802751c736"
|
|
299
303
|
},
|
|
300
304
|
{
|
|
301
305
|
"path": "scripts/harness_gate.py",
|
|
302
|
-
"sha256": "
|
|
306
|
+
"sha256": "76c7a4e82d89ef121b47bcb3b3e7f180b9f421a9406bfb9d1de9cfbb9d27bfba"
|
|
303
307
|
},
|
|
304
308
|
{
|
|
305
309
|
"path": "scripts/harness_integration.py",
|
|
306
|
-
"sha256": "
|
|
310
|
+
"sha256": "8c4d143affe1fc37ea028cc9d85581774ddecc4849f298094f1d4d831f3929f7"
|
|
307
311
|
},
|
|
308
312
|
{
|
|
309
313
|
"path": "scripts/harness_ledger.py",
|
|
310
|
-
"sha256": "
|
|
314
|
+
"sha256": "28e87fbdbac579f87e7c374bce59c60e689c61d2ac1298b4fdd868562e2abbac"
|
|
311
315
|
},
|
|
312
316
|
{
|
|
313
317
|
"path": "scripts/harness_paths.py",
|
|
314
318
|
"sha256": "75560c0141172b335811014320001a299846e4fba45dd0589cba86da058ab01a"
|
|
315
319
|
},
|
|
320
|
+
{
|
|
321
|
+
"path": "scripts/harness_phase.py",
|
|
322
|
+
"sha256": "5f16f9b03dc01a08f3dbc0bb0a416856833836f4c3fcb2c4c0799a876079c43d"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"path": "scripts/harness_plan_finalize.py",
|
|
326
|
+
"sha256": "8557e392b34711811a7fa220a2c388c60fec79e916fbd61b42f3e6e6dc50b22c"
|
|
327
|
+
},
|
|
316
328
|
{
|
|
317
329
|
"path": "scripts/harness_preflight.py",
|
|
318
330
|
"sha256": "245f70d6c1f9979f2921e14e5d7a6078bd5126ae6c5d8c0bcd6cfd9c4fd8e135"
|
|
319
331
|
},
|
|
320
332
|
{
|
|
321
333
|
"path": "scripts/harness_profile.py",
|
|
322
|
-
"sha256": "
|
|
334
|
+
"sha256": "7c02010be79352e552d028ac7a5884f273b832af304cb2336824d41a4371a800"
|
|
323
335
|
},
|
|
324
336
|
{
|
|
325
337
|
"path": "scripts/harness_review.py",
|
|
326
338
|
"sha256": "78009e09b79867a13c66a8c71114b6cd04fe75c72054f5ec35d63c7be990bb04"
|
|
327
339
|
},
|
|
340
|
+
{
|
|
341
|
+
"path": "scripts/harness_runtime.py",
|
|
342
|
+
"sha256": "8959e8702bf703380dc2de92bf33aef3f9520d66ffd790c2295ce6cae1c28cab"
|
|
343
|
+
},
|
|
328
344
|
{
|
|
329
345
|
"path": "scripts/harness_service.py",
|
|
330
346
|
"sha256": "17c26b40ed3e7d110b74ef61e627fa0ad1bc84718a1721a066e6d72ee0e37649"
|
|
331
347
|
},
|
|
332
348
|
{
|
|
333
349
|
"path": "scripts/harness_state.py",
|
|
334
|
-
"sha256": "
|
|
350
|
+
"sha256": "5a35c8ceb1d1cbb1e52347f150139029dd78e57ed47b6d9f2a69066ce33b6084"
|
|
335
351
|
},
|
|
336
352
|
{
|
|
337
353
|
"path": "scripts/harness_sync.py",
|
|
@@ -339,11 +355,11 @@
|
|
|
339
355
|
},
|
|
340
356
|
{
|
|
341
357
|
"path": "scripts/harness_test_guard.py",
|
|
342
|
-
"sha256": "
|
|
358
|
+
"sha256": "1817c2b0ceeb14a98149e704decd4e6cbcaf16121f95320ef61cd36805abe03d"
|
|
343
359
|
},
|
|
344
360
|
{
|
|
345
361
|
"path": "scripts/harness_workflow_policy.py",
|
|
346
|
-
"sha256": "
|
|
362
|
+
"sha256": "a01530d0992cd589129b847c15f1d038cb54992387f694748c09fa182a2de240"
|
|
347
363
|
}
|
|
348
364
|
]
|
|
349
365
|
}
|
|
@@ -6,6 +6,6 @@
|
|
|
6
6
|
"general",
|
|
7
7
|
"java"
|
|
8
8
|
],
|
|
9
|
-
"bundle_version": "0.2.
|
|
10
|
-
"content_sha256": "sha256:
|
|
9
|
+
"bundle_version": "0.2.12",
|
|
10
|
+
"content_sha256": "sha256:0238b882bac0b302529a00678a422feae5b41be2a02c2e3a646a5eeb2f986813"
|
|
11
11
|
}
|