Structure SCV report delivery
Deploy story
What this commit did to the running system — joined from the forge receipt chain, the part a commit page elsewhere cannot show.
Not deployed through the forge lane
No push, promotion, build, or deploy receipt references this commit (receipts are scanned over a bounded recent window). Changes shipped by full node replacement carry their proof in the release gate receipt instead.
Changed files
-
modified
.dockerignore -
modified
docs/scv-planning.md -
modified
lib/openagents/scv/open_code_report.ex -
modified
lib/openagents/scv/worker.ex -
modified
test/openagents/scv/open_code_report_test.exs -
modified
test/openagents/scv/run_test.exs
Diff
6 files changed, +133 -10
.dockerignore modified -2
docs/scv-planning.md modified +15 -3
@@ -2,9 +2,10 @@
| 2 | 2 |
|
| 3 | 3 |
|
| 4 | 4 |
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 8 | 9 |
|
| 9 | 10 |
|
| 10 | 11 |
|
@@ -100,6 +101,9 @@ authority in staging, worker registration, Forge promotion, or deployment:
| 100 | 101 |
|
| 101 | 102 |
|
| 102 | 103 |
|
| 104 |
|
|
| 105 |
|
|
| 106 |
|
|
| 103 | 107 |
|
| 104 | 108 |
|
| 105 | 109 |
|
@@ -116,6 +120,14 @@ OpenCode logs as OpenCode produces them. Final JSON remains on standard output,
| 116 | 120 |
|
| 117 | 121 |
|
| 118 | 122 |
|
| 123 |
|
|
| 124 |
|
|
| 125 |
|
|
| 126 |
|
|
| 127 |
|
|
| 128 |
|
|
| 129 |
|
|
| 130 |
|
|
| 119 | 131 |
|
| 120 | 132 |
|
| 121 | 133 |
|
lib/openagents/scv/open_code_report.ex modified +16
@@ -43,6 +43,13 @@ defmodule OpenAgents.SCV.OpenCodeReport do
| 43 | 43 |
|
| 44 | 44 |
|
| 45 | 45 |
|
| 46 |
|
|
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
|
| 46 | 53 |
|
| 47 | 54 |
|
| 48 | 55 |
|
@@ -78,4 +85,13 @@ defmodule OpenAgents.SCV.OpenCodeReport do
| 78 | 85 |
|
| 79 | 86 |
|
| 80 | 87 |
|
| 88 |
|
|
| 89 |
|
|
| 90 |
|
|
| 91 |
|
|
| 92 |
|
|
| 93 |
|
|
| 94 |
|
|
| 95 |
|
|
| 96 |
|
|
| 81 | 97 |
|
lib/openagents/scv/worker.ex modified +53 -5
@@ -9,11 +9,13 @@ defmodule OpenAgents.SCV.Worker do
| 9 | 9 |
|
| 10 | 10 |
|
| 11 | 11 |
|
| 12 |
|
|
| 12 | 13 |
|
| 13 | 14 |
|
| 14 | 15 |
|
| 15 | 16 |
|
| 16 | 17 |
|
| 18 |
|
|
| 17 | 19 |
|
| 18 | 20 |
|
| 19 | 21 |
|
@@ -34,11 +36,11 @@ defmodule OpenAgents.SCV.Worker do
| 34 | 36 |
|
| 35 | 37 |
|
| 36 | 38 |
|
| 37 |
|
|
| 39 |
|
|
| 38 | 40 |
|
| 39 | 41 |
|
| 40 | 42 |
|
| 41 |
|
|
| 43 |
|
|
| 42 | 44 |
|
| 43 | 45 |
|
| 44 | 46 |
|
@@ -186,11 +188,47 @@ defmodule OpenAgents.SCV.Worker do
| 186 | 188 |
|
| 187 | 189 |
|
| 188 | 190 |
|
| 189 |
|
|
| 191 |
|
|
| 192 |
|
|
| 193 |
|
|
| 194 |
|
|
| 195 |
|
|
| 196 |
|
|
| 197 |
|
|
| 198 |
|
|
| 199 |
|
|
| 200 |
|
|
| 201 |
|
|
| 202 |
|
|
| 203 |
|
|
| 204 |
|
|
| 205 |
|
|
| 206 |
|
|
| 207 |
|
|
| 208 |
|
|
| 209 |
|
|
| 210 |
|
|
| 211 |
|
|
| 212 |
|
|
| 213 |
|
|
| 214 |
|
|
| 215 |
|
|
| 216 |
|
|
| 217 |
|
|
| 218 |
|
|
| 219 |
|
|
| 220 |
|
|
| 221 |
|
|
| 222 |
|
|
| 223 |
|
|
| 224 |
|
|
| 225 |
|
|
| 226 |
|
|
| 227 |
|
|
| 190 | 228 |
|
| 191 | 229 |
|
| 192 | 230 |
|
| 193 |
|
|
| 231 |
|
|
| 194 | 232 |
|
| 195 | 233 |
|
| 196 | 234 |
|
@@ -202,10 +240,20 @@ defmodule OpenAgents.SCV.Worker do
| 202 | 240 |
|
| 203 | 241 |
|
| 204 | 242 |
|
| 205 |
|
|
| 243 |
|
|
| 206 | 244 |
|
| 207 | 245 |
|
| 208 | 246 |
|
| 247 |
|
|
| 248 |
|
|
| 249 |
|
|
| 250 |
|
|
| 251 |
|
|
| 252 |
|
|
| 253 |
|
|
| 254 |
|
|
| 255 |
|
|
| 256 |
|
|
| 209 | 257 |
|
| 210 | 258 |
|
| 211 | 259 |
|
test/openagents/scv/open_code_report_test.exs modified +12
@@ -43,4 +43,16 @@ defmodule OpenAgents.SCV.OpenCodeReportTest do
| 43 | 43 |
|
| 44 | 44 |
|
| 45 | 45 |
|
| 46 |
|
|
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
|
|
| 55 |
|
|
| 56 |
|
|
| 57 |
|
|
| 46 | 58 |
|
test/openagents/scv/run_test.exs modified +37
@@ -119,6 +119,43 @@ defmodule OpenAgents.SCV.RunTest do
| 119 | 119 |
|
| 120 | 120 |
|
| 121 | 121 |
|
| 122 |
|
|
| 123 |
|
|
| 124 |
|
|
| 125 |
|
|
| 126 |
|
|
| 127 |
|
|
| 128 |
|
|
| 129 |
|
|
| 130 |
|
|
| 131 |
|
|
| 132 |
|
|
| 133 |
|
|
| 134 |
|
|
| 135 |
|
|
| 136 |
|
|
| 137 |
|
|
| 138 |
|
|
| 139 |
|
|
| 140 |
|
|
| 141 |
|
|
| 142 |
|
|
| 143 |
|
|
| 144 |
|
|
| 145 |
|
|
| 146 |
|
|
| 147 |
|
|
| 148 |
|
|
| 149 |
|
|
| 150 |
|
|
| 151 |
|
|
| 152 |
|
|
| 153 |
|
|
| 154 |
|
|
| 155 |
|
|
| 156 |
|
|
| 157 |
|
|
| 158 |
|
|
| 122 | 159 |
|
| 123 | 160 |
|
| 124 | 161 |
|