- Co-Authored-By
- Claude Fable 5 <noreply@anthropic.com>
- Claude-Session
- https://claude.ai/code/session_01GoYpb8FEmdxVErsv7ABCYi
Let the dev server listen beyond loopback when asked
Deploy story
What this commit did to the running system — joined from the forge receipt chain, the part a commit page elsewhere cannot show.
- pushed
- by user · WAL seq 322 · 2026-08-24T23:32:35.564616Z
Changed files
-
modified
INVARIANTS.md -
modified
config/config.exs -
modified
config/dev.exs -
modified
lib/openagents/inference.ex -
modified
lib/openagents/inference/grant.ex -
modified
lib/openagents/threads.ex -
modified
lib/openagents_web/controllers/thread_controller.ex -
modified
priv/migration_lineages/prior-2026-08-19.json -
added
priv/repo/migrations/20260824231951_allow_unbounded_inference_grants.exs -
modified
test/openagents/inference/credit_test.exs -
modified
test/openagents_web/controllers/thread_controller_test.exs
Diff
11 files changed, +189 -44
INVARIANTS.md modified +14 -7
@@ -2202,13 +2202,20 @@ conversation, and a thread is not one.
| 2202 | 2202 |
|
| 2203 | 2203 |
|
| 2204 | 2204 |
|
| 2205 |
|
|
| 2206 |
|
|
| 2207 |
|
|
| 2208 |
|
|
| 2209 |
|
|
| 2210 |
|
|
| 2211 |
|
|
| 2205 |
|
|
| 2206 |
|
|
| 2207 |
|
|
| 2208 |
|
|
| 2209 |
|
|
| 2210 |
|
|
| 2211 |
|
|
| 2212 |
|
|
| 2213 |
|
|
| 2214 |
|
|
| 2215 |
|
|
| 2216 |
|
|
| 2217 |
|
|
| 2218 |
|
|
| 2212 | 2219 |
|
| 2213 | 2220 |
|
| 2214 | 2221 |
|
config/config.exs modified +7 -3
@@ -320,9 +320,13 @@ config :openagents,
| 320 | 320 |
|
| 321 | 321 |
|
| 322 | 322 |
|
| 323 |
|
|
| 324 |
|
|
| 325 |
|
|
| 323 |
|
|
| 324 |
|
|
| 325 |
|
|
| 326 |
|
|
| 327 |
|
|
| 328 |
|
|
| 329 |
|
|
| 326 | 330 |
|
| 327 | 331 |
|
| 328 | 332 |
|
config/dev.exs modified +8 -2
@@ -57,11 +57,17 @@ config :openagents,
| 57 | 57 |
|
| 58 | 58 |
|
| 59 | 59 |
|
| 60 |
|
|
| 60 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 61 | 64 |
|
| 62 | 65 |
|
| 63 | 66 |
|
| 64 |
|
|
| 67 |
|
|
| 68 |
|
|
| 69 |
|
|
| 70 |
|
|
| 65 | 71 |
|
| 66 | 72 |
|
| 67 | 73 |
|
lib/openagents/inference.ex modified +18 -11
@@ -23,11 +23,12 @@ defmodule OpenAgents.Inference do
| 23 | 23 |
|
| 24 | 24 |
|
| 25 | 25 |
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 31 | 32 |
|
| 32 | 33 |
|
| 33 | 34 |
|
@@ -350,20 +351,26 @@ defmodule OpenAgents.Inference do
| 350 | 351 |
|
| 351 | 352 |
|
| 352 | 353 |
|
| 353 |
|
|
| 354 |
|
|
| 355 |
|
|
| 354 |
|
|
| 355 |
|
|
| 356 |
|
|
| 356 | 357 |
|
| 357 | 358 |
|
| 358 | 359 |
|
| 359 | 360 |
|
| 360 | 361 |
|
| 361 | 362 |
|
| 362 |
|
|
| 363 |
|
|
| 364 |
|
|
| 363 |
|
|
| 364 |
|
|
| 365 |
|
|
| 365 | 366 |
|
| 366 | 367 |
|
| 368 |
|
|
| 369 |
|
|
| 370 |
|
|
| 371 |
|
|
| 372 |
|
|
| 373 |
|
|
| 367 | 374 |
|
| 368 | 375 |
|
| 369 | 376 |
|
lib/openagents/inference/grant.ex modified +6 -8
@@ -70,17 +70,15 @@ defmodule OpenAgents.Inference.Grant do
| 70 | 70 |
|
| 71 | 71 |
|
| 72 | 72 |
|
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 76 |
|
|
| 77 |
|
|
| 78 |
|
|
| 79 |
|
|
| 80 |
|
|
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 76 |
|
|
| 77 |
|
|
| 81 | 78 |
|
| 82 | 79 |
|
| 83 | 80 |
|
| 81 |
|
|
| 84 | 82 |
|
| 85 | 83 |
|
| 86 | 84 |
|
lib/openagents/threads.ex modified +7 -5
@@ -549,12 +549,14 @@ defmodule OpenAgents.Threads do
| 549 | 549 |
|
| 550 | 550 |
|
| 551 | 551 |
|
| 552 |
|
|
| 553 |
|
|
| 554 |
|
|
| 555 |
|
|
| 552 | 556 |
|
| 553 |
|
|
| 554 |
|
|
| 555 |
|
|
| 556 |
|
|
| 557 |
|
|
| 557 |
|
|
| 558 |
|
|
| 559 |
|
|
| 558 | 560 |
|
| 559 | 561 |
|
| 560 | 562 |
|
lib/openagents_web/controllers/thread_controller.ex modified +4
@@ -725,6 +725,10 @@ defmodule OpenAgentsWeb.ThreadController do
| 725 | 725 |
|
| 726 | 726 |
|
| 727 | 727 |
|
| 728 |
|
|
| 729 |
|
|
| 730 |
|
|
| 731 |
|
|
| 728 | 732 |
|
| 729 | 733 |
|
| 730 | 734 |
|
priv/migration_lineages/prior-2026-08-19.json modified +2 -1
priv/repo/migrations/20260824231951_allow_unbounded_inference_grants.exs added +100
@@ -0,0 +1,100 @@
| 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 |
|
|
| 89 |
|
|
| 90 |
|
|
| 91 |
|
|
| 92 |
|
|
| 93 |
|
|
| 94 |
|
|
| 95 |
|
|
| 96 |
|
|
| 97 |
|
|
| 98 |
|
|
| 99 |
|
|
| 100 |
|
test/openagents/inference/credit_test.exs modified +9 -1
@@ -90,7 +90,15 @@ defmodule OpenAgents.Inference.CreditTest do
| 90 | 90 |
|
| 91 | 91 |
|
| 92 | 92 |
|
| 93 |
|
|
| 93 |
|
|
| 94 |
|
|
| 95 |
|
|
| 96 |
|
|
| 97 |
|
|
| 98 |
|
|
| 99 |
|
|
| 100 |
|
|
| 101 |
|
|
| 94 | 102 |
|
| 95 | 103 |
|
| 96 | 104 |
|
test/openagents_web/controllers/thread_controller_test.exs modified +14 -6
@@ -318,7 +318,7 @@ defmodule OpenAgentsWeb.ThreadControllerTest do
| 318 | 318 |
|
| 319 | 319 |
|
| 320 | 320 |
|
| 321 |
|
|
| 321 |
|
|
| 322 | 322 |
|
| 323 | 323 |
|
| 324 | 324 |
|
@@ -336,11 +336,19 @@ defmodule OpenAgentsWeb.ThreadControllerTest do
| 336 | 336 |
|
| 337 | 337 |
|
| 338 | 338 |
|
| 339 |
|
|
| 340 |
|
|
| 341 |
|
|
| 342 |
|
|
| 343 |
|
|
| 339 |
|
|
| 340 |
|
|
| 341 |
|
|
| 342 |
|
|
| 343 |
|
|
| 344 |
|
|
| 345 |
|
|
| 346 |
|
|
| 347 |
|
|
| 348 |
|
|
| 349 |
|
|
| 350 |
|
|
| 351 |
|
|
| 344 | 352 |
|
| 345 | 353 |
|
| 346 | 354 |
|