@hunter-harness/workflow-harness 0.2.6 → 0.2.8
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/workflow-policy.json +169 -0
- package/harness/bundles/general/claude-code/harness-archive/SKILL.md +3 -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 +26 -1
- package/harness/bundles/general/claude-code/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/general/claude-code/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/general/claude-code/harness-plan/SKILL.md +3 -1
- package/harness/bundles/general/claude-code/harness-review/SKILL.md +3 -1
- package/harness/bundles/general/claude-code/harness-run/SKILL.md +9 -6
- package/harness/bundles/general/claude-code/harness-run/checklist.md +2 -2
- package/harness/bundles/general/claude-code/harness-run/reference.md +5 -2
- package/harness/bundles/general/claude-code/harness-submit/SKILL.md +7 -5
- package/harness/bundles/general/claude-code/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-test/SKILL.md +8 -2
- package/harness/bundles/general/claude-code/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/general/claude-code/scripts/harness_archive.py +41 -16
- package/harness/bundles/general/claude-code/scripts/harness_change.py +872 -0
- package/harness/bundles/general/claude-code/scripts/harness_events.py +26 -0
- package/harness/bundles/general/claude-code/scripts/harness_gate.py +1038 -0
- package/harness/bundles/general/claude-code/scripts/harness_service.py +34 -1
- package/harness/bundles/general/claude-code/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/general/claude-code/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/general/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/general/codebuddy/contracts/workflow-policy.json +169 -0
- package/harness/bundles/general/codebuddy/harness-archive/SKILL.md +3 -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 +26 -1
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/general/codebuddy/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/general/codebuddy/harness-plan/SKILL.md +3 -1
- package/harness/bundles/general/codebuddy/harness-review/SKILL.md +3 -1
- package/harness/bundles/general/codebuddy/harness-run/SKILL.md +9 -6
- package/harness/bundles/general/codebuddy/harness-run/checklist.md +2 -2
- package/harness/bundles/general/codebuddy/harness-run/reference.md +5 -2
- package/harness/bundles/general/codebuddy/harness-submit/SKILL.md +7 -5
- package/harness/bundles/general/codebuddy/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-test/SKILL.md +8 -2
- package/harness/bundles/general/codebuddy/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/general/codebuddy/scripts/harness_archive.py +41 -16
- package/harness/bundles/general/codebuddy/scripts/harness_change.py +872 -0
- package/harness/bundles/general/codebuddy/scripts/harness_events.py +26 -0
- package/harness/bundles/general/codebuddy/scripts/harness_gate.py +1038 -0
- package/harness/bundles/general/codebuddy/scripts/harness_service.py +34 -1
- package/harness/bundles/general/codebuddy/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/general/codebuddy/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/general/codex/.harness-build.json +1 -1
- package/harness/bundles/general/codex/contracts/workflow-policy.json +169 -0
- package/harness/bundles/general/codex/harness-archive/SKILL.md +3 -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 +26 -1
- package/harness/bundles/general/codex/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/general/codex/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/general/codex/harness-plan/SKILL.md +3 -1
- package/harness/bundles/general/codex/harness-review/SKILL.md +3 -1
- package/harness/bundles/general/codex/harness-run/SKILL.md +9 -6
- package/harness/bundles/general/codex/harness-run/checklist.md +2 -2
- package/harness/bundles/general/codex/harness-run/reference.md +5 -2
- package/harness/bundles/general/codex/harness-submit/SKILL.md +7 -5
- package/harness/bundles/general/codex/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-test/SKILL.md +8 -2
- package/harness/bundles/general/codex/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/general/codex/scripts/harness_archive.py +41 -16
- package/harness/bundles/general/codex/scripts/harness_change.py +872 -0
- package/harness/bundles/general/codex/scripts/harness_events.py +26 -0
- package/harness/bundles/general/codex/scripts/harness_gate.py +1038 -0
- package/harness/bundles/general/codex/scripts/harness_service.py +34 -1
- package/harness/bundles/general/codex/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/general/codex/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/general/cursor/.harness-build.json +1 -1
- package/harness/bundles/general/cursor/contracts/workflow-policy.json +169 -0
- package/harness/bundles/general/cursor/harness-archive/SKILL.md +3 -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 +26 -1
- package/harness/bundles/general/cursor/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/general/cursor/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/general/cursor/harness-plan/SKILL.md +3 -1
- package/harness/bundles/general/cursor/harness-review/SKILL.md +3 -1
- package/harness/bundles/general/cursor/harness-run/SKILL.md +9 -6
- package/harness/bundles/general/cursor/harness-run/checklist.md +2 -2
- package/harness/bundles/general/cursor/harness-run/reference.md +5 -2
- package/harness/bundles/general/cursor/harness-submit/SKILL.md +7 -5
- package/harness/bundles/general/cursor/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-test/SKILL.md +8 -2
- package/harness/bundles/general/cursor/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/general/cursor/scripts/harness_archive.py +41 -16
- package/harness/bundles/general/cursor/scripts/harness_change.py +872 -0
- package/harness/bundles/general/cursor/scripts/harness_events.py +26 -0
- package/harness/bundles/general/cursor/scripts/harness_gate.py +1038 -0
- package/harness/bundles/general/cursor/scripts/harness_service.py +34 -1
- package/harness/bundles/general/cursor/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/general/cursor/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/java/claude-code/.harness-build.json +1 -1
- package/harness/bundles/java/claude-code/contracts/workflow-policy.json +169 -0
- package/harness/bundles/java/claude-code/harness-apidoc/SKILL.md +7 -1
- package/harness/bundles/java/claude-code/harness-archive/SKILL.md +3 -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 +26 -1
- package/harness/bundles/java/claude-code/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/java/claude-code/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/java/claude-code/harness-package/SKILL.md +6 -3
- package/harness/bundles/java/claude-code/harness-plan/SKILL.md +3 -1
- package/harness/bundles/java/claude-code/harness-review/SKILL.md +3 -1
- package/harness/bundles/java/claude-code/harness-run/SKILL.md +9 -6
- package/harness/bundles/java/claude-code/harness-submit/SKILL.md +7 -5
- package/harness/bundles/java/claude-code/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-test/SKILL.md +8 -2
- package/harness/bundles/java/claude-code/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/java/claude-code/scripts/harness_archive.py +41 -16
- package/harness/bundles/java/claude-code/scripts/harness_change.py +872 -0
- package/harness/bundles/java/claude-code/scripts/harness_events.py +26 -0
- package/harness/bundles/java/claude-code/scripts/harness_gate.py +1038 -0
- package/harness/bundles/java/claude-code/scripts/harness_service.py +34 -1
- package/harness/bundles/java/claude-code/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/java/claude-code/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/java/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/java/codebuddy/contracts/workflow-policy.json +169 -0
- package/harness/bundles/java/codebuddy/harness-apidoc/SKILL.md +7 -1
- package/harness/bundles/java/codebuddy/harness-archive/SKILL.md +3 -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 +26 -1
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/java/codebuddy/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/java/codebuddy/harness-package/SKILL.md +6 -3
- package/harness/bundles/java/codebuddy/harness-plan/SKILL.md +3 -1
- package/harness/bundles/java/codebuddy/harness-review/SKILL.md +3 -1
- package/harness/bundles/java/codebuddy/harness-run/SKILL.md +9 -6
- package/harness/bundles/java/codebuddy/harness-submit/SKILL.md +7 -5
- package/harness/bundles/java/codebuddy/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-test/SKILL.md +8 -2
- package/harness/bundles/java/codebuddy/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/java/codebuddy/scripts/harness_archive.py +41 -16
- package/harness/bundles/java/codebuddy/scripts/harness_change.py +872 -0
- package/harness/bundles/java/codebuddy/scripts/harness_events.py +26 -0
- package/harness/bundles/java/codebuddy/scripts/harness_gate.py +1038 -0
- package/harness/bundles/java/codebuddy/scripts/harness_service.py +34 -1
- package/harness/bundles/java/codebuddy/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/java/codebuddy/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/java/codex/.harness-build.json +1 -1
- package/harness/bundles/java/codex/contracts/workflow-policy.json +169 -0
- package/harness/bundles/java/codex/harness-apidoc/SKILL.md +7 -1
- package/harness/bundles/java/codex/harness-archive/SKILL.md +3 -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 +26 -1
- package/harness/bundles/java/codex/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/java/codex/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/java/codex/harness-package/SKILL.md +6 -3
- package/harness/bundles/java/codex/harness-plan/SKILL.md +3 -1
- package/harness/bundles/java/codex/harness-review/SKILL.md +3 -1
- package/harness/bundles/java/codex/harness-run/SKILL.md +9 -6
- package/harness/bundles/java/codex/harness-submit/SKILL.md +7 -5
- package/harness/bundles/java/codex/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-test/SKILL.md +8 -2
- package/harness/bundles/java/codex/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/java/codex/scripts/harness_archive.py +41 -16
- package/harness/bundles/java/codex/scripts/harness_change.py +872 -0
- package/harness/bundles/java/codex/scripts/harness_events.py +26 -0
- package/harness/bundles/java/codex/scripts/harness_gate.py +1038 -0
- package/harness/bundles/java/codex/scripts/harness_service.py +34 -1
- package/harness/bundles/java/codex/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/java/codex/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/java/cursor/.harness-build.json +1 -1
- package/harness/bundles/java/cursor/contracts/workflow-policy.json +169 -0
- package/harness/bundles/java/cursor/harness-apidoc/SKILL.md +7 -1
- package/harness/bundles/java/cursor/harness-archive/SKILL.md +3 -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 +26 -1
- package/harness/bundles/java/cursor/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/java/cursor/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/java/cursor/harness-package/SKILL.md +6 -3
- package/harness/bundles/java/cursor/harness-plan/SKILL.md +3 -1
- package/harness/bundles/java/cursor/harness-review/SKILL.md +3 -1
- package/harness/bundles/java/cursor/harness-run/SKILL.md +9 -6
- package/harness/bundles/java/cursor/harness-submit/SKILL.md +7 -5
- package/harness/bundles/java/cursor/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-test/SKILL.md +8 -2
- package/harness/bundles/java/cursor/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/java/cursor/scripts/harness_archive.py +41 -16
- package/harness/bundles/java/cursor/scripts/harness_change.py +872 -0
- package/harness/bundles/java/cursor/scripts/harness_events.py +26 -0
- package/harness/bundles/java/cursor/scripts/harness_gate.py +1038 -0
- package/harness/bundles/java/cursor/scripts/harness_service.py +34 -1
- package/harness/bundles/java/cursor/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/java/cursor/scripts/harness_workflow_policy.py +160 -0
- package/harness/manifests/general/claude-code.json +40 -20
- package/harness/manifests/general/codebuddy.json +40 -20
- package/harness/manifests/general/codex.json +40 -20
- package/harness/manifests/general/cursor.json +40 -20
- package/harness/manifests/java/claude-code.json +40 -20
- package/harness/manifests/java/codebuddy.json +40 -20
- package/harness/manifests/java/codex.json +40 -20
- package/harness/manifests/java/cursor.json +40 -20
- package/hunter-workflow-family.json +2 -2
- package/package.json +1 -1
|
@@ -2,17 +2,21 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "codex",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.8",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "8f3c8ae52ea0188942555eed1ba6386926e97a1047ea790da9c38cc70bb782ae"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "CONTEXT.md",
|
|
14
14
|
"sha256": "19c75b493f6f760d0e607a88bd355acdd232fcb66660887ef94d10425f39507b"
|
|
15
15
|
},
|
|
16
|
+
{
|
|
17
|
+
"path": "contracts/workflow-policy.json",
|
|
18
|
+
"sha256": "36614a228338a7e8f2b518351c129607245e3910a67062a5047acdcd42e86853"
|
|
19
|
+
},
|
|
16
20
|
{
|
|
17
21
|
"path": "harness-apidoc/checklist.md",
|
|
18
22
|
"sha256": "48acef732cd0594fd4ea20e6f82642e5ab72695a159ebfe94ff44736db9e9d41"
|
|
@@ -23,7 +27,7 @@
|
|
|
23
27
|
},
|
|
24
28
|
{
|
|
25
29
|
"path": "harness-apidoc/SKILL.md",
|
|
26
|
-
"sha256": "
|
|
30
|
+
"sha256": "b7a796992dfa08e2b553285f02b9ed745c596396be7d4829eebeef8d02f478a2"
|
|
27
31
|
},
|
|
28
32
|
{
|
|
29
33
|
"path": "harness-archive/checklist.md",
|
|
@@ -39,7 +43,7 @@
|
|
|
39
43
|
},
|
|
40
44
|
{
|
|
41
45
|
"path": "harness-archive/SKILL.md",
|
|
42
|
-
"sha256": "
|
|
46
|
+
"sha256": "0b9ce58ee1bd35c8bc8642d84c415a2c1b76722cc0dcaea46411cd554b2acf67"
|
|
43
47
|
},
|
|
44
48
|
{
|
|
45
49
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
@@ -59,7 +63,7 @@
|
|
|
59
63
|
},
|
|
60
64
|
{
|
|
61
65
|
"path": "harness-codebase-map/SKILL.md",
|
|
62
|
-
"sha256": "
|
|
66
|
+
"sha256": "96ba4ebba828453b76f252b459b0399515bd5b12ce9e860330efcd5792791953"
|
|
63
67
|
},
|
|
64
68
|
{
|
|
65
69
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -115,19 +119,19 @@
|
|
|
115
119
|
},
|
|
116
120
|
{
|
|
117
121
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge_mcp.py",
|
|
118
|
-
"sha256": "
|
|
122
|
+
"sha256": "a421ca43e8d1ef1718d51a398e20abae411ea0007b3d45aa333791c511a2aa33"
|
|
119
123
|
},
|
|
120
124
|
{
|
|
121
125
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
122
|
-
"sha256": "
|
|
126
|
+
"sha256": "2764b7985cf2675749bef3e7742f8ed93b4293c3603eef4a78040a97e5b05144"
|
|
123
127
|
},
|
|
124
128
|
{
|
|
125
129
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
126
|
-
"sha256": "
|
|
130
|
+
"sha256": "74f352636ba80c4a19b747c8caf2f221f7561ef3375db41f76b4ce15f57371a3"
|
|
127
131
|
},
|
|
128
132
|
{
|
|
129
133
|
"path": "harness-knowledge-query/SKILL.md",
|
|
130
|
-
"sha256": "
|
|
134
|
+
"sha256": "d318e062a6222696cd50718dbb8927c2eafaf599bc0cedf972029141f86f0123"
|
|
131
135
|
},
|
|
132
136
|
{
|
|
133
137
|
"path": "harness-package/checklist.md",
|
|
@@ -139,7 +143,7 @@
|
|
|
139
143
|
},
|
|
140
144
|
{
|
|
141
145
|
"path": "harness-package/SKILL.md",
|
|
142
|
-
"sha256": "
|
|
146
|
+
"sha256": "6a809a702132c6a0420f2a00aa69c4bde63963596095a07158887b8e8d96d0c5"
|
|
143
147
|
},
|
|
144
148
|
{
|
|
145
149
|
"path": "harness-plan/checklist.md",
|
|
@@ -155,7 +159,7 @@
|
|
|
155
159
|
},
|
|
156
160
|
{
|
|
157
161
|
"path": "harness-plan/SKILL.md",
|
|
158
|
-
"sha256": "
|
|
162
|
+
"sha256": "fa1106066695a01eebad5eb9e57cd94bc031ac0c7f79b4dffd388c42a67968dc"
|
|
159
163
|
},
|
|
160
164
|
{
|
|
161
165
|
"path": "harness-review/checklist.md",
|
|
@@ -171,7 +175,7 @@
|
|
|
171
175
|
},
|
|
172
176
|
{
|
|
173
177
|
"path": "harness-review/SKILL.md",
|
|
174
|
-
"sha256": "
|
|
178
|
+
"sha256": "3ff6082cbf5701562ed94e6147a7b35ca54de4d14cd0c49f011bf6b7514fd1bf"
|
|
175
179
|
},
|
|
176
180
|
{
|
|
177
181
|
"path": "harness-run/checklist.md",
|
|
@@ -187,7 +191,7 @@
|
|
|
187
191
|
},
|
|
188
192
|
{
|
|
189
193
|
"path": "harness-run/SKILL.md",
|
|
190
|
-
"sha256": "
|
|
194
|
+
"sha256": "6307f5b64a05c9289a71e37115f7e95d7ab783d6693f76b2323e4b602d448540"
|
|
191
195
|
},
|
|
192
196
|
{
|
|
193
197
|
"path": "harness-submit/checklist.md",
|
|
@@ -199,7 +203,7 @@
|
|
|
199
203
|
},
|
|
200
204
|
{
|
|
201
205
|
"path": "harness-submit/SKILL.md",
|
|
202
|
-
"sha256": "
|
|
206
|
+
"sha256": "2904e43f97a903195fc60fecccd9f22977adcacd4e53fab6f5433b8759d089ed"
|
|
203
207
|
},
|
|
204
208
|
{
|
|
205
209
|
"path": "harness-sync/reference.md",
|
|
@@ -207,7 +211,7 @@
|
|
|
207
211
|
},
|
|
208
212
|
{
|
|
209
213
|
"path": "harness-sync/SKILL.md",
|
|
210
|
-
"sha256": "
|
|
214
|
+
"sha256": "5aa9df574eb303087f9c83a80c1001efc94db669cb2042352d5620cfa6ccaf7c"
|
|
211
215
|
},
|
|
212
216
|
{
|
|
213
217
|
"path": "harness-test/checklist.md",
|
|
@@ -231,7 +235,7 @@
|
|
|
231
235
|
},
|
|
232
236
|
{
|
|
233
237
|
"path": "harness-test/SKILL.md",
|
|
234
|
-
"sha256": "
|
|
238
|
+
"sha256": "de5eb5c2008778a9439157ecc7d54ac7b5d9548ca8e3fd88bb5493775e789260"
|
|
235
239
|
},
|
|
236
240
|
{
|
|
237
241
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -269,9 +273,17 @@
|
|
|
269
273
|
"path": "README.md",
|
|
270
274
|
"sha256": "57ae38357a7bf4118f91c4404b8133a81aced923c836c498b04ff18461eae665"
|
|
271
275
|
},
|
|
276
|
+
{
|
|
277
|
+
"path": "scripts/harness_apidoc.py",
|
|
278
|
+
"sha256": "3fa77ffabf99075a90374d9a4b2ddca3408cc5b90610725d779d9d0dfb70fbbb"
|
|
279
|
+
},
|
|
272
280
|
{
|
|
273
281
|
"path": "scripts/harness_archive.py",
|
|
274
|
-
"sha256": "
|
|
282
|
+
"sha256": "b48bea12431e4122bae5b3f776b518fe4b48b873ba85b1c4e09a29f15a046ad2"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"path": "scripts/harness_change.py",
|
|
286
|
+
"sha256": "e15697ef34685c9cd55d21dac4e2de21815ff3d984605a47b4e9cac5b4829693"
|
|
275
287
|
},
|
|
276
288
|
{
|
|
277
289
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -283,7 +295,11 @@
|
|
|
283
295
|
},
|
|
284
296
|
{
|
|
285
297
|
"path": "scripts/harness_events.py",
|
|
286
|
-
"sha256": "
|
|
298
|
+
"sha256": "5ebe48d649ed3040245c676ea38ecb2a443582228340c4631481da2e853cd9a0"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"path": "scripts/harness_gate.py",
|
|
302
|
+
"sha256": "fdc596d51116e6fce58baad24673c94fc04b78b4af8781ee8afd7b2cdb3121eb"
|
|
287
303
|
},
|
|
288
304
|
{
|
|
289
305
|
"path": "scripts/harness_ledger.py",
|
|
@@ -299,7 +315,7 @@
|
|
|
299
315
|
},
|
|
300
316
|
{
|
|
301
317
|
"path": "scripts/harness_service.py",
|
|
302
|
-
"sha256": "
|
|
318
|
+
"sha256": "17c26b40ed3e7d110b74ef61e627fa0ad1bc84718a1721a066e6d72ee0e37649"
|
|
303
319
|
},
|
|
304
320
|
{
|
|
305
321
|
"path": "scripts/harness_state.py",
|
|
@@ -307,7 +323,11 @@
|
|
|
307
323
|
},
|
|
308
324
|
{
|
|
309
325
|
"path": "scripts/harness_test_guard.py",
|
|
310
|
-
"sha256": "
|
|
326
|
+
"sha256": "ee3306a56a9ee7adf37ad4bcd26505c6d2c21fcdcb35b88cf5951c05a8f3b615"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"path": "scripts/harness_workflow_policy.py",
|
|
330
|
+
"sha256": "3e754da7041ebec852c3f0be8736cec423d7a0ee98424164bfe4a06fc4d8ca4f"
|
|
311
331
|
}
|
|
312
332
|
]
|
|
313
333
|
}
|
|
@@ -2,17 +2,21 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "cursor",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.8",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "6290038f6e2773153979e8ab2cfcad5d9734d2ef73f7795354124cdbd5d66cd6"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "CONTEXT.md",
|
|
14
14
|
"sha256": "19c75b493f6f760d0e607a88bd355acdd232fcb66660887ef94d10425f39507b"
|
|
15
15
|
},
|
|
16
|
+
{
|
|
17
|
+
"path": "contracts/workflow-policy.json",
|
|
18
|
+
"sha256": "36614a228338a7e8f2b518351c129607245e3910a67062a5047acdcd42e86853"
|
|
19
|
+
},
|
|
16
20
|
{
|
|
17
21
|
"path": "harness-apidoc/checklist.md",
|
|
18
22
|
"sha256": "48acef732cd0594fd4ea20e6f82642e5ab72695a159ebfe94ff44736db9e9d41"
|
|
@@ -23,7 +27,7 @@
|
|
|
23
27
|
},
|
|
24
28
|
{
|
|
25
29
|
"path": "harness-apidoc/SKILL.md",
|
|
26
|
-
"sha256": "
|
|
30
|
+
"sha256": "9bd3e0c30d505db88cc4fa0435b0a74f0902435c60cd08401c4e8861344c0fcc"
|
|
27
31
|
},
|
|
28
32
|
{
|
|
29
33
|
"path": "harness-archive/checklist.md",
|
|
@@ -39,7 +43,7 @@
|
|
|
39
43
|
},
|
|
40
44
|
{
|
|
41
45
|
"path": "harness-archive/SKILL.md",
|
|
42
|
-
"sha256": "
|
|
46
|
+
"sha256": "7adf07f80005a862631058258e3f3d0a527dba35b31509f12931202bed0f4edf"
|
|
43
47
|
},
|
|
44
48
|
{
|
|
45
49
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
@@ -59,7 +63,7 @@
|
|
|
59
63
|
},
|
|
60
64
|
{
|
|
61
65
|
"path": "harness-codebase-map/SKILL.md",
|
|
62
|
-
"sha256": "
|
|
66
|
+
"sha256": "9ef68068bed1ad200f9c232eac6fa2d2597bc1597363dc9a6778580b7cd5d7eb"
|
|
63
67
|
},
|
|
64
68
|
{
|
|
65
69
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -115,19 +119,19 @@
|
|
|
115
119
|
},
|
|
116
120
|
{
|
|
117
121
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge_mcp.py",
|
|
118
|
-
"sha256": "
|
|
122
|
+
"sha256": "a421ca43e8d1ef1718d51a398e20abae411ea0007b3d45aa333791c511a2aa33"
|
|
119
123
|
},
|
|
120
124
|
{
|
|
121
125
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
122
|
-
"sha256": "
|
|
126
|
+
"sha256": "2764b7985cf2675749bef3e7742f8ed93b4293c3603eef4a78040a97e5b05144"
|
|
123
127
|
},
|
|
124
128
|
{
|
|
125
129
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
126
|
-
"sha256": "
|
|
130
|
+
"sha256": "591d08ebdfe036034ba4ca3d50b1f48ff4dd3e4762b34b7974d571917d4c76a5"
|
|
127
131
|
},
|
|
128
132
|
{
|
|
129
133
|
"path": "harness-knowledge-query/SKILL.md",
|
|
130
|
-
"sha256": "
|
|
134
|
+
"sha256": "93c743553ff72a82a0ba4976497517423fd6fb691aab7ed56a0c6b93d20422f0"
|
|
131
135
|
},
|
|
132
136
|
{
|
|
133
137
|
"path": "harness-package/checklist.md",
|
|
@@ -139,7 +143,7 @@
|
|
|
139
143
|
},
|
|
140
144
|
{
|
|
141
145
|
"path": "harness-package/SKILL.md",
|
|
142
|
-
"sha256": "
|
|
146
|
+
"sha256": "4471660762677c8fc7658123f7997879e5516c9d6b64da02730c27f500486d08"
|
|
143
147
|
},
|
|
144
148
|
{
|
|
145
149
|
"path": "harness-plan/checklist.md",
|
|
@@ -155,7 +159,7 @@
|
|
|
155
159
|
},
|
|
156
160
|
{
|
|
157
161
|
"path": "harness-plan/SKILL.md",
|
|
158
|
-
"sha256": "
|
|
162
|
+
"sha256": "c6d6c0158c9cc8128a3fdaedd1b1961b42dd6a0b3b5a7fd25983cdeffb964755"
|
|
159
163
|
},
|
|
160
164
|
{
|
|
161
165
|
"path": "harness-review/checklist.md",
|
|
@@ -171,7 +175,7 @@
|
|
|
171
175
|
},
|
|
172
176
|
{
|
|
173
177
|
"path": "harness-review/SKILL.md",
|
|
174
|
-
"sha256": "
|
|
178
|
+
"sha256": "7f5d742c5ef06aa581411d56c8c7ecc73d098a098bf65fbac701356593885b41"
|
|
175
179
|
},
|
|
176
180
|
{
|
|
177
181
|
"path": "harness-run/checklist.md",
|
|
@@ -187,7 +191,7 @@
|
|
|
187
191
|
},
|
|
188
192
|
{
|
|
189
193
|
"path": "harness-run/SKILL.md",
|
|
190
|
-
"sha256": "
|
|
194
|
+
"sha256": "34adf122fa079a5e3d62df0dab4360062fedf00185b4780aa32761fa554f65e3"
|
|
191
195
|
},
|
|
192
196
|
{
|
|
193
197
|
"path": "harness-submit/checklist.md",
|
|
@@ -199,7 +203,7 @@
|
|
|
199
203
|
},
|
|
200
204
|
{
|
|
201
205
|
"path": "harness-submit/SKILL.md",
|
|
202
|
-
"sha256": "
|
|
206
|
+
"sha256": "17394d3829b2344d5dfbcb2d7a150305f9fe268c57a548e0d88d239eb79af9f7"
|
|
203
207
|
},
|
|
204
208
|
{
|
|
205
209
|
"path": "harness-sync/reference.md",
|
|
@@ -207,7 +211,7 @@
|
|
|
207
211
|
},
|
|
208
212
|
{
|
|
209
213
|
"path": "harness-sync/SKILL.md",
|
|
210
|
-
"sha256": "
|
|
214
|
+
"sha256": "821c3dcf7333322d0c5f619a00bfc44dbc903b1aa080aeed4b75574cd8bc2fc9"
|
|
211
215
|
},
|
|
212
216
|
{
|
|
213
217
|
"path": "harness-test/checklist.md",
|
|
@@ -231,7 +235,7 @@
|
|
|
231
235
|
},
|
|
232
236
|
{
|
|
233
237
|
"path": "harness-test/SKILL.md",
|
|
234
|
-
"sha256": "
|
|
238
|
+
"sha256": "28fd5c0e24b219732cff8fe528bdafd43ebc4a934a45a477e246a27e85e893f5"
|
|
235
239
|
},
|
|
236
240
|
{
|
|
237
241
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -269,9 +273,17 @@
|
|
|
269
273
|
"path": "README.md",
|
|
270
274
|
"sha256": "57ae38357a7bf4118f91c4404b8133a81aced923c836c498b04ff18461eae665"
|
|
271
275
|
},
|
|
276
|
+
{
|
|
277
|
+
"path": "scripts/harness_apidoc.py",
|
|
278
|
+
"sha256": "3fa77ffabf99075a90374d9a4b2ddca3408cc5b90610725d779d9d0dfb70fbbb"
|
|
279
|
+
},
|
|
272
280
|
{
|
|
273
281
|
"path": "scripts/harness_archive.py",
|
|
274
|
-
"sha256": "
|
|
282
|
+
"sha256": "b48bea12431e4122bae5b3f776b518fe4b48b873ba85b1c4e09a29f15a046ad2"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"path": "scripts/harness_change.py",
|
|
286
|
+
"sha256": "e15697ef34685c9cd55d21dac4e2de21815ff3d984605a47b4e9cac5b4829693"
|
|
275
287
|
},
|
|
276
288
|
{
|
|
277
289
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -283,7 +295,11 @@
|
|
|
283
295
|
},
|
|
284
296
|
{
|
|
285
297
|
"path": "scripts/harness_events.py",
|
|
286
|
-
"sha256": "
|
|
298
|
+
"sha256": "5ebe48d649ed3040245c676ea38ecb2a443582228340c4631481da2e853cd9a0"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"path": "scripts/harness_gate.py",
|
|
302
|
+
"sha256": "fdc596d51116e6fce58baad24673c94fc04b78b4af8781ee8afd7b2cdb3121eb"
|
|
287
303
|
},
|
|
288
304
|
{
|
|
289
305
|
"path": "scripts/harness_ledger.py",
|
|
@@ -299,7 +315,7 @@
|
|
|
299
315
|
},
|
|
300
316
|
{
|
|
301
317
|
"path": "scripts/harness_service.py",
|
|
302
|
-
"sha256": "
|
|
318
|
+
"sha256": "17c26b40ed3e7d110b74ef61e627fa0ad1bc84718a1721a066e6d72ee0e37649"
|
|
303
319
|
},
|
|
304
320
|
{
|
|
305
321
|
"path": "scripts/harness_state.py",
|
|
@@ -307,7 +323,11 @@
|
|
|
307
323
|
},
|
|
308
324
|
{
|
|
309
325
|
"path": "scripts/harness_test_guard.py",
|
|
310
|
-
"sha256": "
|
|
326
|
+
"sha256": "ee3306a56a9ee7adf37ad4bcd26505c6d2c21fcdcb35b88cf5951c05a8f3b615"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"path": "scripts/harness_workflow_policy.py",
|
|
330
|
+
"sha256": "3e754da7041ebec852c3f0be8736cec423d7a0ee98424164bfe4a06fc4d8ca4f"
|
|
311
331
|
}
|
|
312
332
|
]
|
|
313
333
|
}
|
|
@@ -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.8",
|
|
10
|
+
"content_sha256": "sha256:19393034edc3d90b41be6d5a34d682f2be5644b96ee83d0d3f595bc6f9a60c9f"
|
|
11
11
|
}
|