@hunter-harness/workflow-harness 0.2.6 → 0.2.7
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 +854 -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 +854 -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 +854 -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 +854 -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 +854 -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 +854 -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 +854 -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 +854 -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 +39 -19
- package/harness/manifests/general/codebuddy.json +39 -19
- package/harness/manifests/general/codex.json +39 -19
- package/harness/manifests/general/cursor.json +39 -19
- package/harness/manifests/java/claude-code.json +39 -19
- package/harness/manifests/java/codebuddy.json +39 -19
- package/harness/manifests/java/codex.json +39 -19
- package/harness/manifests/java/cursor.json +39 -19
- 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.7",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "81541194418d2330c80966a4adf0371b5c6b8d9d83a36b895c48748b654d5343"
|
|
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": "af9885ee29fbee0e1791c4e0b4a15c96762fc761097d25929fa348730bba3ecc"
|
|
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": "d18ecf27bafa17f301de32d5d80ea259f2fc80e09a3487ef0c1411b821cb80cc"
|
|
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": "51a031ab40a45b8fdcd7200b35ab135d13128a38bcc89fb586c81d9b5ce5788e"
|
|
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": "3f0ef46bc362d88df1a13702e0d69751fb21bd34820433887f67c05acde2e4b6"
|
|
127
131
|
},
|
|
128
132
|
{
|
|
129
133
|
"path": "harness-knowledge-query/SKILL.md",
|
|
130
|
-
"sha256": "
|
|
134
|
+
"sha256": "a8dff5bd6eb9c22ef8bac6db3f2bce01c846af2d81fbeb2aac3a3650f45db024"
|
|
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": "4fea3783eab0d55caa73f30f24920de86f39b673367ac3b013240b8e1bc0e1e3"
|
|
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": "5107a1d9725f852b0f6c59fef9d16b8aa8e3fa843a5701d575df86e84687d19c"
|
|
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": "2b7a8da6372eb70bcc3dbf30d1e3b554df36b52e2d5ee63fac222ebeee4a5f92"
|
|
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": "642441b62ba9201f572f28a472b27fd48151cba1b9dfee1bc8a9e0b14f5aab31"
|
|
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": "eab677bd2cd5dcc81a2aa6dede5bb2c902779644064eeda545430445993792ed"
|
|
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": "1252cbf44a0c78f6912bc84cb36f96760c7881ce34b80d227e183f5be1e1db2b"
|
|
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": "34c1759c756edc0acf6b011679b614a10890304e8307e0e2b192c915cf968a1a"
|
|
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": "50672476e1a66e046e0b16c86cf55b03e117fc2adf8e0df2ced14aa04f7b2548"
|
|
275
287
|
},
|
|
276
288
|
{
|
|
277
289
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -285,6 +297,10 @@
|
|
|
285
297
|
"path": "scripts/harness_events.py",
|
|
286
298
|
"sha256": "dbfb0ba77ebf4a11410449bbf437be93f0f80184d1aa8b1b128f3054635d107e"
|
|
287
299
|
},
|
|
300
|
+
{
|
|
301
|
+
"path": "scripts/harness_gate.py",
|
|
302
|
+
"sha256": "fdc596d51116e6fce58baad24673c94fc04b78b4af8781ee8afd7b2cdb3121eb"
|
|
303
|
+
},
|
|
288
304
|
{
|
|
289
305
|
"path": "scripts/harness_ledger.py",
|
|
290
306
|
"sha256": "36a9921ff70e17b3c8946db1846bf447607822ad90e17351b88efab189d15b41"
|
|
@@ -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.7",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "0e2f7ad916752d8f5b8337a883b3aeb4ba2925f62e8b7e916898edc18eaecd31"
|
|
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": "f65187cfcd03413c339c8e2ffc625344f5a48e43239bece6f37eb479789657df"
|
|
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": "9cf1aac17a5a1c8ce871af312d982d4379f01544d3f9ca41ca1531c9449cbcd1"
|
|
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": "97e9f21f10de85d7ce846585f596533ff1eea88c1a249d6ed37b5d7bf6fa5f59"
|
|
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": "2bf42bb0c8081a187b9e2494826f920f491875a5ee0381f51da73a29812d52bc"
|
|
127
131
|
},
|
|
128
132
|
{
|
|
129
133
|
"path": "harness-knowledge-query/SKILL.md",
|
|
130
|
-
"sha256": "
|
|
134
|
+
"sha256": "050bb431d72de2151f7865536a3eb4e760b7ffae54474c9575a9388aecda2156"
|
|
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": "819463bc35828947cda9f6e8d390f13c258da4c9a26521a21414180898736260"
|
|
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": "03f0aa89a3722a07a857be4df2118924990d910666f9a95150084a1e5d3d9b5d"
|
|
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": "95e5305ccca3c2a77c4079993ac2dd20e7500098dedcd9aa0202e80b4e7a8be4"
|
|
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": "d94e662847eccf01ef510d170f53060d546ecf29c12e3bebf736029f5316d2a6"
|
|
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": "96aff525693fde1f501888ebb50d51bcebe26a793d933f6dfe6d0b67e73a4973"
|
|
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": "28f07629ae8655481558496373f30736ce2caa568fa8423802464e5abce4e9ba"
|
|
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": "c7cd5ab547b6e7f430cb4e590cfc3ebcc6ead7035ae0cd77fd276c39ecc6cab6"
|
|
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": "50672476e1a66e046e0b16c86cf55b03e117fc2adf8e0df2ced14aa04f7b2548"
|
|
275
287
|
},
|
|
276
288
|
{
|
|
277
289
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -285,6 +297,10 @@
|
|
|
285
297
|
"path": "scripts/harness_events.py",
|
|
286
298
|
"sha256": "dbfb0ba77ebf4a11410449bbf437be93f0f80184d1aa8b1b128f3054635d107e"
|
|
287
299
|
},
|
|
300
|
+
{
|
|
301
|
+
"path": "scripts/harness_gate.py",
|
|
302
|
+
"sha256": "fdc596d51116e6fce58baad24673c94fc04b78b4af8781ee8afd7b2cdb3121eb"
|
|
303
|
+
},
|
|
288
304
|
{
|
|
289
305
|
"path": "scripts/harness_ledger.py",
|
|
290
306
|
"sha256": "36a9921ff70e17b3c8946db1846bf447607822ad90e17351b88efab189d15b41"
|
|
@@ -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.7",
|
|
10
|
+
"content_sha256": "sha256:564825691a55dad37ba5e277cd93c89b973ab5943603604159b9e111462d16f7"
|
|
11
11
|
}
|