@vincemakes/kiso-tui 0.1.29 → 0.1.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/body.d.ts CHANGED
@@ -93,12 +93,17 @@ export declare class Body {
93
93
  /** Teardown — flush a pending frame, stop the timers. */
94
94
  close(): void;
95
95
  /**
96
- * TUI v4 #16a: a resize reflows the terminal's scrollback — the frozen
97
- * rows' positions are no longer what we tracked (and the frozen CONTENT
98
- * is never re-emitted: the terminal reflowed it, we only redraw the
99
- * dock + active tail). The counters reset so the next render writes new
100
- * frozen lines through the REAL-LF scroll path above the tail, never at
101
- * a stale CUP row (the drag-garbage the #16 user saw).
96
+ * #17 (P1): a resize reflows the terminal's buffer — the old chrome
97
+ * rows SURVIVE the reflow at their shifted positions (the recorded
98
+ * separator wall + the tail ghost the #16a assumption that the
99
+ * reflow erases them was wrong). The handler: (1) clear the old tail +
100
+ * dock area with the OLD geometry (one ED from the last-drawn tail
101
+ * top; EL/ED only, zero LF the #16 storm gate's invariants hold);
102
+ * (2) redraw immediately at the NEW geometry (the tail, the cursor
103
+ * home, the dock — via the normal render). The frozen content is
104
+ * strictly ABOVE the old tail top — the clear never touches it (the
105
+ * frozen bytes stay emitted exactly once). Consecutive resizes are
106
+ * idempotent: the clear covers an already-clear area.
102
107
  */
103
108
  onResize(): void;
104
109
  /** The last COMPLETE thinking block, for /think. */
package/dist/body.js CHANGED
@@ -36,8 +36,9 @@ export class Body {
36
36
  #opts;
37
37
  #cells = [];
38
38
  #nextFrozen = 0; // index of the first not-yet-printed cell
39
- #frozenRows = 0; // the frozen area's rows filled WITHOUT scrolling (then the real LFs take over)
40
- #oldTailTop = 0; // the tail's previous first row for the clear pass
39
+ #height = 0; // the last DRAWN height the resize handler clears with the OLD geometry
40
+ #oldTailTop = 0; // the last-drawn tail top the clear pass + the resize handler's clear
41
+ #oldTailHeight = 0; // the last-drawn tail's height — the clear covers EXACTLY it (never the frozen area)
41
42
  #frameTimer = null;
42
43
  #heartbeat = null;
43
44
  #dirty = false;
@@ -53,14 +54,13 @@ export class Body {
53
54
  this.#opts = opts;
54
55
  this.#write = opts.write ?? ((s) => process.stdout.write(s));
55
56
  this.#active = opts.active();
57
+ this.#height = opts.height();
56
58
  if (this.#isActive()) {
57
- // TUI v4 #16a: the resize event — the terminal reflows its
58
- // scrollback, so OUR row bookkeeping is stale. The frozen
59
- // content is never re-emitted (the terminal reflowed it); the
60
- // counters reset so the next render lands new frozen lines via
61
- // the REAL-LF scroll path (just above the tail), never at stale
62
- // CUP rows — the overwrite garbage after a drag (the #16
63
- // defect). The dock redraws its own chrome on the same event.
59
+ // #17 (P1): the resize handlerclear the OLD tail + dock area
60
+ // (old geometry, EL/ED only no LF), then redraw at the new
61
+ // geometry. The #16a assumption is retired: the terminal's
62
+ // reflow does NOT erase the old chrome rows (the recorded
63
+ // separator wall + the tail ghost prove it) the clear does.
64
64
  this.#resizeHandler = () => this.onResize();
65
65
  process.stdout.on("resize", this.#resizeHandler);
66
66
  this.#heartbeat = setInterval(() => {
@@ -104,23 +104,31 @@ export class Body {
104
104
  this.render();
105
105
  }
106
106
  /**
107
- * TUI v4 #16a: a resize reflows the terminal's scrollback — the frozen
108
- * rows' positions are no longer what we tracked (and the frozen CONTENT
109
- * is never re-emitted: the terminal reflowed it, we only redraw the
110
- * dock + active tail). The counters reset so the next render writes new
111
- * frozen lines through the REAL-LF scroll path above the tail, never at
112
- * a stale CUP row (the drag-garbage the #16 user saw).
107
+ * #17 (P1): a resize reflows the terminal's buffer — the old chrome
108
+ * rows SURVIVE the reflow at their shifted positions (the recorded
109
+ * separator wall + the tail ghost the #16a assumption that the
110
+ * reflow erases them was wrong). The handler: (1) clear the old tail +
111
+ * dock area with the OLD geometry (one ED from the last-drawn tail
112
+ * top; EL/ED only, zero LF the #16 storm gate's invariants hold);
113
+ * (2) redraw immediately at the NEW geometry (the tail, the cursor
114
+ * home, the dock — via the normal render). The frozen content is
115
+ * strictly ABOVE the old tail top — the clear never touches it (the
116
+ * frozen bytes stay emitted exactly once). Consecutive resizes are
117
+ * idempotent: the clear covers an already-clear area.
113
118
  */
114
119
  onResize() {
115
120
  if (!this.#isActive())
116
121
  return;
117
- this.#frozenRows = Number.MAX_SAFE_INTEGER; // the frozen area is "full" the next line scrolls
118
- this.#oldTailTop = 0; // the reflowed tail's old rows are gone clear only the new area
119
- // NO #dirty: an immediate frame would re-render the ACTIVE TAIL —
120
- // re-emitting its bytes (the terminal already reflowed the tail's
121
- // content; a re-print duplicates the text in the byte stream the
122
- // #16 storm gate's "response text exactly once"). The geometry
123
- // reset takes effect at the next NATURAL render (the next event).
122
+ const from = this.#oldTailTop > 0 ? this.#oldTailTop : Math.max(1, this.#height - 3);
123
+ const H = this.#opts.height(); // the NEW height the clamp for a shrunk screen
124
+ const out = [];
125
+ // The cursor home + the ED land with the NEW geometry — rows beyond
126
+ // the old screen are already gone; rows below the old tail top are
127
+ // exactly the tail + the dock areas (the old tail, the old chrome).
128
+ out.push(`\x1b[${Math.min(from, Math.max(1, H))};1H\x1b[0J`);
129
+ this.#write(out.join(""));
130
+ this.#dirty = true; // the immediate redraw at the NEW geometry
131
+ this.render();
124
132
  }
125
133
  /** The last COMPLETE thinking block, for /think. */
126
134
  lastThinking() {
@@ -364,45 +372,63 @@ export class Body {
364
372
  const W = this.#opts.width();
365
373
  if (H < 4)
366
374
  return;
375
+ this.#height = H;
367
376
  const out = [];
368
- // #13 (P1), v2d-B: NO DECSTBM — overflow scrolls with a REAL LF at
369
- // the screen's last row, so the frozen lines enter the terminal's
370
- // NATIVE scrollback deterministically (region-scrolled lines are
371
- // terminal-dependent; some terminals drop them the measured v2d-A
372
- // defect). The body fills from the top without scrolling; once full,
373
- // every new frozen line scrolls the whole screen (\x1b[H;1H\n — the
374
- // top line leaves into the scrollback) and lands at the body's
375
- // bottom row, just above the active tail. The dock is redrawn after.
377
+ // #13 (P1), v2d-B: NO DECSTBM — a frozen line scrolls with a REAL
378
+ // LF at the screen's last row (\x1b[H;1H\n the top line leaves
379
+ // into the NATIVE scrollback) and lands at the body's bottom row,
380
+ // just above the active tail. The dock is redrawn after.
381
+ // #17 (P1): the pre-fill phase is GONE EVERY frozen line takes
382
+ // this REAL-LF path, short sessions included. The old pre-fill drew
383
+ // at absolute CUP rows with NO real LF: the terminal's resize
384
+ // reflow treated those rows as soft lines the recorded fold/body
385
+ // MERGE (the /think suffix lost), the tail ghost, the separator
386
+ // wall. A real-LF line reflows as ONE logical line, never merged
387
+ // with a neighbor; the only soft lines left are the active tail +
388
+ // the dock (small, redrawn every frame / cleared by onResize).
376
389
  // The tail (the remaining ACTIVE cells) and its geometry — computed
377
390
  // FIRST from the final nextFrozen, so the frozen cells are NOT in it
378
391
  // (a stale tail would re-draw them — the double-render).
379
392
  let nextFrozen = this.#nextFrozen;
380
393
  while (nextFrozen < this.#cells.length && this.#cells[nextFrozen].done)
381
394
  nextFrozen += 1;
395
+ // #17: the tail holds ONLY the unfinished cells — slice(nextFrozen)
396
+ // also captures the DONE cells that follow (an approval verdict
397
+ // freezing behind a live text+tool), inflating tailHeight so the
398
+ // tail's top rises INTO the frozen area and its clear pass wipes
399
+ // the freshly-frozen lines (the fold's /think suffix — recorded).
382
400
  const tail = this.#cells.slice(nextFrozen);
383
- const tailHeight = tail.reduce((n, c) => n + this.#cellHeight(c, W), 0);
401
+ // #17: the tail HEIGHT counts only the unfinished cells — slice()
402
+ // also captures the DONE cells that follow (an approval verdict
403
+ // freezing behind a live text+tool); counting them inflates the
404
+ // height so the tail's top rises INTO the frozen area and its
405
+ // clear pass wipes the freshly-frozen lines (the fold's /think
406
+ // suffix — recorded). The tail array itself keeps the old shape.
407
+ const tailHeight = tail.reduce((n, c) => n + (c.done ? 0 : this.#cellHeight(c, W)), 0);
384
408
  const tailTop = Math.max(1, H - 3 - tailHeight); // v3 §03: 4 dock rows below
385
409
  const writeRow = Math.max(1, tailTop - 1); // the frozen area's bottom row
386
410
  let scrolled = 0;
387
411
  for (let i = this.#nextFrozen; i < nextFrozen; i += 1) {
388
412
  for (const line of this.#cellLines(this.#cells[i], W)) {
389
- if (this.#frozenRows < writeRow) {
390
- this.#frozenRows += 1;
391
- out.push(`\x1b[${this.#frozenRows};1H\x1b[0K${line}`);
392
- }
393
- else {
394
- out.push(`\x1b[${H};1H\n`); // the REAL LF — the whole screen scrolls
395
- out.push(`\x1b[${writeRow};1H\x1b[0K${line}`);
396
- scrolled += 1;
397
- }
413
+ out.push(`\x1b[${H};1H\n`); // the REAL LF — the whole screen scrolls
414
+ out.push(`\x1b[${writeRow};1H\x1b[0K${line}`);
415
+ scrolled += 1;
398
416
  }
399
417
  this.#nextFrozen += 1;
400
418
  }
401
- // 2. the active tail — clear its old area (shifted up by the freeze
402
- // scrolls) and the current area, draw the cells at the body's bottom.
419
+ // 2. the active tail — clear EXACTLY its old area (shifted up by the
420
+ // freeze scrolls) and the current area, draw the cells at the body's
421
+ // bottom. #17: the old code cleared clearFrom..H-4 unconditionally —
422
+ // harmless when the frozen lines sat at the TOP (pre-fill), but with
423
+ // the real-LF commits the frozen lines land just ABOVE the tail, so
424
+ // an over-wide clear wipes the freshly-frozen cells (the recorded
425
+ // fold/response vanishing).
403
426
  out.push("\x1b[?2026h");
427
+ const oldBottom = this.#oldTailHeight > 0 ? this.#oldTailTop + this.#oldTailHeight - 1 - scrolled : -1;
428
+ const newBottom = tailHeight > 0 ? tailTop + tailHeight - 1 : -1;
404
429
  const clearFrom = Math.min(this.#oldTailTop === 0 ? tailTop : this.#oldTailTop - scrolled, tailTop);
405
- for (let row = clearFrom; row <= H - 4; row += 1) {
430
+ const clearTo = Math.max(oldBottom, newBottom);
431
+ for (let row = clearFrom; row <= Math.min(clearTo, H - 4); row += 1) {
406
432
  out.push(`\x1b[${row};1H\x1b[0K`);
407
433
  }
408
434
  let row = tailTop;
@@ -412,6 +438,8 @@ export class Body {
412
438
  row += 1;
413
439
  }
414
440
  }
441
+ this.#oldTailTop = tailTop; // the last-drawn tail top — the resize clear starts here
442
+ this.#oldTailHeight = tailHeight;
415
443
  // 3. the cursor home — the input line's edit column.
416
444
  out.push(`\x1b[${H};${this.#opts.editCol()}H`);
417
445
  out.push("\x1b[?2026l");
@@ -429,14 +457,22 @@ export class Body {
429
457
  // rail — a bright-white BOLD ▍ per line, then the text (the
430
458
  // reverse-video block is RETIRED: it washed out on light
431
459
  // themes). Multi-line whole: every line carries the rail
432
- // (多行连贯); resize-safe; NO_COLOR → the rail renders plain.
460
+ // (coherent across lines); resize-safe; NO_COLOR → the rail renders plain.
433
461
  return cell.text.split("\n").map((l) => `${p.bold}▍${p.reset} ${escapeTerminal(l)}`);
434
462
  case "thinking": {
435
463
  const block = cell.text;
436
464
  const trimmed = escapeTerminal(block.trim());
437
465
  if (trimmed.length <= 100)
438
466
  return [`${p.dim}…${trimmed}${p.reset}`];
439
- return [`${p.dim}…${trimmed.slice(0, 100)} (${block.length} chars · /think)${p.reset}`];
467
+ const suffix = ` (${block.length} chars · /think)`;
468
+ // #17: the fold must FIT its row — every frozen line commits
469
+ // via the REAL-LF scroll path at the SAME write row; a
470
+ // soft-wrapped fold's continuation row would be clobbered by
471
+ // the next line's commit write (the /think suffix lost — the
472
+ // recorded symptom). The slice shrinks with the width; the
473
+ // suffix always rides the fold's own row.
474
+ const slice = Math.max(1, W - 1 - suffix.length);
475
+ return [`${p.dim}…${trimmed.slice(0, slice)}${suffix}${p.reset}`];
440
476
  }
441
477
  case "tool": {
442
478
  const name = escapeTerminal(cell.name);
@@ -478,7 +514,7 @@ export class Body {
478
514
  // TUI v5 #16e: the inline-code tint — backtick spans in
479
515
  // assistant body text, matched PER LINE after the wrap (a
480
516
  // span opened on one line and closed on another does NOT
481
- // match — 跨行不匹配). NO_COLOR → the codes are empty →
517
+ // match — no cross-line matching). NO_COLOR → the codes are empty →
482
518
  // byte-identical.
483
519
  return wrapped.length > 0 ? wrapped.map((l) => colorInlineCode(l)) : [""];
484
520
  }
@@ -490,7 +526,7 @@ export class Body {
490
526
  // SGR is applied at COMPOSITION time (renderRecap/startupBanner),
491
527
  // and model/tool content was already escapeTerminal'd there.
492
528
  // Re-escaping at render STRIPPED the ESC from the SGR — the
493
- // literal "[38;5;75m▞[0m" garbage the user saw (the #16 乱码,
529
+ // literal "[38;5;75m▞[0m" garbage the user saw (the #16 mojibake,
494
530
  // also the banner's dim). Verbatim: the injection guard lives
495
531
  // at composition, not here.
496
532
  return cell.lines;
package/dist/dock.js CHANGED
@@ -141,14 +141,20 @@ export class Dock {
141
141
  if (!this.#active)
142
142
  return;
143
143
  const p = palette();
144
- const H = this.#height;
145
- const W = this.#width;
144
+ // #17 (P1): read the LIVE size, not the cache — the body's resize
145
+ // render calls onDock (this redraw) BEFORE this dock's own resize
146
+ // handler runs, so the cached geometry would draw the chrome at
147
+ // stale rows (clamped into the body — the separator residue wall).
148
+ // The live read makes the handler order irrelevant; the cache keeps
149
+ // serving exit().
150
+ const H = process.stdout.rows ?? this.#height;
151
+ const W = process.stdout.columns ?? this.#width;
146
152
  const sep = `${p.dim}${"╌".repeat(W)}${p.reset}`;
147
153
  const status = `${this.#status}${this.#tail === "" ? "" : ` · ${this.#tail}`}`;
148
154
  const statusLine = this.#question ?? this.#statusRow(status, p, W);
149
155
  const inp = this.#inputState();
150
156
  const out = [];
151
- // P3 (审查): the DEC private-mode SET/RESET needs the "?" prefix —
157
+ // P3 (review): the DEC private-mode SET/RESET needs the "?" prefix —
152
158
  // \x1b[?2026h/l, the pi source's exact form. Without it terminals
153
159
  // silently ignore the mode and the anti-flicker never engages.
154
160
  out.push("\x1b[?2026h"); // synchronized output ON (DEC 2026)
package/dist/editor.js CHANGED
@@ -102,7 +102,7 @@ export class Editor {
102
102
  #onRender;
103
103
  #menuOpen = false; // v3 §04: the slash-command menu
104
104
  #menuSel = 0;
105
- // A2 (手感): the session-scoped input history — every submitted TURN
105
+ // A2 (the feel): the session-scoped input history — every submitted TURN
106
106
  // line (never a question answer), capped at 100, never persisted. ↑↓
107
107
  // navigate it ONLY from an empty input or while already browsing.
108
108
  #history = [];
@@ -337,7 +337,7 @@ export class Editor {
337
337
  }
338
338
  else if (final === "A" || final === "B") {
339
339
  // v3 §04: the menu owns ↑↓ while open (the selection, never the
340
- // cursor). A2 (手感): otherwise ↑↓ navigate the session history
340
+ // cursor). A2 (the feel): otherwise ↑↓ navigate the session history
341
341
  // — ONLY from an empty input or while already browsing; mid-edit
342
342
  // the cursor semantics are unchanged (↑↓ do nothing).
343
343
  if (this.#menuOpen) {
@@ -427,7 +427,7 @@ export class Editor {
427
427
  #submit() {
428
428
  let line = String.fromCodePoint(...this.#chars);
429
429
  if (this.#menuOpen) {
430
- // A1 (手感): Enter submits the EXACT selection directly; a
430
+ // A1 (the feel): Enter submits the EXACT selection directly; a
431
431
  // PARTIAL selection COMPLETES the buffer (the Tab semantics)
432
432
  // without submitting — the user reviews and presses Enter
433
433
  // again. The old behavior executed the completed command on
package/dist/render.d.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  * input, produce the lines a human sees. Colors are raw ANSI — no
4
4
  * dependencies.
5
5
  *
6
- * 手感批 C5: the input is the tui's OWN data shape (RenderInput), never
6
+ * the ergonomics batch C5: the input is the tui's OWN data shape (RenderInput), never
7
7
  * kiso-core's Event — the CLI translates Event → RenderInput. The tui
8
8
  * package has ZERO kiso-core imports: input is data, output is bytes.
9
9
  */
@@ -31,7 +31,7 @@ export declare const COLOR_ON: Palette;
31
31
  export declare const COLOR_OFF: Palette;
32
32
  export declare function palette(): Palette;
33
33
  /**
34
- * E 组/八: strip terminal-injection vectors from MODEL/TOOL text before it
34
+ * E group/round 8: strip terminal-injection vectors from MODEL/TOOL text before it
35
35
  * reaches the terminal — ESC, C0 (except \t \n), C1, CR, backspace, and
36
36
  * bidi overrides. The kiso colors are applied by render, not by the data.
37
37
  * EVERY externally-sourced string must pass through this before any output.
@@ -56,7 +56,7 @@ export interface RenderResult {
56
56
  readonly prompt: boolean;
57
57
  }
58
58
  /**
59
- * 手感批 C5 — the render input, the tui's OWN data shape: the subset of
59
+ * the ergonomics batch C5 — the render input, the tui's OWN data shape: the subset of
60
60
  * an event stream the renderer reads, keyed by type. The CLI translates
61
61
  * its Event stream into this (Event → RenderInput) before rendering —
62
62
  * the tui package never imports kiso-core. Field names mirror the
@@ -149,7 +149,7 @@ export type RenderInput = {
149
149
  * Render one event. `text` may be a continuation (text_delta appends to the
150
150
  * current line); `newline` says whether the line is complete.
151
151
  *
152
- * 自举 P1: `prevThinking` marks a thinking delta that continues the SAME
152
+ * bootstrap P1: `prevThinking` marks a thinking delta that continues the SAME
153
153
  * block — it renders appended to the segment, without the … prefix. The
154
154
  * consumer closes the segment with a newline at the next non-thinking
155
155
  * event.
@@ -166,7 +166,7 @@ export declare function foldThinking(block: string): string;
166
166
  export declare function foldResult(content: string): string;
167
167
  export declare function renderEvent(ev: RenderInput, prevThinking?: boolean, resolvePath?: PathResolver): RenderResult;
168
168
  /**
169
- * B 区: one-line summary of a completed tool call, e.g.
169
+ * B area: one-line summary of a completed tool call, e.g.
170
170
  * ✓ edit src/foo.ts (+12 -3) ✓ read src/bar.ts (140 lines)
171
171
  * ✗ shell npm test (exit 1)
172
172
  * edit/write show +/- line counts, read shows lines, shell shows the exit
@@ -178,7 +178,7 @@ export declare function renderToolSummary(name: string, input: Record<string, un
178
178
  }): string;
179
179
  /** k-units for the status line: 12345 → 12.3k, 800 → 800, null → ?. */
180
180
  export declare function kUnit(value: number | null): string;
181
- /** B 区: usage data gathered from the run's usage events. */
181
+ /** B area: usage data gathered from the run's usage events. */
182
182
  export interface RunUsage {
183
183
  readonly in: number | null;
184
184
  readonly out: number | null;
@@ -186,9 +186,9 @@ export interface RunUsage {
186
186
  readonly known: boolean;
187
187
  }
188
188
  /**
189
- * B 区/v2a: the one-line status bar after a terminal, e.g.
189
+ * B area/v2a: the one-line status bar after a terminal, e.g.
190
190
  * [turn 3 · in 12.4k out 1.8k · cache 9.2k · ctx ~14%]
191
- * 降噪: unknown fields are OMITTED ENTIRELY (有什么显什么); a fully unknown
191
+ * Denoising: unknown fields are OMITTED ENTIRELY (show what there is); a fully unknown
192
192
  * usage → null (the caller prints nothing); faux mode → [turn N · faux].
193
193
  * All data comes from usage events; ctx is the approximate estimate
194
194
  * passed in (chars/4 vs the window), marked with ~.
@@ -196,7 +196,7 @@ export interface RunUsage {
196
196
  export declare function renderStatusLine(turn: number, usage: RunUsage, ctxRatio: number, faux?: boolean): string | null;
197
197
  /**
198
198
  * v2a rhythm — the exact bytes after a terminal event: the status line
199
- * hugs the terminal (有什么显什么 — omitted when there is nothing to show),
199
+ * hugs the terminal (show what there is — omitted when there is nothing to show),
200
200
  * then EXACTLY one blank line before the next prompt. The consumer prints
201
201
  * this verbatim; the render tests pin the sequence.
202
202
  */
package/dist/render.js CHANGED
@@ -3,7 +3,7 @@
3
3
  * input, produce the lines a human sees. Colors are raw ANSI — no
4
4
  * dependencies.
5
5
  *
6
- * 手感批 C5: the input is the tui's OWN data shape (RenderInput), never
6
+ * the ergonomics batch C5: the input is the tui's OWN data shape (RenderInput), never
7
7
  * kiso-core's Event — the CLI translates Event → RenderInput. The tui
8
8
  * package has ZERO kiso-core imports: input is data, output is bytes.
9
9
  */
@@ -13,7 +13,7 @@ export function palette() {
13
13
  return process.env.NO_COLOR === undefined && process.stdout.isTTY ? COLOR_ON : COLOR_OFF;
14
14
  }
15
15
  /**
16
- * E 组/八: strip terminal-injection vectors from MODEL/TOOL text before it
16
+ * E group/round 8: strip terminal-injection vectors from MODEL/TOOL text before it
17
17
  * reaches the terminal — ESC, C0 (except \t \n), C1, CR, backspace, and
18
18
  * bidi overrides. The kiso colors are applied by render, not by the data.
19
19
  * EVERY externally-sourced string must pass through this before any output.
@@ -44,7 +44,7 @@ export function colorInlineCode(line) {
44
44
  * Render one event. `text` may be a continuation (text_delta appends to the
45
45
  * current line); `newline` says whether the line is complete.
46
46
  *
47
- * 自举 P1: `prevThinking` marks a thinking delta that continues the SAME
47
+ * bootstrap P1: `prevThinking` marks a thinking delta that continues the SAME
48
48
  * block — it renders appended to the segment, without the … prefix. The
49
49
  * consumer closes the segment with a newline at the next non-thinking
50
50
  * event.
@@ -80,7 +80,7 @@ export function renderEvent(ev, prevThinking = false, resolvePath = (p) => p) {
80
80
  case "text_end":
81
81
  return { text: "\n", newline: true, prompt: false };
82
82
  case "thinking":
83
- // 自举 P1/v2b: the CONSUMER buffers each thinking block and folds
83
+ // bootstrap P1/v2b: the CONSUMER buffers each thinking block and folds
84
84
  // it to ONE dim line (foldThinking); this render is the generic
85
85
  // path for tests. The full block goes to /think.
86
86
  return {
@@ -112,7 +112,7 @@ export function renderEvent(ev, prevThinking = false, resolvePath = (p) => p) {
112
112
  };
113
113
  }
114
114
  case "permission_requested":
115
- // 八: the tool NAME is model text — escaped like everything else.
115
+ // round 8: the tool NAME is model text — escaped like everything else.
116
116
  return {
117
117
  text: `⏸ ${escapeTerminal(ev.name)} needs approval ${p.dim}${approvalDetail(ev.name, ev.input, resolvePath)}${p.reset} `,
118
118
  newline: false,
@@ -162,7 +162,7 @@ export function renderEvent(ev, prevThinking = false, resolvePath = (p) => p) {
162
162
  }
163
163
  }
164
164
  /**
165
- * The approval prompt detail (Area 5/八): the human must be able to see
165
+ * The approval prompt detail (Area 5/round 8): the human must be able to see
166
166
  * EVERYTHING they are approving. The shell command is shown in full; the
167
167
  * path is the CANONICAL one the tool will touch; write/edit show the FULL
168
168
  * content (never a truncated tail that hides a dangerous payload). The
@@ -182,7 +182,7 @@ function approvalDetail(name, input, resolvePath) {
182
182
  return `\n ${escapeTerminal(JSON.stringify(input))}`;
183
183
  }
184
184
  /**
185
- * B 区: one-line summary of a completed tool call, e.g.
185
+ * B area: one-line summary of a completed tool call, e.g.
186
186
  * ✓ edit src/foo.ts (+12 -3) ✓ read src/bar.ts (140 lines)
187
187
  * ✗ shell npm test (exit 1)
188
188
  * edit/write show +/- line counts, read shows lines, shell shows the exit
@@ -248,9 +248,9 @@ export function kUnit(value) {
248
248
  return String(value);
249
249
  }
250
250
  /**
251
- * B 区/v2a: the one-line status bar after a terminal, e.g.
251
+ * B area/v2a: the one-line status bar after a terminal, e.g.
252
252
  * [turn 3 · in 12.4k out 1.8k · cache 9.2k · ctx ~14%]
253
- * 降噪: unknown fields are OMITTED ENTIRELY (有什么显什么); a fully unknown
253
+ * Denoising: unknown fields are OMITTED ENTIRELY (show what there is); a fully unknown
254
254
  * usage → null (the caller prints nothing); faux mode → [turn N · faux].
255
255
  * All data comes from usage events; ctx is the approximate estimate
256
256
  * passed in (chars/4 vs the window), marked with ~.
@@ -275,7 +275,7 @@ export function renderStatusLine(turn, usage, ctxRatio, faux = false) {
275
275
  }
276
276
  /**
277
277
  * v2a rhythm — the exact bytes after a terminal event: the status line
278
- * hugs the terminal (有什么显什么 — omitted when there is nothing to show),
278
+ * hugs the terminal (show what there is — omitted when there is nothing to show),
279
279
  * then EXACTLY one blank line before the next prompt. The consumer prints
280
280
  * this verbatim; the render tests pin the sequence.
281
281
  */
@@ -345,6 +345,6 @@ export function renderRecap(s) {
345
345
  /** One-line summary of a session, for `kiso sessions`. */
346
346
  export function renderSessionLine(meta) {
347
347
  const when = meta.updatedAt ? new Date(meta.updatedAt).toISOString().slice(0, 16) : "—";
348
- // 八: the title is the user's first prompt — model/user text, escaped.
348
+ // round 8: the title is the user's first prompt — model/user text, escaped.
349
349
  return `${meta.id.padEnd(24)} ${meta.runs} runs ${String(meta.events).padStart(5)} events ${when} ${escapeTerminal(meta.title)}`;
350
350
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vincemakes/kiso-tui",
3
- "version": "0.1.29",
3
+ "version": "0.1.30",
4
4
  "description": "kiso tui — the pure terminal layer (cell renderer, dock, raw editor, diff, palette). Zero runtime dependencies: input is data, output is bytes.",
5
5
  "type": "module",
6
6
  "license": "MIT",