- Co-Authored-By
- Christopher David <chris@openagents.com>
Pin the stop key to the hint row while children are running
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-ui.ts -
modified
packages/openagents-cli/test/coder-ui.test.ts
Diff
2 files changed, +95 -16
packages/openagents-cli/src/coder-ui.ts modified +42 -16
@@ -99,6 +99,12 @@ function justify(left: string, right: string, width: number): string {
| 99 | 99 |
|
| 100 | 100 |
|
| 101 | 101 |
|
| 102 |
|
|
| 103 |
|
|
| 104 |
|
|
| 105 |
|
|
| 106 |
|
|
| 107 |
|
|
| 102 | 108 |
|
| 103 | 109 |
|
| 104 | 110 |
|
@@ -107,13 +113,33 @@ function justify(left: string, right: string, width: number): string {
| 107 | 113 |
|
| 108 | 114 |
|
| 109 | 115 |
|
| 116 |
|
|
| 117 |
|
|
| 118 |
|
|
| 119 |
|
|
| 120 |
|
|
| 110 | 121 |
|
| 111 |
|
|
| 112 |
|
|
| 113 |
|
|
| 114 |
|
|
| 122 |
|
|
| 123 |
|
|
| 124 |
|
|
| 125 |
|
|
| 126 |
|
|
| 127 |
|
|
| 128 |
|
|
| 129 |
|
|
| 130 |
|
|
| 131 |
|
|
| 132 |
|
|
| 133 |
|
|
| 134 |
|
|
| 115 | 135 |
|
| 116 |
|
|
| 136 |
|
|
| 137 |
|
|
| 138 |
|
|
| 139 |
|
|
| 140 |
|
|
| 141 |
|
|
| 142 |
|
|
| 117 | 143 |
|
| 118 | 144 |
|
| 119 | 145 |
|
@@ -453,25 +479,25 @@ export function runCoderUi(session: CoderSession, options: CoderUiOptions): Prom
| 453 | 479 |
|
| 454 | 480 |
|
| 455 | 481 |
|
| 456 |
|
|
| 482 |
|
|
| 457 | 483 |
|
| 458 |
|
|
| 484 |
|
|
| 459 | 485 |
|
| 460 |
|
|
| 461 |
|
|
| 462 |
|
|
| 486 |
|
|
| 487 |
|
|
| 488 |
|
|
| 463 | 489 |
|
| 464 |
|
|
| 490 |
|
|
| 465 | 491 |
|
| 466 |
|
|
| 492 |
|
|
| 467 | 493 |
|
| 468 |
|
|
| 494 |
|
|
| 469 | 495 |
|
| 470 | 496 |
|
| 471 | 497 |
|
| 472 |
|
|
| 473 |
|
|
| 474 |
|
|
| 498 |
|
|
| 499 |
|
|
| 500 |
|
|
| 475 | 501 |
|
| 476 | 502 |
|
| 477 | 503 |
|
packages/openagents-cli/test/coder-ui.test.ts modified +53
@@ -3,6 +3,7 @@ import { describe, expect, it } from "vitest";
| 3 | 3 |
|
| 4 | 4 |
|
| 5 | 5 |
|
| 6 |
|
|
| 6 | 7 |
|
| 7 | 8 |
|
| 8 | 9 |
|
@@ -311,6 +312,58 @@ describe("runCoderUi", () => {
| 311 | 312 |
|
| 312 | 313 |
|
| 313 | 314 |
|
| 315 |
|
|
| 316 |
|
|
| 317 |
|
|
| 318 |
|
|
| 319 |
|
|
| 320 |
|
|
| 321 |
|
|
| 322 |
|
|
| 323 |
|
|
| 324 |
|
|
| 325 |
|
|
| 326 |
|
|
| 327 |
|
|
| 328 |
|
|
| 329 |
|
|
| 330 |
|
|
| 331 |
|
|
| 332 |
|
|
| 333 |
|
|
| 334 |
|
|
| 335 |
|
|
| 336 |
|
|
| 337 |
|
|
| 338 |
|
|
| 339 |
|
|
| 340 |
|
|
| 341 |
|
|
| 342 |
|
|
| 343 |
|
|
| 344 |
|
|
| 345 |
|
|
| 346 |
|
|
| 347 |
|
|
| 348 |
|
|
| 349 |
|
|
| 350 |
|
|
| 351 |
|
|
| 352 |
|
|
| 353 |
|
|
| 354 |
|
|
| 355 |
|
|
| 356 |
|
|
| 357 |
|
|
| 358 |
|
|
| 359 |
|
|
| 360 |
|
|
| 361 |
|
|
| 362 |
|
|
| 363 |
|
|
| 364 |
|
|
| 365 |
|
|
| 366 |
|
|
| 314 | 367 |
|
| 315 | 368 |
|
| 316 | 369 |
|