- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
- Claude-Session
- https://claude.ai/code/session_01SoZMfWRSGnf6FZX2Ar9rQ2
fix(coder): stop drawing a bullet for a turn that said nothing
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-resume.ts -
modified
packages/openagents-cli/src/coder-session.ts -
modified
packages/openagents-cli/src/coder-ui.ts -
modified
packages/openagents-cli/test/coder-resume.test.ts -
modified
packages/openagents-cli/test/coder-session.test.ts -
modified
packages/openagents-cli/test/coder-ui.test.ts
Diff
6 files changed, +182 -9
packages/openagents-cli/src/coder-resume.ts modified +25 -9
@@ -221,7 +221,10 @@ export function replayEntries(events: ReadonlyArray<ThreadEvent>): ReadonlyArray
| 221 | 221 |
|
| 222 | 222 |
|
| 223 | 223 |
|
| 224 |
|
|
| 224 |
|
|
| 225 |
|
|
| 226 |
|
|
| 227 |
|
|
| 225 | 228 |
|
| 226 | 229 |
|
| 227 | 230 |
|
@@ -243,19 +246,32 @@ export function replayEntries(events: ReadonlyArray<ThreadEvent>): ReadonlyArray
| 243 | 246 |
|
| 244 | 247 |
|
| 245 | 248 |
|
| 249 |
|
|
| 250 |
|
|
| 251 |
|
|
| 252 |
|
|
| 253 |
|
|
| 254 |
|
|
| 255 |
|
|
| 256 |
|
|
| 257 |
|
|
| 258 |
|
|
| 259 |
|
|
| 260 |
|
|
| 261 |
|
|
| 262 |
|
|
| 263 |
|
|
| 264 |
|
|
| 265 |
|
|
| 266 |
|
|
| 267 |
|
|
| 246 | 268 |
|
| 247 | 269 |
|
| 248 |
|
|
| 270 |
|
|
| 249 | 271 |
|
| 250 | 272 |
|
| 251 | 273 |
|
| 252 |
|
|
| 253 |
|
|
| 254 |
|
|
| 255 |
|
|
| 256 |
|
|
| 257 |
|
|
| 258 |
|
|
| 274 |
|
|
| 259 | 275 |
|
| 260 | 276 |
|
| 261 | 277 |
|
packages/openagents-cli/src/coder-session.ts modified +36
@@ -1081,6 +1081,14 @@ export class CoderSession {
| 1081 | 1081 |
|
| 1082 | 1082 |
|
| 1083 | 1083 |
|
| 1084 |
|
|
| 1085 |
|
|
| 1086 |
|
|
| 1087 |
|
|
| 1088 |
|
|
| 1089 |
|
|
| 1090 |
|
|
| 1091 |
|
|
| 1084 | 1092 |
|
| 1085 | 1093 |
|
| 1086 | 1094 |
|
@@ -1088,6 +1096,31 @@ export class CoderSession {
| 1088 | 1096 |
|
| 1089 | 1097 |
|
| 1090 | 1098 |
|
| 1099 |
|
|
| 1100 |
|
|
| 1101 |
|
|
| 1102 |
|
|
| 1103 |
|
|
| 1104 |
|
|
| 1105 |
|
|
| 1106 |
|
|
| 1107 |
|
|
| 1108 |
|
|
| 1109 |
|
|
| 1110 |
|
|
| 1111 |
|
|
| 1112 |
|
|
| 1113 |
|
|
| 1114 |
|
|
| 1115 |
|
|
| 1116 |
|
|
| 1117 |
|
|
| 1118 |
|
|
| 1119 |
|
|
| 1120 |
|
|
| 1121 |
|
|
| 1122 |
|
|
| 1123 |
|
|
| 1091 | 1124 |
|
| 1092 | 1125 |
|
| 1093 | 1126 |
|
@@ -1132,6 +1165,7 @@ export class CoderSession {
| 1132 | 1165 |
|
| 1133 | 1166 |
|
| 1134 | 1167 |
|
| 1168 |
|
|
| 1135 | 1169 |
|
| 1136 | 1170 |
|
| 1137 | 1171 |
|
@@ -1141,6 +1175,7 @@ export class CoderSession {
| 1141 | 1175 |
|
| 1142 | 1176 |
|
| 1143 | 1177 |
|
| 1178 |
|
|
| 1144 | 1179 |
|
| 1145 | 1180 |
|
| 1146 | 1181 |
|
@@ -1233,6 +1268,7 @@ export class CoderSession {
| 1233 | 1268 |
|
| 1234 | 1269 |
|
| 1235 | 1270 |
|
| 1271 |
|
|
| 1236 | 1272 |
|
| 1237 | 1273 |
|
| 1238 | 1274 |
|
packages/openagents-cli/src/coder-ui.ts modified +9
@@ -469,12 +469,21 @@ export function runCoderUi(session: CoderSession, options: CoderUiOptions): Prom
| 469 | 469 |
|
| 470 | 470 |
|
| 471 | 471 |
|
| 472 |
|
|
| 473 |
|
|
| 474 |
|
|
| 475 |
|
|
| 476 |
|
|
| 472 | 477 |
|
| 473 | 478 |
|
| 474 | 479 |
|
| 475 | 480 |
|
| 476 | 481 |
|
| 477 | 482 |
|
| 483 |
|
|
| 484 |
|
|
| 485 |
|
|
| 486 |
|
|
| 478 | 487 |
|
| 479 | 488 |
|
| 480 | 489 |
|
packages/openagents-cli/test/coder-resume.test.ts modified +48
@@ -367,6 +367,54 @@ describe("replayEntries", () => {
| 367 | 367 |
|
| 368 | 368 |
|
| 369 | 369 |
|
| 370 |
|
|
| 371 |
|
|
| 372 |
|
|
| 373 |
|
|
| 374 |
|
|
| 375 |
|
|
| 376 |
|
|
| 377 |
|
|
| 378 |
|
|
| 379 |
|
|
| 380 |
|
|
| 381 |
|
|
| 382 |
|
|
| 383 |
|
|
| 384 |
|
|
| 385 |
|
|
| 386 |
|
|
| 387 |
|
|
| 388 |
|
|
| 389 |
|
|
| 390 |
|
|
| 391 |
|
|
| 392 |
|
|
| 393 |
|
|
| 394 |
|
|
| 395 |
|
|
| 396 |
|
|
| 397 |
|
|
| 398 |
|
|
| 399 |
|
|
| 400 |
|
|
| 401 |
|
|
| 402 |
|
|
| 403 |
|
|
| 404 |
|
|
| 405 |
|
|
| 406 |
|
|
| 407 |
|
|
| 408 |
|
|
| 409 |
|
|
| 410 |
|
|
| 411 |
|
|
| 412 |
|
|
| 413 |
|
|
| 414 |
|
|
| 415 |
|
|
| 416 |
|
|
| 417 |
|
|
| 370 | 418 |
|
| 371 | 419 |
|
| 372 | 420 |
|
packages/openagents-cli/test/coder-session.test.ts modified +37
@@ -74,6 +74,43 @@ describe("CoderSession", () => {
| 74 | 74 |
|
| 75 | 75 |
|
| 76 | 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 |
|
|
| 77 | 114 |
|
| 78 | 115 |
|
| 79 | 116 |
|
packages/openagents-cli/test/coder-ui.test.ts modified +27
@@ -139,6 +139,33 @@ describe("runCoderUi", () => {
| 139 | 139 |
|
| 140 | 140 |
|
| 141 | 141 |
|
| 142 |
|
|
| 143 |
|
|
| 144 |
|
|
| 145 |
|
|
| 146 |
|
|
| 147 |
|
|
| 148 |
|
|
| 149 |
|
|
| 150 |
|
|
| 151 |
|
|
| 152 |
|
|
| 153 |
|
|
| 154 |
|
|
| 155 |
|
|
| 156 |
|
|
| 157 |
|
|
| 158 |
|
|
| 159 |
|
|
| 160 |
|
|
| 161 |
|
|
| 162 |
|
|
| 163 |
|
|
| 164 |
|
|
| 165 |
|
|
| 166 |
|
|
| 167 |
|
|
| 168 |
|
|
| 142 | 169 |
|
| 143 | 170 |
|
| 144 | 171 |
|