@hunter-harness/workflow-harness 0.2.6 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/harness/bundles/general/claude-code/.harness-build.json +1 -1
- package/harness/bundles/general/claude-code/contracts/workflow-policy.json +169 -0
- package/harness/bundles/general/claude-code/harness-archive/SKILL.md +3 -1
- package/harness/bundles/general/claude-code/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-knowledge-ingest/scripts/harness_knowledge.py +26 -1
- package/harness/bundles/general/claude-code/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/general/claude-code/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/general/claude-code/harness-plan/SKILL.md +3 -1
- package/harness/bundles/general/claude-code/harness-review/SKILL.md +3 -1
- package/harness/bundles/general/claude-code/harness-run/SKILL.md +9 -6
- package/harness/bundles/general/claude-code/harness-run/checklist.md +2 -2
- package/harness/bundles/general/claude-code/harness-run/reference.md +5 -2
- package/harness/bundles/general/claude-code/harness-submit/SKILL.md +7 -5
- package/harness/bundles/general/claude-code/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-test/SKILL.md +8 -2
- package/harness/bundles/general/claude-code/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/general/claude-code/scripts/harness_archive.py +41 -16
- package/harness/bundles/general/claude-code/scripts/harness_change.py +872 -0
- package/harness/bundles/general/claude-code/scripts/harness_events.py +26 -0
- package/harness/bundles/general/claude-code/scripts/harness_gate.py +1038 -0
- package/harness/bundles/general/claude-code/scripts/harness_service.py +34 -1
- package/harness/bundles/general/claude-code/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/general/claude-code/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/general/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/general/codebuddy/contracts/workflow-policy.json +169 -0
- package/harness/bundles/general/codebuddy/harness-archive/SKILL.md +3 -1
- package/harness/bundles/general/codebuddy/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge.py +26 -1
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/general/codebuddy/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/general/codebuddy/harness-plan/SKILL.md +3 -1
- package/harness/bundles/general/codebuddy/harness-review/SKILL.md +3 -1
- package/harness/bundles/general/codebuddy/harness-run/SKILL.md +9 -6
- package/harness/bundles/general/codebuddy/harness-run/checklist.md +2 -2
- package/harness/bundles/general/codebuddy/harness-run/reference.md +5 -2
- package/harness/bundles/general/codebuddy/harness-submit/SKILL.md +7 -5
- package/harness/bundles/general/codebuddy/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-test/SKILL.md +8 -2
- package/harness/bundles/general/codebuddy/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/general/codebuddy/scripts/harness_archive.py +41 -16
- package/harness/bundles/general/codebuddy/scripts/harness_change.py +872 -0
- package/harness/bundles/general/codebuddy/scripts/harness_events.py +26 -0
- package/harness/bundles/general/codebuddy/scripts/harness_gate.py +1038 -0
- package/harness/bundles/general/codebuddy/scripts/harness_service.py +34 -1
- package/harness/bundles/general/codebuddy/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/general/codebuddy/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/general/codex/.harness-build.json +1 -1
- package/harness/bundles/general/codex/contracts/workflow-policy.json +169 -0
- package/harness/bundles/general/codex/harness-archive/SKILL.md +3 -1
- package/harness/bundles/general/codex/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-knowledge-ingest/scripts/harness_knowledge.py +26 -1
- package/harness/bundles/general/codex/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/general/codex/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/general/codex/harness-plan/SKILL.md +3 -1
- package/harness/bundles/general/codex/harness-review/SKILL.md +3 -1
- package/harness/bundles/general/codex/harness-run/SKILL.md +9 -6
- package/harness/bundles/general/codex/harness-run/checklist.md +2 -2
- package/harness/bundles/general/codex/harness-run/reference.md +5 -2
- package/harness/bundles/general/codex/harness-submit/SKILL.md +7 -5
- package/harness/bundles/general/codex/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-test/SKILL.md +8 -2
- package/harness/bundles/general/codex/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/general/codex/scripts/harness_archive.py +41 -16
- package/harness/bundles/general/codex/scripts/harness_change.py +872 -0
- package/harness/bundles/general/codex/scripts/harness_events.py +26 -0
- package/harness/bundles/general/codex/scripts/harness_gate.py +1038 -0
- package/harness/bundles/general/codex/scripts/harness_service.py +34 -1
- package/harness/bundles/general/codex/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/general/codex/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/general/cursor/.harness-build.json +1 -1
- package/harness/bundles/general/cursor/contracts/workflow-policy.json +169 -0
- package/harness/bundles/general/cursor/harness-archive/SKILL.md +3 -1
- package/harness/bundles/general/cursor/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-knowledge-ingest/scripts/harness_knowledge.py +26 -1
- package/harness/bundles/general/cursor/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/general/cursor/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/general/cursor/harness-plan/SKILL.md +3 -1
- package/harness/bundles/general/cursor/harness-review/SKILL.md +3 -1
- package/harness/bundles/general/cursor/harness-run/SKILL.md +9 -6
- package/harness/bundles/general/cursor/harness-run/checklist.md +2 -2
- package/harness/bundles/general/cursor/harness-run/reference.md +5 -2
- package/harness/bundles/general/cursor/harness-submit/SKILL.md +7 -5
- package/harness/bundles/general/cursor/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-test/SKILL.md +8 -2
- package/harness/bundles/general/cursor/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/general/cursor/scripts/harness_archive.py +41 -16
- package/harness/bundles/general/cursor/scripts/harness_change.py +872 -0
- package/harness/bundles/general/cursor/scripts/harness_events.py +26 -0
- package/harness/bundles/general/cursor/scripts/harness_gate.py +1038 -0
- package/harness/bundles/general/cursor/scripts/harness_service.py +34 -1
- package/harness/bundles/general/cursor/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/general/cursor/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/java/claude-code/.harness-build.json +1 -1
- package/harness/bundles/java/claude-code/contracts/workflow-policy.json +169 -0
- package/harness/bundles/java/claude-code/harness-apidoc/SKILL.md +7 -1
- package/harness/bundles/java/claude-code/harness-archive/SKILL.md +3 -1
- package/harness/bundles/java/claude-code/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-knowledge-ingest/scripts/harness_knowledge.py +26 -1
- package/harness/bundles/java/claude-code/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/java/claude-code/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/java/claude-code/harness-package/SKILL.md +6 -3
- package/harness/bundles/java/claude-code/harness-plan/SKILL.md +3 -1
- package/harness/bundles/java/claude-code/harness-review/SKILL.md +3 -1
- package/harness/bundles/java/claude-code/harness-run/SKILL.md +9 -6
- package/harness/bundles/java/claude-code/harness-submit/SKILL.md +7 -5
- package/harness/bundles/java/claude-code/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-test/SKILL.md +8 -2
- package/harness/bundles/java/claude-code/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/java/claude-code/scripts/harness_archive.py +41 -16
- package/harness/bundles/java/claude-code/scripts/harness_change.py +872 -0
- package/harness/bundles/java/claude-code/scripts/harness_events.py +26 -0
- package/harness/bundles/java/claude-code/scripts/harness_gate.py +1038 -0
- package/harness/bundles/java/claude-code/scripts/harness_service.py +34 -1
- package/harness/bundles/java/claude-code/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/java/claude-code/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/java/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/java/codebuddy/contracts/workflow-policy.json +169 -0
- package/harness/bundles/java/codebuddy/harness-apidoc/SKILL.md +7 -1
- package/harness/bundles/java/codebuddy/harness-archive/SKILL.md +3 -1
- package/harness/bundles/java/codebuddy/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge.py +26 -1
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/java/codebuddy/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/java/codebuddy/harness-package/SKILL.md +6 -3
- package/harness/bundles/java/codebuddy/harness-plan/SKILL.md +3 -1
- package/harness/bundles/java/codebuddy/harness-review/SKILL.md +3 -1
- package/harness/bundles/java/codebuddy/harness-run/SKILL.md +9 -6
- package/harness/bundles/java/codebuddy/harness-submit/SKILL.md +7 -5
- package/harness/bundles/java/codebuddy/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-test/SKILL.md +8 -2
- package/harness/bundles/java/codebuddy/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/java/codebuddy/scripts/harness_archive.py +41 -16
- package/harness/bundles/java/codebuddy/scripts/harness_change.py +872 -0
- package/harness/bundles/java/codebuddy/scripts/harness_events.py +26 -0
- package/harness/bundles/java/codebuddy/scripts/harness_gate.py +1038 -0
- package/harness/bundles/java/codebuddy/scripts/harness_service.py +34 -1
- package/harness/bundles/java/codebuddy/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/java/codebuddy/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/java/codex/.harness-build.json +1 -1
- package/harness/bundles/java/codex/contracts/workflow-policy.json +169 -0
- package/harness/bundles/java/codex/harness-apidoc/SKILL.md +7 -1
- package/harness/bundles/java/codex/harness-archive/SKILL.md +3 -1
- package/harness/bundles/java/codex/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-knowledge-ingest/scripts/harness_knowledge.py +26 -1
- package/harness/bundles/java/codex/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/java/codex/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/java/codex/harness-package/SKILL.md +6 -3
- package/harness/bundles/java/codex/harness-plan/SKILL.md +3 -1
- package/harness/bundles/java/codex/harness-review/SKILL.md +3 -1
- package/harness/bundles/java/codex/harness-run/SKILL.md +9 -6
- package/harness/bundles/java/codex/harness-submit/SKILL.md +7 -5
- package/harness/bundles/java/codex/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-test/SKILL.md +8 -2
- package/harness/bundles/java/codex/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/java/codex/scripts/harness_archive.py +41 -16
- package/harness/bundles/java/codex/scripts/harness_change.py +872 -0
- package/harness/bundles/java/codex/scripts/harness_events.py +26 -0
- package/harness/bundles/java/codex/scripts/harness_gate.py +1038 -0
- package/harness/bundles/java/codex/scripts/harness_service.py +34 -1
- package/harness/bundles/java/codex/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/java/codex/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/java/cursor/.harness-build.json +1 -1
- package/harness/bundles/java/cursor/contracts/workflow-policy.json +169 -0
- package/harness/bundles/java/cursor/harness-apidoc/SKILL.md +7 -1
- package/harness/bundles/java/cursor/harness-archive/SKILL.md +3 -1
- package/harness/bundles/java/cursor/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-knowledge-ingest/scripts/harness_knowledge.py +26 -1
- package/harness/bundles/java/cursor/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/java/cursor/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/java/cursor/harness-package/SKILL.md +6 -3
- package/harness/bundles/java/cursor/harness-plan/SKILL.md +3 -1
- package/harness/bundles/java/cursor/harness-review/SKILL.md +3 -1
- package/harness/bundles/java/cursor/harness-run/SKILL.md +9 -6
- package/harness/bundles/java/cursor/harness-submit/SKILL.md +7 -5
- package/harness/bundles/java/cursor/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-test/SKILL.md +8 -2
- package/harness/bundles/java/cursor/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/java/cursor/scripts/harness_archive.py +41 -16
- package/harness/bundles/java/cursor/scripts/harness_change.py +872 -0
- package/harness/bundles/java/cursor/scripts/harness_events.py +26 -0
- package/harness/bundles/java/cursor/scripts/harness_gate.py +1038 -0
- package/harness/bundles/java/cursor/scripts/harness_service.py +34 -1
- package/harness/bundles/java/cursor/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/java/cursor/scripts/harness_workflow_policy.py +160 -0
- package/harness/manifests/general/claude-code.json +40 -20
- package/harness/manifests/general/codebuddy.json +40 -20
- package/harness/manifests/general/codex.json +40 -20
- package/harness/manifests/general/cursor.json +40 -20
- package/harness/manifests/java/claude-code.json +40 -20
- package/harness/manifests/java/codebuddy.json +40 -20
- package/harness/manifests/java/codex.json +40 -20
- package/harness/manifests/java/cursor.json +40 -20
- package/hunter-workflow-family.json +2 -2
- package/package.json +1 -1
|
@@ -2,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.8",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "74266cba575a97e1ce2ceb96cec6a1b14f721f20c66071cef262dac1371f96b8"
|
|
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": "9af5a1017a20459e8f1c71a8a3ab8fe8e32050b79264d40296ed38993c466eca"
|
|
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": "ec65efff813467277ea6cd40e3cc4b0524bfb16095c2cf2028f7e0da480e45f2"
|
|
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": "b777462d34fcef33f305a640a546446de7d660f9d066bd465903d2587025c1e4"
|
|
127
131
|
},
|
|
128
132
|
{
|
|
129
133
|
"path": "harness-knowledge-query/SKILL.md",
|
|
130
|
-
"sha256": "
|
|
134
|
+
"sha256": "66fcad2800cbcb6d9cfdfe5bd08a2afe937214297ec722c30452bb039b9da14b"
|
|
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": "9d0610ad09c0fc29a5c8252334419a276e88c2b9a0f7c3ac88bf2e62bd977504"
|
|
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": "f531935841d7e971c0f050cd6746249b376a2d01bd6b50a58c7061209a2ef8a9"
|
|
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": "85a5023c5b7bfaf767a1d8d77da8ef1095d5c805acda5b2b33966d40190bb12c"
|
|
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": "b141059d4b16a8e0e2f6b552bcb6214ba4a19a4e91f9bc8965c22fef6083a5d6"
|
|
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": "b61f384bbba952c51112e2931e6b1c561fc7753c4f51d19f8d3f21dcfe4d1730"
|
|
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": "c9a765926545dd9461c812ab4c57729493cb3c6d7c9e3c4cf4e2574668c73877"
|
|
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": "e15697ef34685c9cd55d21dac4e2de21815ff3d984605a47b4e9cac5b4829693"
|
|
259
271
|
},
|
|
260
272
|
{
|
|
261
273
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -267,7 +279,11 @@
|
|
|
267
279
|
},
|
|
268
280
|
{
|
|
269
281
|
"path": "scripts/harness_events.py",
|
|
270
|
-
"sha256": "
|
|
282
|
+
"sha256": "5ebe48d649ed3040245c676ea38ecb2a443582228340c4631481da2e853cd9a0"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"path": "scripts/harness_gate.py",
|
|
286
|
+
"sha256": "fdc596d51116e6fce58baad24673c94fc04b78b4af8781ee8afd7b2cdb3121eb"
|
|
271
287
|
},
|
|
272
288
|
{
|
|
273
289
|
"path": "scripts/harness_ledger.py",
|
|
@@ -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.8",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "1118829707090992594be781fffc05fd6694fdd97bea9564ef1900539e734c1f"
|
|
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": "e88edcf0f4415265b61b502ad4874d05e59fae36bb25061dc41bf31eeb34ec3b"
|
|
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": "cd73abfc02b970280af6e01a6d4e487f8143cef236142c4e7cb7937aeb133ca2"
|
|
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": "41bfb8a1adc78af7b4a9755068af152c720ca3fc83237abd7f9b0157071231bc"
|
|
127
131
|
},
|
|
128
132
|
{
|
|
129
133
|
"path": "harness-knowledge-query/SKILL.md",
|
|
130
|
-
"sha256": "
|
|
134
|
+
"sha256": "d948222b0069531e0871abf5cc20a7fb0f4c8573d9b3e60ae1ef0a6941b87be5"
|
|
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": "0a9eb1e1e9fb1a16aaa992f39fb71f72a9dcab23aa27c1e43dd6c07980f0ff5a"
|
|
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": "4f8411d6d836aa33662870dfaae99612c952ae9d7b2c0364eb51c045057ff747"
|
|
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": "90c5b39de82d6e809f39985baa1e45f5ab7a862897df1fa446a76bf395e3fb56"
|
|
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": "7347c597be0751cd0af1e46379a88884b16504f14bc45296bb44833c69e51f13"
|
|
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": "fa51f65c350a85fdfb12bf5cc7a3c91638341d1362e7567e193775bab1f86a00"
|
|
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": "561e32b7ae4b406808f837281626780554e76b1c4fbd01657933df7102dcd9c5"
|
|
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": "e15697ef34685c9cd55d21dac4e2de21815ff3d984605a47b4e9cac5b4829693"
|
|
259
271
|
},
|
|
260
272
|
{
|
|
261
273
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -267,7 +279,11 @@
|
|
|
267
279
|
},
|
|
268
280
|
{
|
|
269
281
|
"path": "scripts/harness_events.py",
|
|
270
|
-
"sha256": "
|
|
282
|
+
"sha256": "5ebe48d649ed3040245c676ea38ecb2a443582228340c4631481da2e853cd9a0"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"path": "scripts/harness_gate.py",
|
|
286
|
+
"sha256": "fdc596d51116e6fce58baad24673c94fc04b78b4af8781ee8afd7b2cdb3121eb"
|
|
271
287
|
},
|
|
272
288
|
{
|
|
273
289
|
"path": "scripts/harness_ledger.py",
|
|
@@ -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.8",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "df0050a0b428a0d046df6d20242b16289004fb9b205b4038b5211a276bfd1c6d"
|
|
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": "ecc79d85140eb655dbe29bd13537c08b13365a5a26e0763239cf73cc69336ae4"
|
|
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": "eb92f7d4326c5de49dc694a3d947ff291e71c435c26d05e471dcc7131efa24b5"
|
|
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": "55181d2790b6af0a7ffa95d8a2cff2d5bafbff8b786466512fa1206d14c28d3e"
|
|
115
119
|
},
|
|
116
120
|
{
|
|
117
121
|
"path": "harness-knowledge-query/SKILL.md",
|
|
118
|
-
"sha256": "
|
|
122
|
+
"sha256": "d8b7042d45a010d8c72da9663a4ef8e7e48d465cc3514cf6814938d7b052667b"
|
|
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": "b7d8fa65f3c5ab2ee79a9ef5a290f2cbb5cf1042c854b766461453486f503896"
|
|
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": "e85bf7a4983860549ec52e539d26d115644df80a03d8ad7ea06dbde1fcf12163"
|
|
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": "fd25d07e4e6cb1802007229cf314ed308a9a97e3c3bc3d4663427fc3da0573b5"
|
|
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": "7e66593e87913b38e2c11ab0c7e8c6be723692530f1a254f4c86d55d39e1d963"
|
|
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": "d5909b783af4f1914e8ba7f46a038e08bb149243809d89afa00c272586ba4040"
|
|
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": "39e36ff6b8848ed7af94b18ba29e812bab4faae83ea295f1340911cb85372351"
|
|
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": "e15697ef34685c9cd55d21dac4e2de21815ff3d984605a47b4e9cac5b4829693"
|
|
247
259
|
},
|
|
248
260
|
{
|
|
249
261
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -255,7 +267,11 @@
|
|
|
255
267
|
},
|
|
256
268
|
{
|
|
257
269
|
"path": "scripts/harness_events.py",
|
|
258
|
-
"sha256": "
|
|
270
|
+
"sha256": "5ebe48d649ed3040245c676ea38ecb2a443582228340c4631481da2e853cd9a0"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"path": "scripts/harness_gate.py",
|
|
274
|
+
"sha256": "fdc596d51116e6fce58baad24673c94fc04b78b4af8781ee8afd7b2cdb3121eb"
|
|
259
275
|
},
|
|
260
276
|
{
|
|
261
277
|
"path": "scripts/harness_ledger.py",
|
|
@@ -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
|
}
|