- Co-Authored-By
- Claude Fable 5 <noreply@anthropic.com>
- Claude-Session
- https://claude.ai/code/session_01SoZMfWRSGnf6FZX2Ar9rQ2
Read the nested run output envelope in `openagents box`
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
packages/openagents-cli/src/box-client.ts -
modified
packages/openagents-cli/src/box-command.ts -
modified
packages/openagents-cli/test/box-command.test.ts
Diff
3 files changed, +196 -5
packages/openagents-cli/src/box-client.ts modified +32 -4
@@ -13,7 +13,7 @@ import { ApiTransport } from "./api-transport.js";
| 13 | 13 |
|
| 14 | 14 |
|
| 15 | 15 |
|
| 16 |
|
|
| 16 |
|
|
| 17 | 17 |
|
| 18 | 18 |
|
| 19 | 19 |
|
@@ -119,6 +119,15 @@ export interface BoxRunViewInput extends AuthenticatedApi {
| 119 | 119 |
|
| 120 | 120 |
|
| 121 | 121 |
|
| 122 |
|
|
| 123 |
|
|
| 124 |
|
|
| 125 |
|
|
| 126 |
|
|
| 127 |
|
|
| 128 |
|
|
| 129 |
|
|
| 130 |
|
|
| 122 | 131 |
|
| 123 | 132 |
|
| 124 | 133 |
|
@@ -154,7 +163,7 @@ export interface BoxClientInterface {
| 154 | 163 |
|
| 155 | 164 |
|
| 156 | 165 |
|
| 157 |
|
|
| 166 |
|
|
| 158 | 167 |
|
| 159 | 168 |
|
| 160 | 169 |
|
@@ -170,6 +179,14 @@ export const boxClientLayer = Layer.effect(
| 170 | 179 |
|
| 171 | 180 |
|
| 172 | 181 |
|
| 182 |
|
|
| 183 |
|
|
| 184 |
|
|
| 185 |
|
|
| 186 |
|
|
| 187 |
|
|
| 188 |
|
|
| 189 |
|
|
| 173 | 190 |
|
| 174 | 191 |
|
| 175 | 192 |
|
@@ -187,7 +204,9 @@ export const boxClientLayer = Layer.effect(
| 187 | 204 |
|
| 188 | 205 |
|
| 189 | 206 |
|
| 190 |
|
|
| 207 |
|
|
| 208 |
|
|
| 209 |
|
|
| 191 | 210 |
|
| 192 | 211 |
|
| 193 | 212 |
|
@@ -410,10 +429,19 @@ export const boxClientLayer = Layer.effect(
| 410 | 429 |
|
| 411 | 430 |
|
| 412 | 431 |
|
| 432 |
|
|
| 433 |
|
|
| 434 |
|
|
| 435 |
|
|
| 436 |
|
|
| 413 | 437 |
|
| 438 |
|
|
| 439 |
|
|
| 414 | 440 |
|
| 415 | 441 |
|
| 416 |
|
|
| 442 |
|
|
| 443 |
|
|
| 444 |
|
|
| 417 | 445 |
|
| 418 | 446 |
|
| 419 | 447 |
|
packages/openagents-cli/src/box-command.ts modified +7 -1
@@ -385,7 +385,13 @@ export const makeBoxCommand = <R>(root: Effect.Effect<SharedFlags, never, R>) =>
| 385 | 385 |
|
| 386 | 386 |
|
| 387 | 387 |
|
| 388 |
|
|
| 388 |
|
|
| 389 |
|
|
| 390 |
|
|
| 391 |
|
|
| 392 |
|
|
| 393 |
|
|
| 394 |
|
|
| 389 | 395 |
|
| 390 | 396 |
|
| 391 | 397 |
|
packages/openagents-cli/test/box-command.test.ts modified +157
@@ -186,4 +186,161 @@ describe("openagents box CLI commands", () => {
| 186 | 186 |
|
| 187 | 187 |
|
| 188 | 188 |
|
| 189 |
|
|
| 190 |
|
|
| 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 |
|
|
| 228 |
|
|
| 229 |
|
|
| 230 |
|
|
| 231 |
|
|
| 232 |
|
|
| 233 |
|
|
| 234 |
|
|
| 235 |
|
|
| 236 |
|
|
| 237 |
|
|
| 238 |
|
|
| 239 |
|
|
| 240 |
|
|
| 241 |
|
|
| 242 |
|
|
| 243 |
|
|
| 244 |
|
|
| 245 |
|
|
| 246 |
|
|
| 247 |
|
|
| 248 |
|
|
| 249 |
|
|
| 250 |
|
|
| 251 |
|
|
| 252 |
|
|
| 253 |
|
|
| 254 |
|
|
| 255 |
|
|
| 256 |
|
|
| 257 |
|
|
| 258 |
|
|
| 259 |
|
|
| 260 |
|
|
| 261 |
|
|
| 262 |
|
|
| 263 |
|
|
| 264 |
|
|
| 265 |
|
|
| 266 |
|
|
| 267 |
|
|
| 268 |
|
|
| 269 |
|
|
| 270 |
|
|
| 271 |
|
|
| 272 |
|
|
| 273 |
|
|
| 274 |
|
|
| 275 |
|
|
| 276 |
|
|
| 277 |
|
|
| 278 |
|
|
| 279 |
|
|
| 280 |
|
|
| 281 |
|
|
| 282 |
|
|
| 283 |
|
|
| 284 |
|
|
| 285 |
|
|
| 286 |
|
|
| 287 |
|
|
| 288 |
|
|
| 289 |
|
|
| 290 |
|
|
| 291 |
|
|
| 292 |
|
|
| 293 |
|
|
| 294 |
|
|
| 295 |
|
|
| 296 |
|
|
| 297 |
|
|
| 298 |
|
|
| 299 |
|
|
| 300 |
|
|
| 301 |
|
|
| 302 |
|
|
| 303 |
|
|
| 304 |
|
|
| 305 |
|
|
| 306 |
|
|
| 307 |
|
|
| 308 |
|
|
| 309 |
|
|
| 310 |
|
|
| 311 |
|
|
| 312 |
|
|
| 313 |
|
|
| 314 |
|
|
| 315 |
|
|
| 316 |
|
|
| 317 |
|
|
| 318 |
|
|
| 319 |
|
|
| 320 |
|
|
| 321 |
|
|
| 322 |
|
|
| 323 |
|
|
| 324 |
|
|
| 325 |
|
|
| 326 |
|
|
| 327 |
|
|
| 328 |
|
|
| 329 |
|
|
| 330 |
|
|
| 331 |
|
|
| 332 |
|
|
| 333 |
|
|
| 334 |
|
|
| 335 |
|
|
| 336 |
|
|
| 337 |
|
|
| 338 |
|
|
| 339 |
|
|
| 340 |
|
|
| 341 |
|
|
| 342 |
|
|
| 343 |
|
|
| 344 |
|
|
| 345 |
|
|
| 189 | 346 |
|