- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
- Claude-Session
- https://claude.ai/code/session_012TRDRrfL1khQhQtNr3SRrA
Show a steered message as unread until the model is given it
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/coder-ollama.ts -
modified
packages/openagents-cli/src/coder-session.ts -
modified
packages/openagents-cli/src/coder-thread.ts -
modified
packages/openagents-cli/src/coder-ui.ts -
modified
packages/openagents-cli/src/coder-zen.ts -
modified
packages/openagents-cli/test/coder-steer.test.ts
Diff
6 files changed, +143 -8
packages/openagents-cli/src/coder-ollama.ts modified +4 -1
@@ -386,9 +386,12 @@ export class OllamaReplySource implements ReplySource {
| 386 | 386 |
|
| 387 | 387 |
|
| 388 | 388 |
|
| 389 |
|
|
| 389 |
|
|
| 390 |
|
|
| 390 | 391 |
|
| 391 | 392 |
|
| 393 |
|
|
| 394 |
|
|
| 392 | 395 |
|
| 393 | 396 |
|
| 394 | 397 |
|
packages/openagents-cli/src/coder-session.ts modified +57 -3
@@ -55,6 +55,20 @@ export type ReplyChunk =
| 55 | 55 |
|
| 56 | 56 |
|
| 57 | 57 |
|
| 58 |
|
|
| 59 |
|
|
| 60 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 64 |
|
|
| 65 |
|
|
| 66 |
|
|
| 67 |
|
|
| 68 |
|
|
| 69 |
|
|
| 70 |
|
|
| 71 |
|
|
| 58 | 72 |
|
| 59 | 73 |
|
| 60 | 74 |
|
@@ -169,6 +183,14 @@ export interface CoderEntry {
| 169 | 183 |
|
| 170 | 184 |
|
| 171 | 185 |
|
| 186 |
|
|
| 187 |
|
|
| 188 |
|
|
| 189 |
|
|
| 190 |
|
|
| 191 |
|
|
| 192 |
|
|
| 193 |
|
|
| 172 | 194 |
|
| 173 | 195 |
|
| 174 | 196 |
|
@@ -838,18 +860,28 @@ export class CoderSession {
| 838 | 860 |
|
| 839 | 861 |
|
| 840 | 862 |
|
| 841 |
|
|
| 842 |
|
|
| 843 | 863 |
|
| 844 | 864 |
|
| 845 | 865 |
|
| 846 | 866 |
|
| 847 | 867 |
|
| 848 |
|
|
| 868 |
|
|
| 869 |
|
|
| 870 |
|
|
| 871 |
|
|
| 872 |
|
|
| 873 |
|
|
| 874 |
|
|
| 875 |
|
|
| 876 |
|
|
| 877 |
|
|
| 878 |
|
|
| 849 | 879 |
|
| 850 | 880 |
|
| 851 | 881 |
|
| 852 | 882 |
|
| 883 |
|
|
| 884 |
|
|
| 853 | 885 |
|
| 854 | 886 |
|
| 855 | 887 |
|
@@ -956,6 +988,28 @@ export class CoderSession {
| 956 | 988 |
|
| 957 | 989 |
|
| 958 | 990 |
|
| 991 |
|
|
| 992 |
|
|
| 993 |
|
|
| 994 |
|
|
| 995 |
|
|
| 996 |
|
|
| 997 |
|
|
| 998 |
|
|
| 999 |
|
|
| 1000 |
|
|
| 1001 |
|
|
| 1002 |
|
|
| 1003 |
|
|
| 1004 |
|
|
| 1005 |
|
|
| 1006 |
|
|
| 1007 |
|
|
| 1008 |
|
|
| 1009 |
|
|
| 1010 |
|
|
| 1011 |
|
|
| 1012 |
|
|
| 959 | 1013 |
|
| 960 | 1014 |
|
| 961 | 1015 |
|
packages/openagents-cli/src/coder-thread.ts modified +4 -1
@@ -561,12 +561,15 @@ export class ThreadReplySource implements ReplySource {
| 561 | 561 |
|
| 562 | 562 |
|
| 563 | 563 |
|
| 564 |
|
|
| 564 |
|
|
| 565 |
|
|
| 565 | 566 |
|
| 566 | 567 |
|
| 567 | 568 |
|
| 568 | 569 |
|
| 569 | 570 |
|
| 571 |
|
|
| 572 |
|
|
| 570 | 573 |
|
| 571 | 574 |
|
| 572 | 575 |
|
packages/openagents-cli/src/coder-ui.ts modified +6
@@ -495,6 +495,12 @@ export function runCoderUi(session: CoderSession, options: CoderUiOptions): Prom
| 495 | 495 |
|
| 496 | 496 |
|
| 497 | 497 |
|
| 498 |
|
|
| 499 |
|
|
| 500 |
|
|
| 501 |
|
|
| 502 |
|
|
| 503 |
|
|
| 498 | 504 |
|
| 499 | 505 |
|
| 500 | 506 |
|
packages/openagents-cli/src/coder-zen.ts modified +4 -1
@@ -167,9 +167,12 @@ export class ZenReplySource implements ReplySource {
| 167 | 167 |
|
| 168 | 168 |
|
| 169 | 169 |
|
| 170 |
|
|
| 170 |
|
|
| 171 |
|
|
| 171 | 172 |
|
| 172 | 173 |
|
| 174 |
|
|
| 175 |
|
|
| 173 | 176 |
|
| 174 | 177 |
|
| 175 | 178 |
|
packages/openagents-cli/test/coder-steer.test.ts modified +68 -2
@@ -51,7 +51,73 @@ describe("steering a running turn", () => {
| 51 | 51 |
|
| 52 | 52 |
|
| 53 | 53 |
|
| 54 |
|
|
| 55 |
|
|
| 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 |
|
|
| 101 |
|
|
| 102 |
|
|
| 103 |
|
|
| 104 |
|
|
| 105 |
|
|
| 106 |
|
|
| 107 |
|
|
| 108 |
|
|
| 109 |
|
|
| 110 |
|
|
| 111 |
|
|
| 112 |
|
|
| 113 |
|
|
| 114 |
|
|
| 115 |
|
|
| 116 |
|
|
| 117 |
|
|
| 118 |
|
|
| 119 |
|
|
| 120 |
|
|
| 121 |
|
|
| 56 | 122 |
|
| 57 | 123 |
|