- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
- Claude-Session
- https://claude.ai/code/session_012TRDRrfL1khQhQtNr3SRrA
Put the local model behind --local
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
packages/openagents-cli/src/cli.ts -
modified
packages/openagents-cli/src/coder-backends.ts -
modified
packages/openagents-cli/src/coder-transcript.ts -
modified
packages/openagents-cli/test/coder-ollama.test.ts
Diff
4 files changed, +77 -3
packages/openagents-cli/src/cli.ts modified +25 -2
@@ -37,7 +37,7 @@ import type { ReplySource } from "./coder-session.js";
| 37 | 37 |
|
| 38 | 38 |
|
| 39 | 39 |
|
| 40 |
|
|
| 40 |
|
|
| 41 | 41 |
|
| 42 | 42 |
|
| 43 | 43 |
|
@@ -1475,6 +1475,11 @@ const coderPlainFlag = Flag.boolean("plain").pipe(
| 1475 | 1475 |
|
| 1476 | 1476 |
|
| 1477 | 1477 |
|
| 1478 |
|
|
| 1479 |
|
|
| 1480 |
|
|
| 1481 |
|
|
| 1482 |
|
|
| 1478 | 1483 |
|
| 1479 | 1484 |
|
| 1480 | 1485 |
|
@@ -1772,6 +1777,7 @@ const coderCommand = Command.make(
| 1772 | 1777 |
|
| 1773 | 1778 |
|
| 1774 | 1779 |
|
| 1780 |
|
|
| 1775 | 1781 |
|
| 1776 | 1782 |
|
| 1777 | 1783 |
|
@@ -1787,6 +1793,7 @@ const coderCommand = Command.make(
| 1787 | 1793 |
|
| 1788 | 1794 |
|
| 1789 | 1795 |
|
| 1796 |
|
|
| 1790 | 1797 |
|
| 1791 | 1798 |
|
| 1792 | 1799 |
|
@@ -1835,11 +1842,25 @@ const coderCommand = Command.make(
| 1835 | 1842 |
|
| 1836 | 1843 |
|
| 1837 | 1844 |
|
| 1845 |
|
|
| 1846 |
|
|
| 1847 |
|
|
| 1848 |
|
|
| 1849 |
|
|
| 1850 |
|
|
| 1838 | 1851 |
|
| 1839 |
|
|
| 1852 |
|
|
| 1840 | 1853 |
|
| 1841 | 1854 |
|
| 1842 | 1855 |
|
| 1856 |
|
|
| 1857 |
|
|
| 1858 |
|
|
| 1859 |
|
|
| 1860 |
|
|
| 1861 |
|
|
| 1862 |
|
|
| 1863 |
|
|
| 1843 | 1864 |
|
| 1844 | 1865 |
|
| 1845 | 1866 |
|
@@ -1977,6 +1998,8 @@ const coderCommand = Command.make(
| 1977 | 1998 |
|
| 1978 | 1999 |
|
| 1979 | 2000 |
|
| 2001 |
|
|
| 2002 |
|
|
| 1980 | 2003 |
|
| 1981 | 2004 |
|
| 1982 | 2005 |
|
packages/openagents-cli/src/coder-backends.ts modified +20
@@ -32,5 +32,25 @@ export const CODER_BACKENDS: readonly CoderBackend[] = [
| 32 | 32 |
|
| 33 | 33 |
|
| 34 | 34 |
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
|
| 46 |
|
|
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
|
|
| 35 | 55 |
|
| 36 | 56 |
|
packages/openagents-cli/src/coder-transcript.ts modified +18 -1
@@ -184,6 +184,16 @@ export class ThreadTranscriptWriter implements TranscriptSink {
| 184 | 184 |
|
| 185 | 185 |
|
| 186 | 186 |
|
| 187 |
|
|
| 188 |
|
|
| 189 |
|
|
| 190 |
|
|
| 191 |
|
|
| 192 |
|
|
| 193 |
|
|
| 194 |
|
|
| 195 |
|
|
| 196 |
|
|
| 187 | 197 |
|
| 188 | 198 |
|
| 189 | 199 |
|
@@ -227,7 +237,7 @@ export class ThreadTranscriptWriter implements TranscriptSink {
| 227 | 237 |
|
| 228 | 238 |
|
| 229 | 239 |
|
| 230 |
|
|
| 240 |
|
|
| 231 | 241 |
|
| 232 | 242 |
|
| 233 | 243 |
|
@@ -250,6 +260,13 @@ export class ThreadTranscriptWriter implements TranscriptSink {
| 250 | 260 |
|
| 251 | 261 |
|
| 252 | 262 |
|
| 263 |
|
|
| 264 |
|
|
| 265 |
|
|
| 266 |
|
|
| 267 |
|
|
| 268 |
|
|
| 269 |
|
|
| 253 | 270 |
|
| 254 | 271 |
|
| 255 | 272 |
|
packages/openagents-cli/test/coder-ollama.test.ts modified +14
@@ -557,3 +557,17 @@ describe("what goes back to the model each round", () => {
| 557 | 557 |
|
| 558 | 558 |
|
| 559 | 559 |
|
| 560 |
|
|
| 561 |
|
|
| 562 |
|
|
| 563 |
|
|
| 564 |
|
|
| 565 |
|
|
| 566 |
|
|
| 567 |
|
|
| 568 |
|
|
| 569 |
|
|
| 570 |
|
|
| 571 |
|
|
| 572 |
|
|
| 573 |
|