@hunter-harness/workflow-harness 0.2.6 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/harness/bundles/general/claude-code/.harness-build.json +1 -1
- package/harness/bundles/general/claude-code/contracts/workflow-policy.json +169 -0
- package/harness/bundles/general/claude-code/harness-archive/SKILL.md +3 -1
- package/harness/bundles/general/claude-code/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-knowledge-ingest/scripts/harness_knowledge.py +26 -1
- package/harness/bundles/general/claude-code/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/general/claude-code/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/general/claude-code/harness-plan/SKILL.md +3 -1
- package/harness/bundles/general/claude-code/harness-review/SKILL.md +3 -1
- package/harness/bundles/general/claude-code/harness-run/SKILL.md +9 -6
- package/harness/bundles/general/claude-code/harness-run/checklist.md +2 -2
- package/harness/bundles/general/claude-code/harness-run/reference.md +5 -2
- package/harness/bundles/general/claude-code/harness-submit/SKILL.md +7 -5
- package/harness/bundles/general/claude-code/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/claude-code/harness-test/SKILL.md +8 -2
- package/harness/bundles/general/claude-code/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/general/claude-code/scripts/harness_archive.py +41 -16
- package/harness/bundles/general/claude-code/scripts/harness_change.py +872 -0
- package/harness/bundles/general/claude-code/scripts/harness_events.py +26 -0
- package/harness/bundles/general/claude-code/scripts/harness_gate.py +1038 -0
- package/harness/bundles/general/claude-code/scripts/harness_service.py +34 -1
- package/harness/bundles/general/claude-code/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/general/claude-code/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/general/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/general/codebuddy/contracts/workflow-policy.json +169 -0
- package/harness/bundles/general/codebuddy/harness-archive/SKILL.md +3 -1
- package/harness/bundles/general/codebuddy/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge.py +26 -1
- package/harness/bundles/general/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/general/codebuddy/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/general/codebuddy/harness-plan/SKILL.md +3 -1
- package/harness/bundles/general/codebuddy/harness-review/SKILL.md +3 -1
- package/harness/bundles/general/codebuddy/harness-run/SKILL.md +9 -6
- package/harness/bundles/general/codebuddy/harness-run/checklist.md +2 -2
- package/harness/bundles/general/codebuddy/harness-run/reference.md +5 -2
- package/harness/bundles/general/codebuddy/harness-submit/SKILL.md +7 -5
- package/harness/bundles/general/codebuddy/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codebuddy/harness-test/SKILL.md +8 -2
- package/harness/bundles/general/codebuddy/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/general/codebuddy/scripts/harness_archive.py +41 -16
- package/harness/bundles/general/codebuddy/scripts/harness_change.py +872 -0
- package/harness/bundles/general/codebuddy/scripts/harness_events.py +26 -0
- package/harness/bundles/general/codebuddy/scripts/harness_gate.py +1038 -0
- package/harness/bundles/general/codebuddy/scripts/harness_service.py +34 -1
- package/harness/bundles/general/codebuddy/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/general/codebuddy/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/general/codex/.harness-build.json +1 -1
- package/harness/bundles/general/codex/contracts/workflow-policy.json +169 -0
- package/harness/bundles/general/codex/harness-archive/SKILL.md +3 -1
- package/harness/bundles/general/codex/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-knowledge-ingest/scripts/harness_knowledge.py +26 -1
- package/harness/bundles/general/codex/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/general/codex/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/general/codex/harness-plan/SKILL.md +3 -1
- package/harness/bundles/general/codex/harness-review/SKILL.md +3 -1
- package/harness/bundles/general/codex/harness-run/SKILL.md +9 -6
- package/harness/bundles/general/codex/harness-run/checklist.md +2 -2
- package/harness/bundles/general/codex/harness-run/reference.md +5 -2
- package/harness/bundles/general/codex/harness-submit/SKILL.md +7 -5
- package/harness/bundles/general/codex/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/codex/harness-test/SKILL.md +8 -2
- package/harness/bundles/general/codex/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/general/codex/scripts/harness_archive.py +41 -16
- package/harness/bundles/general/codex/scripts/harness_change.py +872 -0
- package/harness/bundles/general/codex/scripts/harness_events.py +26 -0
- package/harness/bundles/general/codex/scripts/harness_gate.py +1038 -0
- package/harness/bundles/general/codex/scripts/harness_service.py +34 -1
- package/harness/bundles/general/codex/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/general/codex/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/general/cursor/.harness-build.json +1 -1
- package/harness/bundles/general/cursor/contracts/workflow-policy.json +169 -0
- package/harness/bundles/general/cursor/harness-archive/SKILL.md +3 -1
- package/harness/bundles/general/cursor/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-knowledge-ingest/scripts/harness_knowledge.py +26 -1
- package/harness/bundles/general/cursor/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/general/cursor/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/general/cursor/harness-plan/SKILL.md +3 -1
- package/harness/bundles/general/cursor/harness-review/SKILL.md +3 -1
- package/harness/bundles/general/cursor/harness-run/SKILL.md +9 -6
- package/harness/bundles/general/cursor/harness-run/checklist.md +2 -2
- package/harness/bundles/general/cursor/harness-run/reference.md +5 -2
- package/harness/bundles/general/cursor/harness-submit/SKILL.md +7 -5
- package/harness/bundles/general/cursor/harness-sync/SKILL.md +1 -1
- package/harness/bundles/general/cursor/harness-test/SKILL.md +8 -2
- package/harness/bundles/general/cursor/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/general/cursor/scripts/harness_archive.py +41 -16
- package/harness/bundles/general/cursor/scripts/harness_change.py +872 -0
- package/harness/bundles/general/cursor/scripts/harness_events.py +26 -0
- package/harness/bundles/general/cursor/scripts/harness_gate.py +1038 -0
- package/harness/bundles/general/cursor/scripts/harness_service.py +34 -1
- package/harness/bundles/general/cursor/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/general/cursor/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/java/claude-code/.harness-build.json +1 -1
- package/harness/bundles/java/claude-code/contracts/workflow-policy.json +169 -0
- package/harness/bundles/java/claude-code/harness-apidoc/SKILL.md +7 -1
- package/harness/bundles/java/claude-code/harness-archive/SKILL.md +3 -1
- package/harness/bundles/java/claude-code/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-knowledge-ingest/scripts/harness_knowledge.py +26 -1
- package/harness/bundles/java/claude-code/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/java/claude-code/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/java/claude-code/harness-package/SKILL.md +6 -3
- package/harness/bundles/java/claude-code/harness-plan/SKILL.md +3 -1
- package/harness/bundles/java/claude-code/harness-review/SKILL.md +3 -1
- package/harness/bundles/java/claude-code/harness-run/SKILL.md +9 -6
- package/harness/bundles/java/claude-code/harness-submit/SKILL.md +7 -5
- package/harness/bundles/java/claude-code/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/claude-code/harness-test/SKILL.md +8 -2
- package/harness/bundles/java/claude-code/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/java/claude-code/scripts/harness_archive.py +41 -16
- package/harness/bundles/java/claude-code/scripts/harness_change.py +872 -0
- package/harness/bundles/java/claude-code/scripts/harness_events.py +26 -0
- package/harness/bundles/java/claude-code/scripts/harness_gate.py +1038 -0
- package/harness/bundles/java/claude-code/scripts/harness_service.py +34 -1
- package/harness/bundles/java/claude-code/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/java/claude-code/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/java/codebuddy/.harness-build.json +1 -1
- package/harness/bundles/java/codebuddy/contracts/workflow-policy.json +169 -0
- package/harness/bundles/java/codebuddy/harness-apidoc/SKILL.md +7 -1
- package/harness/bundles/java/codebuddy/harness-archive/SKILL.md +3 -1
- package/harness/bundles/java/codebuddy/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge.py +26 -1
- package/harness/bundles/java/codebuddy/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/java/codebuddy/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/java/codebuddy/harness-package/SKILL.md +6 -3
- package/harness/bundles/java/codebuddy/harness-plan/SKILL.md +3 -1
- package/harness/bundles/java/codebuddy/harness-review/SKILL.md +3 -1
- package/harness/bundles/java/codebuddy/harness-run/SKILL.md +9 -6
- package/harness/bundles/java/codebuddy/harness-submit/SKILL.md +7 -5
- package/harness/bundles/java/codebuddy/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/codebuddy/harness-test/SKILL.md +8 -2
- package/harness/bundles/java/codebuddy/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/java/codebuddy/scripts/harness_archive.py +41 -16
- package/harness/bundles/java/codebuddy/scripts/harness_change.py +872 -0
- package/harness/bundles/java/codebuddy/scripts/harness_events.py +26 -0
- package/harness/bundles/java/codebuddy/scripts/harness_gate.py +1038 -0
- package/harness/bundles/java/codebuddy/scripts/harness_service.py +34 -1
- package/harness/bundles/java/codebuddy/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/java/codebuddy/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/java/codex/.harness-build.json +1 -1
- package/harness/bundles/java/codex/contracts/workflow-policy.json +169 -0
- package/harness/bundles/java/codex/harness-apidoc/SKILL.md +7 -1
- package/harness/bundles/java/codex/harness-archive/SKILL.md +3 -1
- package/harness/bundles/java/codex/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-knowledge-ingest/scripts/harness_knowledge.py +26 -1
- package/harness/bundles/java/codex/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/java/codex/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/java/codex/harness-package/SKILL.md +6 -3
- package/harness/bundles/java/codex/harness-plan/SKILL.md +3 -1
- package/harness/bundles/java/codex/harness-review/SKILL.md +3 -1
- package/harness/bundles/java/codex/harness-run/SKILL.md +9 -6
- package/harness/bundles/java/codex/harness-submit/SKILL.md +7 -5
- package/harness/bundles/java/codex/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/codex/harness-test/SKILL.md +8 -2
- package/harness/bundles/java/codex/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/java/codex/scripts/harness_archive.py +41 -16
- package/harness/bundles/java/codex/scripts/harness_change.py +872 -0
- package/harness/bundles/java/codex/scripts/harness_events.py +26 -0
- package/harness/bundles/java/codex/scripts/harness_gate.py +1038 -0
- package/harness/bundles/java/codex/scripts/harness_service.py +34 -1
- package/harness/bundles/java/codex/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/java/codex/scripts/harness_workflow_policy.py +160 -0
- package/harness/bundles/java/cursor/.harness-build.json +1 -1
- package/harness/bundles/java/cursor/contracts/workflow-policy.json +169 -0
- package/harness/bundles/java/cursor/harness-apidoc/SKILL.md +7 -1
- package/harness/bundles/java/cursor/harness-archive/SKILL.md +3 -1
- package/harness/bundles/java/cursor/harness-codebase-map/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-knowledge-ingest/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-knowledge-ingest/scripts/harness_knowledge.py +26 -1
- package/harness/bundles/java/cursor/harness-knowledge-ingest/scripts/harness_knowledge_mcp.py +2 -0
- package/harness/bundles/java/cursor/harness-knowledge-query/SKILL.md +3 -1
- package/harness/bundles/java/cursor/harness-package/SKILL.md +6 -3
- package/harness/bundles/java/cursor/harness-plan/SKILL.md +3 -1
- package/harness/bundles/java/cursor/harness-review/SKILL.md +3 -1
- package/harness/bundles/java/cursor/harness-run/SKILL.md +9 -6
- package/harness/bundles/java/cursor/harness-submit/SKILL.md +7 -5
- package/harness/bundles/java/cursor/harness-sync/SKILL.md +1 -1
- package/harness/bundles/java/cursor/harness-test/SKILL.md +8 -2
- package/harness/bundles/java/cursor/scripts/harness_apidoc.py +53 -0
- package/harness/bundles/java/cursor/scripts/harness_archive.py +41 -16
- package/harness/bundles/java/cursor/scripts/harness_change.py +872 -0
- package/harness/bundles/java/cursor/scripts/harness_events.py +26 -0
- package/harness/bundles/java/cursor/scripts/harness_gate.py +1038 -0
- package/harness/bundles/java/cursor/scripts/harness_service.py +34 -1
- package/harness/bundles/java/cursor/scripts/harness_test_guard.py +210 -14
- package/harness/bundles/java/cursor/scripts/harness_workflow_policy.py +160 -0
- package/harness/manifests/general/claude-code.json +40 -20
- package/harness/manifests/general/codebuddy.json +40 -20
- package/harness/manifests/general/codex.json +40 -20
- package/harness/manifests/general/cursor.json +40 -20
- package/harness/manifests/java/claude-code.json +40 -20
- package/harness/manifests/java/codebuddy.json +40 -20
- package/harness/manifests/java/codex.json +40 -20
- package/harness/manifests/java/cursor.json +40 -20
- package/hunter-workflow-family.json +2 -2
- package/package.json +1 -1
|
@@ -2,17 +2,21 @@
|
|
|
2
2
|
"schema_version": 2,
|
|
3
3
|
"profile": "general",
|
|
4
4
|
"adapter": "cursor",
|
|
5
|
-
"bundle_version": "0.2.
|
|
5
|
+
"bundle_version": "0.2.8",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "f7fb39580c6cabd3e61e5112d51aa5d9403424f7d513171493f08d759f0ffbaf"
|
|
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": "8128a89fe2a71517141a823524fb1663877d3d4f8273d5c4e90c7617c3e498d0"
|
|
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": "dc1146ad65fd9f36385a760ce6c9b5a674b0d50e8909eb067143fca2ec2fa62f"
|
|
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": "47785478a4ad23e70989f00c8557b61803fd614908ca55e3c79c68a939c52136"
|
|
115
119
|
},
|
|
116
120
|
{
|
|
117
121
|
"path": "harness-knowledge-query/SKILL.md",
|
|
118
|
-
"sha256": "
|
|
122
|
+
"sha256": "a40c40a1e691e937f60539e788b3eff9ac2478f52db74777b6ce1cb8099154a6"
|
|
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": "e46d6304c641468728b8b8bd498212017039b92d4a42d57d17d1572822d7da4a"
|
|
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": "5998b52499dbb6e7b0786f0359652e3154b22ebf335eb11a9f73a0c8d5ff354e"
|
|
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": "41b56a2907368f9066d85c759408705f9d479e93afa99ce537528a70ebab6e75"
|
|
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": "44ddf77b7c867b00b3e0ac6cc63fb8f730537a96dd38873ddd132d1b5e466720"
|
|
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": "f47accb2796b2a32ea40ab5749b80f529a870a93d26bd0cee208a446459b63b7"
|
|
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": "13454a7987a1fc5805878b73082b87ff92e9ea184eae2b5320a9409186d61504"
|
|
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
|
}
|
|
@@ -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.8",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "d1e2d71812aeecf544b30a9b4c0c5792739b09e4cbf6a9d6834165c3bc9431a1"
|
|
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": "ae531c2090d8747ac965c18186fa20e181411d9249b7370a13e2051b318e3146"
|
|
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": "79fdb3b12461bcc2eaa02ebcd335e6cf73ff35f352798fd4677b9b50c1d8e4b5"
|
|
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": "81f3e7b8d968ed617a17de1158455803740ea56ecaf9efc292bf4a765c5ac10d"
|
|
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": "8a02d1b1db594259a43cfd81045ce71e12be1ef205891c208f3e0490e2a7b2aa"
|
|
139
143
|
},
|
|
140
144
|
{
|
|
141
145
|
"path": "harness-knowledge-query/SKILL.md",
|
|
142
|
-
"sha256": "
|
|
146
|
+
"sha256": "df6770b22cf406db61aeac479f4973ef4a25d45f814937f1e987dca7f019b5e9"
|
|
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": "9121cb82dd5638a2244ba7973eae0b0615b0794e2a66babf548c1853b2a5da21"
|
|
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": "e7f37c728884423b63ed3462fcbbca2907ac7040dd3679c1cce6e5620e272832"
|
|
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": "271038257033006746494769af7e92ebc9c46afcca2554a5c657bab77f4d60b3"
|
|
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": "5d0a6d240ef47331f8efe38a4efcb034dd8a60e5be360ad9ed9bc8cae89fac21"
|
|
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": "92080a4628e069ff43485b90c36ac81acf0850105e6fb5f8a018a182701f1922"
|
|
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": "33a718aad4e63a4b97b71997386248e1ea4d16b27c86f5d88499a6faa5ee93d3"
|
|
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": "9e11b1cf115449686e3d49f568ce18d71f688efec660e65d9d7a99afeff6aa32"
|
|
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": "e15697ef34685c9cd55d21dac4e2de21815ff3d984605a47b4e9cac5b4829693"
|
|
287
299
|
},
|
|
288
300
|
{
|
|
289
301
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -295,7 +307,11 @@
|
|
|
295
307
|
},
|
|
296
308
|
{
|
|
297
309
|
"path": "scripts/harness_events.py",
|
|
298
|
-
"sha256": "
|
|
310
|
+
"sha256": "5ebe48d649ed3040245c676ea38ecb2a443582228340c4631481da2e853cd9a0"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"path": "scripts/harness_gate.py",
|
|
314
|
+
"sha256": "fdc596d51116e6fce58baad24673c94fc04b78b4af8781ee8afd7b2cdb3121eb"
|
|
299
315
|
},
|
|
300
316
|
{
|
|
301
317
|
"path": "scripts/harness_ledger.py",
|
|
@@ -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.8",
|
|
6
6
|
"generator": "harness_deploy.py",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
9
|
"path": ".harness-build.json",
|
|
10
|
-
"sha256": "
|
|
10
|
+
"sha256": "3603268f4b01b607eeb770ba144f2e166954804a1def64a6d77b8135f57b510f"
|
|
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": "c7cb400dcb5359e35d03ee0c6dd6941bc3d414ad7fd694c08199463ad932ffed"
|
|
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": "eb85c55282d338fe3f433a202de02e1de513d532feb26008c5f2460d6ffb30b1"
|
|
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": "08856bbb392991f3bacafddd2c8059592caef696661e73588d56ddc03689101b"
|
|
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": "145517355b0c76f197ac85b0bb631c9a6bf5cbe9a04db289d3c5231f903336ed"
|
|
139
143
|
},
|
|
140
144
|
{
|
|
141
145
|
"path": "harness-knowledge-query/SKILL.md",
|
|
142
|
-
"sha256": "
|
|
146
|
+
"sha256": "b72f83514c378eaad3abef67caf0557a7fbcffc9d2f8f652ee5762e0709133b6"
|
|
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": "e02aeb56ffd15a9696470e3155188cb995bcc25d9a7f9aa79ab4ca3e52491fcb"
|
|
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": "372602372b12c5f3cf83a771f4a367469e7696f6a7b53d792b02821871df2530"
|
|
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": "f390bd7735381124a3f7a398c9abc93febedeae3f5b71c22de6a25425e57cc18"
|
|
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": "030fde83b0062ff93c85a53e3c3a1f9a2b7ba0f75951413a8348f72dc26c679d"
|
|
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": "fc053e558bc924556acf10d6997f3ddbb392345de4a5e449852f051154cd3fba"
|
|
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": "7ed3879b57ae7c41c1d85213d2e9bacad053a291c06f173ce00a2616ff57f50a"
|
|
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": "73ac83baf9b8ead6372b98b8d7b99cb50153ce8fc95b0545862208076cdad6c4"
|
|
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": "e15697ef34685c9cd55d21dac4e2de21815ff3d984605a47b4e9cac5b4829693"
|
|
287
299
|
},
|
|
288
300
|
{
|
|
289
301
|
"path": "scripts/harness_check_gate.py",
|
|
@@ -295,7 +307,11 @@
|
|
|
295
307
|
},
|
|
296
308
|
{
|
|
297
309
|
"path": "scripts/harness_events.py",
|
|
298
|
-
"sha256": "
|
|
310
|
+
"sha256": "5ebe48d649ed3040245c676ea38ecb2a443582228340c4631481da2e853cd9a0"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"path": "scripts/harness_gate.py",
|
|
314
|
+
"sha256": "fdc596d51116e6fce58baad24673c94fc04b78b4af8781ee8afd7b2cdb3121eb"
|
|
299
315
|
},
|
|
300
316
|
{
|
|
301
317
|
"path": "scripts/harness_ledger.py",
|
|
@@ -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
|
}
|