- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
- Claude-Session
- https://claude.ai/code/session_01DTmy4SEXrHXouw5sZbs3f4
Drop the pairing owner column the computer already answers for
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/machines.ex -
modified
lib/openagents/machines/pairing.ex -
modified
lib/openagents/vocabulary.ex -
modified
priv/migration_lineages/prior-2026-08-19.json -
added
priv/repo/migrations/20260824042729_drop_machine_pairing_user_id.exs -
modified
test/openagents/machines_test.exs
Diff
6 files changed, +80 -6
lib/openagents/machines.ex modified -1
lib/openagents/machines/pairing.ex modified +8 -3
@@ -1,5 +1,12 @@
| 1 | 1 |
|
| 2 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 3 | 10 |
|
| 4 | 11 |
|
| 5 | 12 |
|
@@ -17,7 +24,6 @@ defmodule OpenAgents.Machines.Pairing do
| 17 | 24 |
|
| 18 | 25 |
|
| 19 | 26 |
|
| 20 |
|
|
| 21 | 27 |
|
| 22 | 28 |
|
| 23 | 29 |
|
lib/openagents/vocabulary.ex modified -1
@@ -39,7 +39,6 @@ defmodule OpenAgents.Vocabulary do
| 39 | 39 |
|
| 40 | 40 |
|
| 41 | 41 |
|
| 42 |
|
|
| 43 | 42 |
|
| 44 | 43 |
|
| 45 | 44 |
|
priv/migration_lineages/prior-2026-08-19.json modified +2 -1
priv/repo/migrations/20260824042729_drop_machine_pairing_user_id.exs added +31
@@ -0,0 +1,31 @@
| 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 |
|
test/openagents/machines_test.exs modified +39
@@ -51,6 +51,45 @@ defmodule OpenAgents.MachinesTest do
| 51 | 51 |
|
| 52 | 52 |
|
| 53 | 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 |
|
|
| 89 |
|
|
| 90 |
|
|
| 91 |
|
|
| 92 |
|
|
| 54 | 93 |
|
| 55 | 94 |
|
| 56 | 95 |
|