- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
- Claude-Session
- https://claude.ai/code/session_01DTmy4SEXrHXouw5sZbs3f4
Publish when a computer was revoked, not only that it was
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
INVARIANTS.md -
modified
lib/openagents/computer_projection.ex -
added
test/openagents/computer_projection_test.exs
Diff
3 files changed, +108 -3
INVARIANTS.md modified +6 -2
@@ -438,7 +438,11 @@ Computer grant. The local computer controller remains authoritative over
| 438 | 438 |
|
| 439 | 439 |
|
| 440 | 440 |
|
| 441 |
|
|
| 441 |
|
|
| 442 |
|
|
| 443 |
|
|
| 444 |
|
|
| 445 |
|
|
| 442 | 446 |
|
| 443 | 447 |
|
| 444 | 448 |
|
@@ -4629,7 +4633,7 @@ contract; the invariant prose above defines the assertion, not the filename.
| 4629 | 4633 |
|
| 4630 | 4634 |
|
| 4631 | 4635 |
|
| 4632 |
|
|
| 4636 |
|
|
| 4633 | 4637 |
|
| 4634 | 4638 |
|
| 4635 | 4639 |
|
lib/openagents/computer_projection.ex modified +14 -1
@@ -1,5 +1,17 @@
| 1 | 1 |
|
| 2 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 3 | 15 |
|
| 4 | 16 |
|
| 5 | 17 |
|
@@ -11,6 +23,7 @@ defmodule OpenAgents.ComputerProjection do
| 11 | 23 |
|
| 12 | 24 |
|
| 13 | 25 |
|
| 26 |
|
|
| 14 | 27 |
|
| 15 | 28 |
|
| 16 | 29 |
|
test/openagents/computer_projection_test.exs added +88
@@ -0,0 +1,88 @@
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
|
| 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 |
|
|
| 66 |
|
|
| 67 |
|
|
| 68 |
|
|
| 69 |
|
|
| 70 |
|
|
| 71 |
|
|
| 72 |
|
|
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 76 |
|
|
| 77 |
|
|
| 78 |
|
|
| 79 |
|
|
| 80 |
|
|
| 81 |
|
|
| 82 |
|
|
| 83 |
|
|
| 84 |
|
|
| 85 |
|
|
| 86 |
|
|
| 87 |
|
|
| 88 |
|