@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": "general",
|
|
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": "625a160876f641d4d70f5ff32d3d9e31e0bb1d9df13473a4957cfd17eb382a75"
|
|
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": "58f66dfa0c7969f7997fa8f7a3cbf861a855c7f2f6176f2b84ad2ed44af2a287"
|
|
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": "88aee0082c7e705be72d9da8f8efe8a5a7faa4c80c88926875ce56e7ecc42797"
|
|
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": "349f44802e3367062bb397f1e929bbd9a7ae129dc6f71ecd510a6c035c1db541"
|
|
115
119
|
},
|
|
116
120
|
{
|
|
117
121
|
"path": "harness-knowledge-query/SKILL.md",
|
|
118
|
-
"sha256": "
|
|
122
|
+
"sha256": "fd622f7e27631da386a5510547bbcbdb8164401e9dd056a07622e552419e6a8a"
|
|
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": "1f43ff1612ad050845e7373574d7769cf0834b36b05845b0b8c896eaf2760442"
|
|
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": "15967f292d132994c4812768fb2c522058cb3554f135ed64cf943487119ab14c"
|
|
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": "c2fb074d73468aea94d9e86d752eeef5f94e95fa675a1cbfbcdae1c699c6439f"
|
|
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": "3c37f68b9dbcb8ffa2321faeee74a3be632f67d2d50ea6a85a30e52479e190d6"
|
|
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": "eddb02c9dd7d4b407a4988e1f96aab57998b5c58c23bae8423c8638266b3d96c"
|
|
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": "240a68a2c19f808cfe67d946a1bce0725db9d3b3c62ac0dab000f74a4493b263"
|
|
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
|
}
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "claude-code",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.7",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "621a0e47d1bcc75e2ad9b7e40fb9c3732b191a687e09e06ebf8923011baf076c"
|
|
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-apidoc/checklist.md",
|
|
30
34
|
"sha256": "48acef732cd0594fd4ea20e6f82642e5ab72695a159ebfe94ff44736db9e9d41"
|
|
@@ -35,7 +39,7 @@
|
|
|
35
39
|
},
|
|
36
40
|
{
|
|
37
41
|
"path": "harness-apidoc/SKILL.md",
|
|
38
|
-
"sha256": "
|
|
42
|
+
"sha256": "33f1e70e507501d932b19b5b5c90f58dd3f32ccb923258d7ede5d088fe6b9e9c"
|
|
39
43
|
},
|
|
40
44
|
{
|
|
41
45
|
"path": "harness-archive/checklist.md",
|
|
@@ -51,7 +55,7 @@
|
|
|
51
55
|
},
|
|
52
56
|
{
|
|
53
57
|
"path": "harness-archive/SKILL.md",
|
|
54
|
-
"sha256": "
|
|
58
|
+
"sha256": "57bba6dbc215db3ed76057db29de9f713512051a26e4adf3993f4f9fe26b3344"
|
|
55
59
|
},
|
|
56
60
|
{
|
|
57
61
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
@@ -71,7 +75,7 @@
|
|
|
71
75
|
},
|
|
72
76
|
{
|
|
73
77
|
"path": "harness-codebase-map/SKILL.md",
|
|
74
|
-
"sha256": "
|
|
78
|
+
"sha256": "e0f692e949ff4c4bfd683bdbb59aa0d830c1f5e73840b3100214f34e69f2ce02"
|
|
75
79
|
},
|
|
76
80
|
{
|
|
77
81
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -127,19 +131,19 @@
|
|
|
127
131
|
},
|
|
128
132
|
{
|
|
129
133
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge_mcp.py",
|
|
130
|
-
"sha256": "
|
|
134
|
+
"sha256": "a421ca43e8d1ef1718d51a398e20abae411ea0007b3d45aa333791c511a2aa33"
|
|
131
135
|
},
|
|
132
136
|
{
|
|
133
137
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
134
|
-
"sha256": "
|
|
138
|
+
"sha256": "2764b7985cf2675749bef3e7742f8ed93b4293c3603eef4a78040a97e5b05144"
|
|
135
139
|
},
|
|
136
140
|
{
|
|
137
141
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
138
|
-
"sha256": "
|
|
142
|
+
"sha256": "00fcaf958979fe593b93585cf2e64f8bb95d4ecdeb4c51b98e988fb315c19546"
|
|
139
143
|
},
|
|
140
144
|
{
|
|
141
145
|
"path": "harness-knowledge-query/SKILL.md",
|
|
142
|
-
"sha256": "
|
|
146
|
+
"sha256": "735e93953cb2b16939d9465b12a28f12540545af296a966959a7b611061dda19"
|
|
143
147
|
},
|
|
144
148
|
{
|
|
145
149
|
"path": "harness-package/checklist.md",
|
|
@@ -151,7 +155,7 @@
|
|
|
151
155
|
},
|
|
152
156
|
{
|
|
153
157
|
"path": "harness-package/SKILL.md",
|
|
154
|
-
"sha256": "
|
|
158
|
+
"sha256": "c6d8d6a822c81c4d479d9ba6fffecbc46930c46451e778bd6db19b16ac545ffc"
|
|
155
159
|
},
|
|
156
160
|
{
|
|
157
161
|
"path": "harness-plan/checklist.md",
|
|
@@ -167,7 +171,7 @@
|
|
|
167
171
|
},
|
|
168
172
|
{
|
|
169
173
|
"path": "harness-plan/SKILL.md",
|
|
170
|
-
"sha256": "
|
|
174
|
+
"sha256": "25245c0c0ebed256357890e78e52989847266b6df2daffcd406cea0c8bf39bbd"
|
|
171
175
|
},
|
|
172
176
|
{
|
|
173
177
|
"path": "harness-review/checklist.md",
|
|
@@ -183,7 +187,7 @@
|
|
|
183
187
|
},
|
|
184
188
|
{
|
|
185
189
|
"path": "harness-review/SKILL.md",
|
|
186
|
-
"sha256": "
|
|
190
|
+
"sha256": "292af4708b4b659ad01b3ae6d5d2f97ded43ccb5ba34bcb1df10d05467b3400f"
|
|
187
191
|
},
|
|
188
192
|
{
|
|
189
193
|
"path": "harness-run/checklist.md",
|
|
@@ -199,7 +203,7 @@
|
|
|
199
203
|
},
|
|
200
204
|
{
|
|
201
205
|
"path": "harness-run/SKILL.md",
|
|
202
|
-
"sha256": "
|
|
206
|
+
"sha256": "90a5c7348eedc1500253dd07457a1b1cbd696502e7ab1014359afc3f5b584a82"
|
|
203
207
|
},
|
|
204
208
|
{
|
|
205
209
|
"path": "harness-submit/checklist.md",
|
|
@@ -211,7 +215,7 @@
|
|
|
211
215
|
},
|
|
212
216
|
{
|
|
213
217
|
"path": "harness-submit/SKILL.md",
|
|
214
|
-
"sha256": "
|
|
218
|
+
"sha256": "59cd6e319389cb0c8cb3bc4c9409fc010dd51bf85f8d7e1a09982a9142e9f5d9"
|
|
215
219
|
},
|
|
216
220
|
{
|
|
217
221
|
"path": "harness-sync/reference.md",
|
|
@@ -219,7 +223,7 @@
|
|
|
219
223
|
},
|
|
220
224
|
{
|
|
221
225
|
"path": "harness-sync/SKILL.md",
|
|
222
|
-
"sha256": "
|
|
226
|
+
"sha256": "84b23c654f05d63ded8ab0e577a658c4319f0787da9e825d85c579ceecdb7eea"
|
|
223
227
|
},
|
|
224
228
|
{
|
|
225
229
|
"path": "harness-test/checklist.md",
|
|
@@ -243,7 +247,7 @@
|
|
|
243
247
|
},
|
|
244
248
|
{
|
|
245
249
|
"path": "harness-test/SKILL.md",
|
|
246
|
-
"sha256": "
|
|
250
|
+
"sha256": "aabefbc2da921dad2345869fcdf7ee07eacd1c046634e07691ba3b1bbd933ef8"
|
|
247
251
|
},
|
|
248
252
|
{
|
|
249
253
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -281,9 +285,17 @@
|
|
|
281
285
|
"path": "README.md",
|
|
282
286
|
"sha256": "57ae38357a7bf4118f91c4404b8133a81aced923c836c498b04ff18461eae665"
|
|
283
287
|
},
|
|
288
|
+
{
|
|
289
|
+
"path": "scripts/harness_apidoc.py",
|
|
290
|
+
"sha256": "3fa77ffabf99075a90374d9a4b2ddca3408cc5b90610725d779d9d0dfb70fbbb"
|
|
291
|
+
},
|
|
284
292
|
{
|
|
285
293
|
"path": "scripts/harness_archive.py",
|
|
286
|
-
"sha256": "
|
|
294
|
+
"sha256": "b48bea12431e4122bae5b3f776b518fe4b48b873ba85b1c4e09a29f15a046ad2"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"path": "scripts/harness_change.py",
|
|
298
|
+
"sha256": "50672476e1a66e046e0b16c86cf55b03e117fc2adf8e0df2ced14aa04f7b2548"
|
|
287
299
|
},
|
|
288
300
|
{
|
|
289
301
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -297,6 +309,10 @@
|
|
|
297
309
|
"path": "scripts/harness_events.py",
|
|
298
310
|
"sha256": "dbfb0ba77ebf4a11410449bbf437be93f0f80184d1aa8b1b128f3054635d107e"
|
|
299
311
|
},
|
|
312
|
+
{
|
|
313
|
+
"path": "scripts/harness_gate.py",
|
|
314
|
+
"sha256": "fdc596d51116e6fce58baad24673c94fc04b78b4af8781ee8afd7b2cdb3121eb"
|
|
315
|
+
},
|
|
300
316
|
{
|
|
301
317
|
"path": "scripts/harness_ledger.py",
|
|
302
318
|
"sha256": "36a9921ff70e17b3c8946db1846bf447607822ad90e17351b88efab189d15b41"
|
|
@@ -311,7 +327,7 @@
|
|
|
311
327
|
},
|
|
312
328
|
{
|
|
313
329
|
"path": "scripts/harness_service.py",
|
|
314
|
-
"sha256": "
|
|
330
|
+
"sha256": "17c26b40ed3e7d110b74ef61e627fa0ad1bc84718a1721a066e6d72ee0e37649"
|
|
315
331
|
},
|
|
316
332
|
{
|
|
317
333
|
"path": "scripts/harness_state.py",
|
|
@@ -319,7 +335,11 @@
|
|
|
319
335
|
},
|
|
320
336
|
{
|
|
321
337
|
"path": "scripts/harness_test_guard.py",
|
|
322
|
-
"sha256": "
|
|
338
|
+
"sha256": "ee3306a56a9ee7adf37ad4bcd26505c6d2c21fcdcb35b88cf5951c05a8f3b615"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"path": "scripts/harness_workflow_policy.py",
|
|
342
|
+
"sha256": "3e754da7041ebec852c3f0be8736cec423d7a0ee98424164bfe4a06fc4d8ca4f"
|
|
323
343
|
}
|
|
324
344
|
]
|
|
325
345
|
}
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "java",
|
|
4
4
|
"adapter": "codebuddy",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.7",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "ce1a316282654fee218cebd24fe84aa61527b18565395c28b0e5fef437331661"
|
|
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-apidoc/checklist.md",
|
|
30
34
|
"sha256": "48acef732cd0594fd4ea20e6f82642e5ab72695a159ebfe94ff44736db9e9d41"
|
|
@@ -35,7 +39,7 @@
|
|
|
35
39
|
},
|
|
36
40
|
{
|
|
37
41
|
"path": "harness-apidoc/SKILL.md",
|
|
38
|
-
"sha256": "
|
|
42
|
+
"sha256": "120fb81dbbf897abedbfdc594070d3d036386db6d37e664d98de7d717c436679"
|
|
39
43
|
},
|
|
40
44
|
{
|
|
41
45
|
"path": "harness-archive/checklist.md",
|
|
@@ -51,7 +55,7 @@
|
|
|
51
55
|
},
|
|
52
56
|
{
|
|
53
57
|
"path": "harness-archive/SKILL.md",
|
|
54
|
-
"sha256": "
|
|
58
|
+
"sha256": "54967779a869a47ff9344a2d048dbbfc61a8dd885dd4a2e0150ed8823cc2c655"
|
|
55
59
|
},
|
|
56
60
|
{
|
|
57
61
|
"path": "harness-archive/templates/render-summary.mjs",
|
|
@@ -71,7 +75,7 @@
|
|
|
71
75
|
},
|
|
72
76
|
{
|
|
73
77
|
"path": "harness-codebase-map/SKILL.md",
|
|
74
|
-
"sha256": "
|
|
78
|
+
"sha256": "a19631a21e9a93f6d36dea82d5cd65c2d521381873770d9a105780d04aa0ba24"
|
|
75
79
|
},
|
|
76
80
|
{
|
|
77
81
|
"path": "harness-codebase-map/templates/ARCHITECTURE.md",
|
|
@@ -127,19 +131,19 @@
|
|
|
127
131
|
},
|
|
128
132
|
{
|
|
129
133
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge_mcp.py",
|
|
130
|
-
"sha256": "
|
|
134
|
+
"sha256": "a421ca43e8d1ef1718d51a398e20abae411ea0007b3d45aa333791c511a2aa33"
|
|
131
135
|
},
|
|
132
136
|
{
|
|
133
137
|
"path": "harness-knowledge-ingest/scripts/harness_knowledge.py",
|
|
134
|
-
"sha256": "
|
|
138
|
+
"sha256": "2764b7985cf2675749bef3e7742f8ed93b4293c3603eef4a78040a97e5b05144"
|
|
135
139
|
},
|
|
136
140
|
{
|
|
137
141
|
"path": "harness-knowledge-ingest/SKILL.md",
|
|
138
|
-
"sha256": "
|
|
142
|
+
"sha256": "6923e5711f7e61b8816070fae3f537b3200c468b51e2ea436b5901bbc4b4a24c"
|
|
139
143
|
},
|
|
140
144
|
{
|
|
141
145
|
"path": "harness-knowledge-query/SKILL.md",
|
|
142
|
-
"sha256": "
|
|
146
|
+
"sha256": "64244daf138d00d21344a3c16dfd3109c06467c3e6cc784d16cda928120ba452"
|
|
143
147
|
},
|
|
144
148
|
{
|
|
145
149
|
"path": "harness-package/checklist.md",
|
|
@@ -151,7 +155,7 @@
|
|
|
151
155
|
},
|
|
152
156
|
{
|
|
153
157
|
"path": "harness-package/SKILL.md",
|
|
154
|
-
"sha256": "
|
|
158
|
+
"sha256": "ddcd2d06ef0a30a71c4a8a26796e32733865df8ffdc796ae33072a7c4fa22009"
|
|
155
159
|
},
|
|
156
160
|
{
|
|
157
161
|
"path": "harness-plan/checklist.md",
|
|
@@ -167,7 +171,7 @@
|
|
|
167
171
|
},
|
|
168
172
|
{
|
|
169
173
|
"path": "harness-plan/SKILL.md",
|
|
170
|
-
"sha256": "
|
|
174
|
+
"sha256": "7717e8426edd559fa7dc319f9c9caa45c2ea9640c13aab7a686b6fd200312df5"
|
|
171
175
|
},
|
|
172
176
|
{
|
|
173
177
|
"path": "harness-review/checklist.md",
|
|
@@ -183,7 +187,7 @@
|
|
|
183
187
|
},
|
|
184
188
|
{
|
|
185
189
|
"path": "harness-review/SKILL.md",
|
|
186
|
-
"sha256": "
|
|
190
|
+
"sha256": "32d1381047d575819a859a37d145b5e4233b0047c730813d25ed7a73c834b22d"
|
|
187
191
|
},
|
|
188
192
|
{
|
|
189
193
|
"path": "harness-run/checklist.md",
|
|
@@ -199,7 +203,7 @@
|
|
|
199
203
|
},
|
|
200
204
|
{
|
|
201
205
|
"path": "harness-run/SKILL.md",
|
|
202
|
-
"sha256": "
|
|
206
|
+
"sha256": "ac2a8c799280d7a8a39ff470ffbdbc3fe9944a9ed22d8915103fd3d90a052f8d"
|
|
203
207
|
},
|
|
204
208
|
{
|
|
205
209
|
"path": "harness-submit/checklist.md",
|
|
@@ -211,7 +215,7 @@
|
|
|
211
215
|
},
|
|
212
216
|
{
|
|
213
217
|
"path": "harness-submit/SKILL.md",
|
|
214
|
-
"sha256": "
|
|
218
|
+
"sha256": "60501bb43444c445b95ba39936a1c88908d5715376cf7f703a0d952aa2086d52"
|
|
215
219
|
},
|
|
216
220
|
{
|
|
217
221
|
"path": "harness-sync/reference.md",
|
|
@@ -219,7 +223,7 @@
|
|
|
219
223
|
},
|
|
220
224
|
{
|
|
221
225
|
"path": "harness-sync/SKILL.md",
|
|
222
|
-
"sha256": "
|
|
226
|
+
"sha256": "b012770db1ecfe1d87fa5624311bc9ec0eb7acc65fa490ca91b06e1b024038ae"
|
|
223
227
|
},
|
|
224
228
|
{
|
|
225
229
|
"path": "harness-test/checklist.md",
|
|
@@ -243,7 +247,7 @@
|
|
|
243
247
|
},
|
|
244
248
|
{
|
|
245
249
|
"path": "harness-test/SKILL.md",
|
|
246
|
-
"sha256": "
|
|
250
|
+
"sha256": "7b6c67eef034726ba3c658a94cb20ffa2e661ab314b3509829612a7a50525993"
|
|
247
251
|
},
|
|
248
252
|
{
|
|
249
253
|
"path": "protocols/archive-report-protocol.md",
|
|
@@ -281,9 +285,17 @@
|
|
|
281
285
|
"path": "README.md",
|
|
282
286
|
"sha256": "57ae38357a7bf4118f91c4404b8133a81aced923c836c498b04ff18461eae665"
|
|
283
287
|
},
|
|
288
|
+
{
|
|
289
|
+
"path": "scripts/harness_apidoc.py",
|
|
290
|
+
"sha256": "3fa77ffabf99075a90374d9a4b2ddca3408cc5b90610725d779d9d0dfb70fbbb"
|
|
291
|
+
},
|
|
284
292
|
{
|
|
285
293
|
"path": "scripts/harness_archive.py",
|
|
286
|
-
"sha256": "
|
|
294
|
+
"sha256": "b48bea12431e4122bae5b3f776b518fe4b48b873ba85b1c4e09a29f15a046ad2"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"path": "scripts/harness_change.py",
|
|
298
|
+
"sha256": "50672476e1a66e046e0b16c86cf55b03e117fc2adf8e0df2ced14aa04f7b2548"
|
|
287
299
|
},
|
|
288
300
|
{
|
|
289
301
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -297,6 +309,10 @@
|
|
|
297
309
|
"path": "scripts/harness_events.py",
|
|
298
310
|
"sha256": "dbfb0ba77ebf4a11410449bbf437be93f0f80184d1aa8b1b128f3054635d107e"
|
|
299
311
|
},
|
|
312
|
+
{
|
|
313
|
+
"path": "scripts/harness_gate.py",
|
|
314
|
+
"sha256": "fdc596d51116e6fce58baad24673c94fc04b78b4af8781ee8afd7b2cdb3121eb"
|
|
315
|
+
},
|
|
300
316
|
{
|
|
301
317
|
"path": "scripts/harness_ledger.py",
|
|
302
318
|
"sha256": "36a9921ff70e17b3c8946db1846bf447607822ad90e17351b88efab189d15b41"
|
|
@@ -311,7 +327,7 @@
|
|
|
311
327
|
},
|
|
312
328
|
{
|
|
313
329
|
"path": "scripts/harness_service.py",
|
|
314
|
-
"sha256": "
|
|
330
|
+
"sha256": "17c26b40ed3e7d110b74ef61e627fa0ad1bc84718a1721a066e6d72ee0e37649"
|
|
315
331
|
},
|
|
316
332
|
{
|
|
317
333
|
"path": "scripts/harness_state.py",
|
|
@@ -319,7 +335,11 @@
|
|
|
319
335
|
},
|
|
320
336
|
{
|
|
321
337
|
"path": "scripts/harness_test_guard.py",
|
|
322
|
-
"sha256": "
|
|
338
|
+
"sha256": "ee3306a56a9ee7adf37ad4bcd26505c6d2c21fcdcb35b88cf5951c05a8f3b615"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"path": "scripts/harness_workflow_policy.py",
|
|
342
|
+
"sha256": "3e754da7041ebec852c3f0be8736cec423d7a0ee98424164bfe4a06fc4d8ca4f"
|
|
323
343
|
}
|
|
324
344
|
]
|
|
325
345
|
}
|