@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,12 +2,12 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "general",
|
|
4
4
|
"adapter": "claude-code",
|
|
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": "62f9de42abd5f5bfb76387cb20376045bd4be7e9fec84fb46126a56fd54a283b"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "agents/harness-evaluator.md",
|
|
@@ -25,6 +25,10 @@
|
|
|
25
25
|
"path": "CONTEXT.md",
|
|
26
26
|
"sha256": "19c75b493f6f760d0e607a88bd355acdd232fcb66660887ef94d10425f39507b"
|
|
27
27
|
},
|
|
28
|
+
{
|
|
29
|
+
"path": "contracts/workflow-policy.json",
|
|
30
|
+
"sha256": "36614a228338a7e8f2b518351c129607245e3910a67062a5047acdcd42e86853"
|
|
31
|
+
},
|
|
28
32
|
{
|
|
29
33
|
"path": "harness-archive/checklist.md",
|
|
30
34
|
"sha256": "0329561202acf39646f08c861a2859ffe68164df05b95526af86c5b1842d2009"
|
|
@@ -39,7 +43,7 @@
|
|
|
39
43
|
},
|
|
40
44
|
{
|
|
41
45
|
"path": "harness-archive/SKILL.md",
|
|
42
|
-
"sha256": "
|
|
46
|
+
"sha256": "aafc3b5b11020aa722f6a069b63fc53c6566fb98ffa3c50681712ee832ed3c6c"
|
|
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": "c1ed96332c181b5a2290b9be46d06b9cdef9d56ad166c6398392a57e447939af"
|
|
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": "5bc4b25a863c3d40af2b4213d087f93a309c877c844ab475fb288a351a3673b3"
|
|
127
131
|
},
|
|
128
132
|
{
|
|
129
133
|
"path": "harness-knowledge-query/SKILL.md",
|
|
130
|
-
"sha256": "
|
|
134
|
+
"sha256": "8237f93b7e961e21823e562f4a116a63b0d95f9e7c311d3176fe1a77248e6239"
|
|
131
135
|
},
|
|
132
136
|
{
|
|
133
137
|
"path": "harness-plan/checklist.md",
|
|
@@ -143,7 +147,7 @@
|
|
|
143
147
|
},
|
|
144
148
|
{
|
|
145
149
|
"path": "harness-plan/SKILL.md",
|
|
146
|
-
"sha256": "
|
|
150
|
+
"sha256": "0d8fbc2c59b0d0f1343f978848c0d4f1e93e10147d704f891d298b155ccef697"
|
|
147
151
|
},
|
|
148
152
|
{
|
|
149
153
|
"path": "harness-review/checklist.md",
|
|
@@ -159,11 +163,11 @@
|
|
|
159
163
|
},
|
|
160
164
|
{
|
|
161
165
|
"path": "harness-review/SKILL.md",
|
|
162
|
-
"sha256": "
|
|
166
|
+
"sha256": "85d5c71739c9b46423db5f0e8222ac72c6831afaec7ffa4db6819a30e8efc4bf"
|
|
163
167
|
},
|
|
164
168
|
{
|
|
165
169
|
"path": "harness-run/checklist.md",
|
|
166
|
-
"sha256": "
|
|
170
|
+
"sha256": "1bbfdf3d2a5ac7daa7155bfe0ac39c92e3527edf1b66bdf1ece232d63bd31dc3"
|
|
167
171
|
},
|
|
168
172
|
{
|
|
169
173
|
"path": "harness-run/protocols.md",
|
|
@@ -171,11 +175,11 @@
|
|
|
171
175
|
},
|
|
172
176
|
{
|
|
173
177
|
"path": "harness-run/reference.md",
|
|
174
|
-
"sha256": "
|
|
178
|
+
"sha256": "011a7f75e49392df9c7cde0d7126ac9b6772f779b22807e3b09b49f32622e447"
|
|
175
179
|
},
|
|
176
180
|
{
|
|
177
181
|
"path": "harness-run/SKILL.md",
|
|
178
|
-
"sha256": "
|
|
182
|
+
"sha256": "c0db9a68f55106b8696d0b00e142a8119e077cafce18dd4e0e19303567068c34"
|
|
179
183
|
},
|
|
180
184
|
{
|
|
181
185
|
"path": "harness-submit/checklist.md",
|
|
@@ -187,7 +191,7 @@
|
|
|
187
191
|
},
|
|
188
192
|
{
|
|
189
193
|
"path": "harness-submit/SKILL.md",
|
|
190
|
-
"sha256": "
|
|
194
|
+
"sha256": "48ef9c28d527dc3b9b06e3fe228368076b8394e6489bd0280f09b1d8805df56e"
|
|
191
195
|
},
|
|
192
196
|
{
|
|
193
197
|
"path": "harness-sync/reference.md",
|
|
@@ -195,7 +199,7 @@
|
|
|
195
199
|
},
|
|
196
200
|
{
|
|
197
201
|
"path": "harness-sync/SKILL.md",
|
|
198
|
-
"sha256": "
|
|
202
|
+
"sha256": "0764a8f16714fcd95bf8326b432521b0b46ba7dc2316543ebde46971fe011768"
|
|
199
203
|
},
|
|
200
204
|
{
|
|
201
205
|
"path": "harness-test/checklist.md",
|
|
@@ -215,7 +219,7 @@
|
|
|
215
219
|
},
|
|
216
220
|
{
|
|
217
221
|
"path": "harness-test/SKILL.md",
|
|
218
|
-
"sha256": "
|
|
222
|
+
"sha256": "50cb626636fb40b1fe0038dbfb6deb988109970963257e0804b4a1dc68d20e69"
|
|
219
223
|
},
|
|
220
224
|
{
|
|
221
225
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -253,9 +257,17 @@
|
|
|
253
257
|
"path": "README.md",
|
|
254
258
|
"sha256": "57ae38357a7bf4118f91c4404b8133a81aced923c836c498b04ff18461eae665"
|
|
255
259
|
},
|
|
260
|
+
{
|
|
261
|
+
"path": "scripts/harness_apidoc.py",
|
|
262
|
+
"sha256": "3fa77ffabf99075a90374d9a4b2ddca3408cc5b90610725d779d9d0dfb70fbbb"
|
|
263
|
+
},
|
|
256
264
|
{
|
|
257
265
|
"path": "scripts/harness_archive.py",
|
|
258
|
-
"sha256": "
|
|
266
|
+
"sha256": "b48bea12431e4122bae5b3f776b518fe4b48b873ba85b1c4e09a29f15a046ad2"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"path": "scripts/harness_change.py",
|
|
270
|
+
"sha256": "50672476e1a66e046e0b16c86cf55b03e117fc2adf8e0df2ced14aa04f7b2548"
|
|
259
271
|
},
|
|
260
272
|
{
|
|
261
273
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -269,6 +281,10 @@
|
|
|
269
281
|
"path": "scripts/harness_events.py",
|
|
270
282
|
"sha256": "dbfb0ba77ebf4a11410449bbf437be93f0f80184d1aa8b1b128f3054635d107e"
|
|
271
283
|
},
|
|
284
|
+
{
|
|
285
|
+
"path": "scripts/harness_gate.py",
|
|
286
|
+
"sha256": "fdc596d51116e6fce58baad24673c94fc04b78b4af8781ee8afd7b2cdb3121eb"
|
|
287
|
+
},
|
|
272
288
|
{
|
|
273
289
|
"path": "scripts/harness_ledger.py",
|
|
274
290
|
"sha256": "36a9921ff70e17b3c8946db1846bf447607822ad90e17351b88efab189d15b41"
|
|
@@ -283,7 +299,7 @@
|
|
|
283
299
|
},
|
|
284
300
|
{
|
|
285
301
|
"path": "scripts/harness_service.py",
|
|
286
|
-
"sha256": "
|
|
302
|
+
"sha256": "17c26b40ed3e7d110b74ef61e627fa0ad1bc84718a1721a066e6d72ee0e37649"
|
|
287
303
|
},
|
|
288
304
|
{
|
|
289
305
|
"path": "scripts/harness_state.py",
|
|
@@ -291,7 +307,11 @@
|
|
|
291
307
|
},
|
|
292
308
|
{
|
|
293
309
|
"path": "scripts/harness_test_guard.py",
|
|
294
|
-
"sha256": "
|
|
310
|
+
"sha256": "ee3306a56a9ee7adf37ad4bcd26505c6d2c21fcdcb35b88cf5951c05a8f3b615"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"path": "scripts/harness_workflow_policy.py",
|
|
314
|
+
"sha256": "3e754da7041ebec852c3f0be8736cec423d7a0ee98424164bfe4a06fc4d8ca4f"
|
|
295
315
|
}
|
|
296
316
|
]
|
|
297
317
|
}
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "general",
|
|
4
4
|
"adapter": "codebuddy",
|
|
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": "82e7ca91e1de4f7a268812a4d44ea58a5a9f58204f64258fca9f705e377a94b3"
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"path": "agents/harness-evaluator.md",
|
|
@@ -25,6 +25,10 @@
|
|
|
25
25
|
"path": "CONTEXT.md",
|
|
26
26
|
"sha256": "19c75b493f6f760d0e607a88bd355acdd232fcb66660887ef94d10425f39507b"
|
|
27
27
|
},
|
|
28
|
+
{
|
|
29
|
+
"path": "contracts/workflow-policy.json",
|
|
30
|
+
"sha256": "36614a228338a7e8f2b518351c129607245e3910a67062a5047acdcd42e86853"
|
|
31
|
+
},
|
|
28
32
|
{
|
|
29
33
|
"path": "harness-archive/checklist.md",
|
|
30
34
|
"sha256": "0329561202acf39646f08c861a2859ffe68164df05b95526af86c5b1842d2009"
|
|
@@ -39,7 +43,7 @@
|
|
|
39
43
|
},
|
|
40
44
|
{
|
|
41
45
|
"path": "harness-archive/SKILL.md",
|
|
42
|
-
"sha256": "
|
|
46
|
+
"sha256": "1101ff1566fe775869988347890adc85392eb060c0e87bc3b98e4608ad8883f7"
|
|
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": "38080ef3e37c15d09325566087d378f52f37b80ea16a3294a6a263832f2e7cbd"
|
|
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": "ea7043e61023abda02ad904d5707b972051cea917329ec04093884471d6f5d00"
|
|
127
131
|
},
|
|
128
132
|
{
|
|
129
133
|
"path": "harness-knowledge-query/SKILL.md",
|
|
130
|
-
"sha256": "
|
|
134
|
+
"sha256": "4546742d11d478fb18712d032c87793da2a74f4306a74034b1e52be0fa60ffac"
|
|
131
135
|
},
|
|
132
136
|
{
|
|
133
137
|
"path": "harness-plan/checklist.md",
|
|
@@ -143,7 +147,7 @@
|
|
|
143
147
|
},
|
|
144
148
|
{
|
|
145
149
|
"path": "harness-plan/SKILL.md",
|
|
146
|
-
"sha256": "
|
|
150
|
+
"sha256": "d8f43c6e24acce0b71ea58031029cd530351b28b1b1637d4278941ac0b5585a4"
|
|
147
151
|
},
|
|
148
152
|
{
|
|
149
153
|
"path": "harness-review/checklist.md",
|
|
@@ -159,11 +163,11 @@
|
|
|
159
163
|
},
|
|
160
164
|
{
|
|
161
165
|
"path": "harness-review/SKILL.md",
|
|
162
|
-
"sha256": "
|
|
166
|
+
"sha256": "9acdec41556bc5872da1982b5044a5de05fb21c59b2a6dd9f96260691b075a26"
|
|
163
167
|
},
|
|
164
168
|
{
|
|
165
169
|
"path": "harness-run/checklist.md",
|
|
166
|
-
"sha256": "
|
|
170
|
+
"sha256": "1bbfdf3d2a5ac7daa7155bfe0ac39c92e3527edf1b66bdf1ece232d63bd31dc3"
|
|
167
171
|
},
|
|
168
172
|
{
|
|
169
173
|
"path": "harness-run/protocols.md",
|
|
@@ -171,11 +175,11 @@
|
|
|
171
175
|
},
|
|
172
176
|
{
|
|
173
177
|
"path": "harness-run/reference.md",
|
|
174
|
-
"sha256": "
|
|
178
|
+
"sha256": "011a7f75e49392df9c7cde0d7126ac9b6772f779b22807e3b09b49f32622e447"
|
|
175
179
|
},
|
|
176
180
|
{
|
|
177
181
|
"path": "harness-run/SKILL.md",
|
|
178
|
-
"sha256": "
|
|
182
|
+
"sha256": "5c3aeb6ad0d4e6c7559b5981287f254f8c78049933f1f70b6037e5feeb65cadc"
|
|
179
183
|
},
|
|
180
184
|
{
|
|
181
185
|
"path": "harness-submit/checklist.md",
|
|
@@ -187,7 +191,7 @@
|
|
|
187
191
|
},
|
|
188
192
|
{
|
|
189
193
|
"path": "harness-submit/SKILL.md",
|
|
190
|
-
"sha256": "
|
|
194
|
+
"sha256": "424039642d3657c1bf47e4c99a9c0c2a6ee1676e388b7b1a91c73b33fbcfcd8e"
|
|
191
195
|
},
|
|
192
196
|
{
|
|
193
197
|
"path": "harness-sync/reference.md",
|
|
@@ -195,7 +199,7 @@
|
|
|
195
199
|
},
|
|
196
200
|
{
|
|
197
201
|
"path": "harness-sync/SKILL.md",
|
|
198
|
-
"sha256": "
|
|
202
|
+
"sha256": "10b5fd45695cc931d217280ced77a3e57d0ceeb95031dad41b58658c980b669d"
|
|
199
203
|
},
|
|
200
204
|
{
|
|
201
205
|
"path": "harness-test/checklist.md",
|
|
@@ -215,7 +219,7 @@
|
|
|
215
219
|
},
|
|
216
220
|
{
|
|
217
221
|
"path": "harness-test/SKILL.md",
|
|
218
|
-
"sha256": "
|
|
222
|
+
"sha256": "dd7b93192c99f678b1eb8af15a7ca3c8e5d196545dc99c3759307a1bcb87111b"
|
|
219
223
|
},
|
|
220
224
|
{
|
|
221
225
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -253,9 +257,17 @@
|
|
|
253
257
|
"path": "README.md",
|
|
254
258
|
"sha256": "57ae38357a7bf4118f91c4404b8133a81aced923c836c498b04ff18461eae665"
|
|
255
259
|
},
|
|
260
|
+
{
|
|
261
|
+
"path": "scripts/harness_apidoc.py",
|
|
262
|
+
"sha256": "3fa77ffabf99075a90374d9a4b2ddca3408cc5b90610725d779d9d0dfb70fbbb"
|
|
263
|
+
},
|
|
256
264
|
{
|
|
257
265
|
"path": "scripts/harness_archive.py",
|
|
258
|
-
"sha256": "
|
|
266
|
+
"sha256": "b48bea12431e4122bae5b3f776b518fe4b48b873ba85b1c4e09a29f15a046ad2"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"path": "scripts/harness_change.py",
|
|
270
|
+
"sha256": "50672476e1a66e046e0b16c86cf55b03e117fc2adf8e0df2ced14aa04f7b2548"
|
|
259
271
|
},
|
|
260
272
|
{
|
|
261
273
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -269,6 +281,10 @@
|
|
|
269
281
|
"path": "scripts/harness_events.py",
|
|
270
282
|
"sha256": "dbfb0ba77ebf4a11410449bbf437be93f0f80184d1aa8b1b128f3054635d107e"
|
|
271
283
|
},
|
|
284
|
+
{
|
|
285
|
+
"path": "scripts/harness_gate.py",
|
|
286
|
+
"sha256": "fdc596d51116e6fce58baad24673c94fc04b78b4af8781ee8afd7b2cdb3121eb"
|
|
287
|
+
},
|
|
272
288
|
{
|
|
273
289
|
"path": "scripts/harness_ledger.py",
|
|
274
290
|
"sha256": "36a9921ff70e17b3c8946db1846bf447607822ad90e17351b88efab189d15b41"
|
|
@@ -283,7 +299,7 @@
|
|
|
283
299
|
},
|
|
284
300
|
{
|
|
285
301
|
"path": "scripts/harness_service.py",
|
|
286
|
-
"sha256": "
|
|
302
|
+
"sha256": "17c26b40ed3e7d110b74ef61e627fa0ad1bc84718a1721a066e6d72ee0e37649"
|
|
287
303
|
},
|
|
288
304
|
{
|
|
289
305
|
"path": "scripts/harness_state.py",
|
|
@@ -291,7 +307,11 @@
|
|
|
291
307
|
},
|
|
292
308
|
{
|
|
293
309
|
"path": "scripts/harness_test_guard.py",
|
|
294
|
-
"sha256": "
|
|
310
|
+
"sha256": "ee3306a56a9ee7adf37ad4bcd26505c6d2c21fcdcb35b88cf5951c05a8f3b615"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"path": "scripts/harness_workflow_policy.py",
|
|
314
|
+
"sha256": "3e754da7041ebec852c3f0be8736cec423d7a0ee98424164bfe4a06fc4d8ca4f"
|
|
295
315
|
}
|
|
296
316
|
]
|
|
297
317
|
}
|
|
@@ -2,17 +2,21 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "general",
|
|
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": "2415655b6d30488eca0c69339df91bdd16ce777726a4aa4ba8e28ff8a851d1db"
|
|
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-archive/checklist.md",
|
|
18
22
|
"sha256": "0329561202acf39646f08c861a2859ffe68164df05b95526af86c5b1842d2009"
|
|
@@ -27,7 +31,7 @@
|
|
|
27
31
|
},
|
|
28
32
|
{
|
|
29
33
|
"path": "harness-archive/SKILL.md",
|
|
30
|
-
"sha256": "
|
|
34
|
+
"sha256": "6b57cd31d6e7cdf76e5c266b1ebcd27213d228beb281cd402206a5644d6c407b"
|
|
31
35
|
},
|
|
32
36
|
{
|
|
33
37
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
@@ -47,7 +51,7 @@
|
|
|
47
51
|
},
|
|
48
52
|
{
|
|
49
53
|
"path": "harness-codebase-map/SKILL.md",
|
|
50
|
-
"sha256": "
|
|
54
|
+
"sha256": "e126832f26ad6c42aca6135d0930e93053e8c43c8fe1bb30d930bb8499900ef9"
|
|
51
55
|
},
|
|
52
56
|
{
|
|
53
57
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -103,19 +107,19 @@
|
|
|
103
107
|
},
|
|
104
108
|
{
|
|
105
109
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge_mcp.py",
|
|
106
|
-
"sha256": "
|
|
110
|
+
"sha256": "a421ca43e8d1ef1718d51a398e20abae411ea0007b3d45aa333791c511a2aa33"
|
|
107
111
|
},
|
|
108
112
|
{
|
|
109
113
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
110
|
-
"sha256": "
|
|
114
|
+
"sha256": "2764b7985cf2675749bef3e7742f8ed93b4293c3603eef4a78040a97e5b05144"
|
|
111
115
|
},
|
|
112
116
|
{
|
|
113
117
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
114
|
-
"sha256": "
|
|
118
|
+
"sha256": "b04787baabe9c9988b75ef5082a2479e5dc8a5bae36a1263a771b1eca703601f"
|
|
115
119
|
},
|
|
116
120
|
{
|
|
117
121
|
"path": "harness-knowledge-query/SKILL.md",
|
|
118
|
-
"sha256": "
|
|
122
|
+
"sha256": "ed9cd5bbcb2a6202cbdeefd2fca6091edd68e0cf48e2a2df390685b3b2e6e9d2"
|
|
119
123
|
},
|
|
120
124
|
{
|
|
121
125
|
"path": "harness-plan/checklist.md",
|
|
@@ -131,7 +135,7 @@
|
|
|
131
135
|
},
|
|
132
136
|
{
|
|
133
137
|
"path": "harness-plan/SKILL.md",
|
|
134
|
-
"sha256": "
|
|
138
|
+
"sha256": "ecc2b740ebf24f61d2cb338932a23ea9a5725d0781ab02fd7ccab0e2e7e45eeb"
|
|
135
139
|
},
|
|
136
140
|
{
|
|
137
141
|
"path": "harness-review/checklist.md",
|
|
@@ -147,11 +151,11 @@
|
|
|
147
151
|
},
|
|
148
152
|
{
|
|
149
153
|
"path": "harness-review/SKILL.md",
|
|
150
|
-
"sha256": "
|
|
154
|
+
"sha256": "476e2732e4d7a9a74fffe74b0a82117dcadaec9804f474af92043b8b37dca734"
|
|
151
155
|
},
|
|
152
156
|
{
|
|
153
157
|
"path": "harness-run/checklist.md",
|
|
154
|
-
"sha256": "
|
|
158
|
+
"sha256": "1bbfdf3d2a5ac7daa7155bfe0ac39c92e3527edf1b66bdf1ece232d63bd31dc3"
|
|
155
159
|
},
|
|
156
160
|
{
|
|
157
161
|
"path": "harness-run/protocols.md",
|
|
@@ -159,11 +163,11 @@
|
|
|
159
163
|
},
|
|
160
164
|
{
|
|
161
165
|
"path": "harness-run/reference.md",
|
|
162
|
-
"sha256": "
|
|
166
|
+
"sha256": "011a7f75e49392df9c7cde0d7126ac9b6772f779b22807e3b09b49f32622e447"
|
|
163
167
|
},
|
|
164
168
|
{
|
|
165
169
|
"path": "harness-run/SKILL.md",
|
|
166
|
-
"sha256": "
|
|
170
|
+
"sha256": "aab19b9dc37e561c5cd26afa0f01edbe240f692653df212a1480ebbaab7c3d96"
|
|
167
171
|
},
|
|
168
172
|
{
|
|
169
173
|
"path": "harness-submit/checklist.md",
|
|
@@ -175,7 +179,7 @@
|
|
|
175
179
|
},
|
|
176
180
|
{
|
|
177
181
|
"path": "harness-submit/SKILL.md",
|
|
178
|
-
"sha256": "
|
|
182
|
+
"sha256": "96019258a3bd64c628447df3ae4ca5298411bcefe17cd0273df8e9c5bdd95337"
|
|
179
183
|
},
|
|
180
184
|
{
|
|
181
185
|
"path": "harness-sync/reference.md",
|
|
@@ -183,7 +187,7 @@
|
|
|
183
187
|
},
|
|
184
188
|
{
|
|
185
189
|
"path": "harness-sync/SKILL.md",
|
|
186
|
-
"sha256": "
|
|
190
|
+
"sha256": "43f856037e79d17ae7d894c9b391fcc91eda110f59044c585cfc1b6e977cc47e"
|
|
187
191
|
},
|
|
188
192
|
{
|
|
189
193
|
"path": "harness-test/checklist.md",
|
|
@@ -203,7 +207,7 @@
|
|
|
203
207
|
},
|
|
204
208
|
{
|
|
205
209
|
"path": "harness-test/SKILL.md",
|
|
206
|
-
"sha256": "
|
|
210
|
+
"sha256": "f4b13abfb673d02a03c68e8a3a62c54dbbf2aa36b4341e063b00f3776676129f"
|
|
207
211
|
},
|
|
208
212
|
{
|
|
209
213
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -241,9 +245,17 @@
|
|
|
241
245
|
"path": "README.md",
|
|
242
246
|
"sha256": "57ae38357a7bf4118f91c4404b8133a81aced923c836c498b04ff18461eae665"
|
|
243
247
|
},
|
|
248
|
+
{
|
|
249
|
+
"path": "scripts/harness_apidoc.py",
|
|
250
|
+
"sha256": "3fa77ffabf99075a90374d9a4b2ddca3408cc5b90610725d779d9d0dfb70fbbb"
|
|
251
|
+
},
|
|
244
252
|
{
|
|
245
253
|
"path": "scripts/harness_archive.py",
|
|
246
|
-
"sha256": "
|
|
254
|
+
"sha256": "b48bea12431e4122bae5b3f776b518fe4b48b873ba85b1c4e09a29f15a046ad2"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"path": "scripts/harness_change.py",
|
|
258
|
+
"sha256": "50672476e1a66e046e0b16c86cf55b03e117fc2adf8e0df2ced14aa04f7b2548"
|
|
247
259
|
},
|
|
248
260
|
{
|
|
249
261
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -257,6 +269,10 @@
|
|
|
257
269
|
"path": "scripts/harness_events.py",
|
|
258
270
|
"sha256": "dbfb0ba77ebf4a11410449bbf437be93f0f80184d1aa8b1b128f3054635d107e"
|
|
259
271
|
},
|
|
272
|
+
{
|
|
273
|
+
"path": "scripts/harness_gate.py",
|
|
274
|
+
"sha256": "fdc596d51116e6fce58baad24673c94fc04b78b4af8781ee8afd7b2cdb3121eb"
|
|
275
|
+
},
|
|
260
276
|
{
|
|
261
277
|
"path": "scripts/harness_ledger.py",
|
|
262
278
|
"sha256": "36a9921ff70e17b3c8946db1846bf447607822ad90e17351b88efab189d15b41"
|
|
@@ -271,7 +287,7 @@
|
|
|
271
287
|
},
|
|
272
288
|
{
|
|
273
289
|
"path": "scripts/harness_service.py",
|
|
274
|
-
"sha256": "
|
|
290
|
+
"sha256": "17c26b40ed3e7d110b74ef61e627fa0ad1bc84718a1721a066e6d72ee0e37649"
|
|
275
291
|
},
|
|
276
292
|
{
|
|
277
293
|
"path": "scripts/harness_state.py",
|
|
@@ -279,7 +295,11 @@
|
|
|
279
295
|
},
|
|
280
296
|
{
|
|
281
297
|
"path": "scripts/harness_test_guard.py",
|
|
282
|
-
"sha256": "
|
|
298
|
+
"sha256": "ee3306a56a9ee7adf37ad4bcd26505c6d2c21fcdcb35b88cf5951c05a8f3b615"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"path": "scripts/harness_workflow_policy.py",
|
|
302
|
+
"sha256": "3e754da7041ebec852c3f0be8736cec423d7a0ee98424164bfe4a06fc4d8ca4f"
|
|
283
303
|
}
|
|
284
304
|
]
|
|
285
305
|
}
|