- Co-Authored-By
- Claude Fable 5 <noreply@anthropic.com>
- Claude-Session
- https://claude.ai/code/session_01SoZMfWRSGnf6FZX2Ar9rQ2
fix(box): install OpenCode from a pinned release the run PATH resolves
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
lib/openagents/box.ex -
modified
test/openagents/box_test.exs
Diff
2 files changed, +117 -2
lib/openagents/box.ex modified +54 -1
@@ -27,6 +27,19 @@ defmodule OpenAgents.Box do
| 27 | 27 |
|
| 28 | 28 |
|
| 29 | 29 |
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 41 |
|
|
| 42 |
|
|
| 30 | 43 |
|
| 31 | 44 |
|
| 32 | 45 |
|
@@ -434,6 +447,11 @@ defmodule OpenAgents.Box do
| 434 | 447 |
|
| 435 | 448 |
|
| 436 | 449 |
|
| 450 |
|
|
| 451 |
|
|
| 452 |
|
|
| 453 |
|
|
| 454 |
|
|
| 437 | 455 |
|
| 438 | 456 |
|
| 439 | 457 |
|
@@ -446,11 +464,46 @@ defmodule OpenAgents.Box do
| 446 | 464 |
|
| 447 | 465 |
|
| 448 | 466 |
|
| 449 |
|
|
| 467 |
|
|
| 450 | 468 |
|
| 451 | 469 |
|
| 452 | 470 |
|
| 453 | 471 |
|
| 472 |
|
|
| 473 |
|
|
| 474 |
|
|
| 475 |
|
|
| 476 |
|
|
| 477 |
|
|
| 478 |
|
|
| 479 |
|
|
| 480 |
|
|
| 481 |
|
|
| 482 |
|
|
| 483 |
|
|
| 484 |
|
|
| 485 |
|
|
| 486 |
|
|
| 487 |
|
|
| 488 |
|
|
| 489 |
|
|
| 490 |
|
|
| 491 |
|
|
| 492 |
|
|
| 493 |
|
|
| 494 |
|
|
| 495 |
|
|
| 496 |
|
|
| 497 |
|
|
| 498 |
|
|
| 499 |
|
|
| 500 |
|
|
| 501 |
|
|
| 502 |
|
|
| 503 |
|
|
| 504 |
|
|
| 505 |
|
|
| 506 |
|
|
| 454 | 507 |
|
| 455 | 508 |
|
| 456 | 509 |
|
test/openagents/box_test.exs modified +63 -1
@@ -37,6 +37,32 @@ defmodule OpenAgents.BoxTest do
| 37 | 37 |
|
| 38 | 38 |
|
| 39 | 39 |
|
| 40 |
|
|
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
|
| 46 |
|
|
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
|
|
| 55 |
|
|
| 56 |
|
|
| 57 |
|
|
| 58 |
|
|
| 59 |
|
|
| 60 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 64 |
|
|
| 65 |
|
|
| 40 | 66 |
|
| 41 | 67 |
|
| 42 | 68 |
|
@@ -64,7 +90,6 @@ defmodule OpenAgents.BoxTest do
| 64 | 90 |
|
| 65 | 91 |
|
| 66 | 92 |
|
| 67 |
|
|
| 68 | 93 |
|
| 69 | 94 |
|
| 70 | 95 |
|
@@ -92,6 +117,43 @@ defmodule OpenAgents.BoxTest do
| 92 | 117 |
|
| 93 | 118 |
|
| 94 | 119 |
|
| 120 |
|
|
| 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 |
|
|
| 95 | 157 |
|
| 96 | 158 |
|
| 97 | 159 |
|