Port more Sarah gaps: /status probe, voice role_selection, forge target ids. - Add StatusProbeCompat plug and apply it to /status. - Add missing migrations for message search_vector, voice_sessions role_selection, and forge target_id type. - Wire test fake providers/voice in config/test.exs. - Unskip tests that now pass: health, auth gate, network status, changelog, memory, semantic, conversation recall.
Port more Sarah gaps: /status probe, voice role_selection, forge target ids.
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
config/test.exs -
modified
lib/openagents/forge/deploy_receipt.ex -
modified
lib/openagents_web/plugs/status_probe_compat.ex -
modified
lib/openagents_web/router.ex -
added
priv/repo/migrations/20260820030850_add_lexical_message_recall.exs -
added
priv/repo/migrations/20260820030959_complete_voice_sessions_columns.exs -
added
priv/repo/migrations/20260820031230_fix_forge_deploys_target_id_to_binary.exs -
added
priv/repo/migrations/20260820031258_fix_forge_builds_target_id_to_binary.exs -
added
priv/repo/migrations/20260820031313_drop_forge_target_fkeys.exs -
modified
test/openagents/changelog_test.exs -
modified
test/openagents/memory/evaluation_test.exs -
modified
test/openagents/memory/lexical_recall_test.exs -
modified
test/openagents/semantic_recall_test.exs -
modified
test/openagents/tools/conversation_recall_tools_test.exs -
modified
test/openagents_web/auth_gate_test.exs -
modified
test/openagents_web/controllers/health_controller_test.exs -
modified
test/openagents_web/live/network_status_live_test.exs
Diff
17 files changed, +170 -21
config/test.exs modified +5
@@ -23,6 +23,11 @@ config :openagents,
| 23 | 23 |
|
| 24 | 24 |
|
| 25 | 25 |
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 26 | 31 |
|
| 27 | 32 |
|
| 28 | 33 |
|
lib/openagents/forge/deploy_receipt.ex modified +1 -1
@@ -18,7 +18,7 @@ defmodule OpenAgents.Forge.DeployReceipt do
| 18 | 18 |
|
| 19 | 19 |
|
| 20 | 20 |
|
| 21 |
|
|
| 21 |
|
|
| 22 | 22 |
|
| 23 | 23 |
|
| 24 | 24 |
|
lib/openagents_web/plugs/status_probe_compat.ex modified +9 -10
@@ -1,16 +1,13 @@
| 1 | 1 |
|
| 2 | 2 |
|
| 3 |
|
|
| 3 |
|
|
| 4 | 4 |
|
| 5 |
|
|
| 6 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 | 7 |
|
| 8 | 8 |
|
| 9 | 9 |
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 10 |
|
|
| 14 | 11 |
|
| 15 | 12 |
|
| 16 | 13 |
|
@@ -24,15 +21,17 @@ defmodule OpenAgentsWeb.Plugs.StatusProbeCompat do
| 24 | 21 |
|
| 25 | 22 |
|
| 26 | 23 |
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 24 |
|
|
| 30 | 25 |
|
| 31 | 26 |
|
| 32 | 27 |
|
| 28 |
|
|
| 29 |
|
|
| 33 | 30 |
|
| 34 | 31 |
|
| 35 | 32 |
|
| 33 |
|
|
| 34 |
|
|
| 36 | 35 |
|
| 37 | 36 |
|
| 38 | 37 |
|
lib/openagents_web/router.ex modified +7 -2
@@ -17,12 +17,16 @@ defmodule OpenAgentsWeb.Router do
| 17 | 17 |
|
| 18 | 18 |
|
| 19 | 19 |
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 20 | 24 |
|
| 21 | 25 |
|
| 22 | 26 |
|
| 23 | 27 |
|
| 24 | 28 |
|
| 25 |
|
|
| 29 |
|
|
| 26 | 30 |
|
| 27 | 31 |
|
| 28 | 32 |
|
@@ -100,7 +104,6 @@ defmodule OpenAgentsWeb.Router do
| 100 | 104 |
|
| 101 | 105 |
|
| 102 | 106 |
|
| 103 |
|
|
| 104 | 107 |
|
| 105 | 108 |
|
| 106 | 109 |
|
@@ -109,6 +112,8 @@ defmodule OpenAgentsWeb.Router do
| 109 | 112 |
|
| 110 | 113 |
|
| 111 | 114 |
|
| 115 |
|
|
| 116 |
|
|
| 112 | 117 |
|
| 113 | 118 |
|
| 114 | 119 |
|
priv/repo/migrations/20260820030850_add_lexical_message_recall.exs added +38
@@ -0,0 +1,38 @@
| 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 |
|
priv/repo/migrations/20260820030959_complete_voice_sessions_columns.exs added +15
@@ -0,0 +1,15 @@
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
priv/repo/migrations/20260820031230_fix_forge_deploys_target_id_to_binary.exs added +48
@@ -0,0 +1,48 @@
| 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 |
|
priv/repo/migrations/20260820031258_fix_forge_builds_target_id_to_binary.exs added +25
@@ -0,0 +1,25 @@
| 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 |
|
priv/repo/migrations/20260820031313_drop_forge_target_fkeys.exs added +22
@@ -0,0 +1,22 @@
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|