acuvo-code 0.6.2 → 0.6.3

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/bin/acuvo.mjs CHANGED
@@ -61,7 +61,7 @@ import { detectRepo, findToken, fetchIssue, branchNameFor, issueToTask, createBr
61
61
  // `formatSummary`'s job, and importing it here is how the second copy came back.
62
62
  import { describeChanges, shortenRoot, toJson } from '../lib/report.mjs';
63
63
  import { renderImage } from '../lib/terminal-graphics.mjs';
64
- import { saveSession, listSessions, resumeMessages, loadSession } from '../lib/session.mjs';
64
+ import { saveSession, listSessions, resumeMessages, loadSession, newSessionId, findCrashedSession, crashOfferLines, markSessionClosed } from '../lib/session.mjs';
65
65
  import { recordRun, parseAuditLog } from '../lib/audit.mjs';
66
66
  import { runBestOf, formatBestOf } from '../lib/best-of.mjs';
67
67
  import { escalate, formatEscalation, outOfRoad } from '../lib/escalate.mjs';
@@ -1612,6 +1612,84 @@ ${formatBoard(listed)}
1612
1612
  process.on('exit', () => { try { if (claimed?.lease) releaseAll([claimed.lease]); } catch { /* exiting anyway */ } });
1613
1613
  }
1614
1614
 
1615
+ /**
1616
+ * ── ⭐⭐⭐ "IF MY LAPTOP CRASHES, THE CHAT HISTORY IS GONE" ─────────────────
1617
+ *
1618
+ * ⚠️ IT WAS. MEASURED 2026-08-22: a run killed with SIGKILL after two
1619
+ * completed rounds and two files written left `.acuvo/sessions/` NON-EXISTENT.
1620
+ * `saveSession` only ever ran after the loop, so the run you most want back
1621
+ * was the only kind that left nothing behind. The checkpoint wiring in
1622
+ * `oneTurn` fixed the WRITE half; this is the READ half, and without it the
1623
+ * recovery only exists for someone who already knows to type `--continue` —
1624
+ * which is not the person who just lost their work.
1625
+ *
1626
+ * ⚠️⚠️ IT MUST NEVER FIRE FOR A RUN THAT IS STILL GOING. Seven terminals in
1627
+ * one workspace is the documented normal case for this tool, and each one
1628
+ * holds an open live record. `findCrashedSession` refuses any record whose pid
1629
+ * still answers — see its header for the other two conditions.
1630
+ *
1631
+ * ⭐ ACCEPTING IT REUSES `--resume` WHOLE. The offer sets an id and the
1632
+ * existing block below does the rest, so the restored conversation, the sticky
1633
+ * routing key and the budget subtraction are the same code on both doors. A
1634
+ * second copy of that block is how one of the two would end up without the
1635
+ * budget guard.
1636
+ *
1637
+ * ⚠️ THE PROMPT IS TTY-ONLY. A CI job, a `| jq` pipeline or a cron entry must
1638
+ * never block on a question nobody is there to answer — those get the lines
1639
+ * and the command, and carry on with the fresh run they asked for.
1640
+ */
1641
+ let crashOfferId = null;
1642
+ /**
1643
+ * ⚠️ `opts.bestOf < 2` FOR THE SAME REASON `--best-of` REFUSES `--resume`
1644
+ * outright: it forks the task into independent attempts and keeps one, so
1645
+ * accepting a restored conversation here would silently discard the history
1646
+ * the user had just said yes to. Offering something we would then throw away
1647
+ * is worse than not offering.
1648
+ */
1649
+ if (!resumeRequested && !opts.parallel && opts.issue === null && !opts.dryRun && life.save && opts.bestOf < 2) {
1650
+ let found = { ok: false };
1651
+ try { found = findCrashedSession(root); } catch { /* a recovery hint may never break a run */ }
1652
+ if (found.ok && found.crashed) {
1653
+ const say = (t) => (opts.json ? process.stderr : process.stdout).write(t);
1654
+ say(`${crashOfferLines(found.crashed).join('\n')}\n`);
1655
+ const askable = process.stdin.isTTY === true && process.stdout.isTTY === true && !opts.json;
1656
+ if (askable) {
1657
+ const rl = createInterface({ input: process.stdin, output: process.stderr, terminal: true });
1658
+ const answer = await new Promise((r) => rl.question(' continue that conversation instead of starting fresh? [Y/n] ', (l) => { rl.close(); r(l); }));
1659
+ /**
1660
+ * ⚠️ ENTER MEANS YES HERE, WHICH IS THE OPPOSITE OF `--task-audio`'s
1661
+ * default, and the difference is deliberate: that prompt guards an
1662
+ * ACTION taken on a possibly mis-heard instruction, so silence must
1663
+ * cancel. This one guards CONTEXT the user already paid for, and
1664
+ * nothing is executed by restoring it — the expensive mistake is
1665
+ * throwing the conversation away, not keeping it.
1666
+ */
1667
+ if (!/^\s*n(o)?\s*$/i.test(answer)) crashOfferId = found.crashed.id;
1668
+ else say(' starting fresh. That run stays on disk — `acuvo --sessions` lists it.\n');
1669
+ }
1670
+ /**
1671
+ * ⚠️⚠️ ANSWERED IS ANSWERED — INCLUDING "I ONLY PRINTED IT". The marker
1672
+ * lives in the record, so without this line the same warning fires on
1673
+ * every subsequent run in this workspace, for ever, and a warning that
1674
+ * fires when nothing is wrong is one people learn to read past. That would
1675
+ * cost the real one.
1676
+ *
1677
+ * ⚠️ NOT ON ACCEPT, AND THE ORDER IS THE REASON. `resumeMessages` reads
1678
+ * `closedCleanly` to tell the model "that run was KILLED mid-round, its
1679
+ * last round may be missing but its work may be on disk". Closing the
1680
+ * record here would erase that sentence a few lines before it is written.
1681
+ * The resume block below marks it once it has been read.
1682
+ *
1683
+ * ⭐ NOTHING IS DELETED EITHER WAY. The record stays listable, replayable
1684
+ * and `--resume <id>`-able; it just stops volunteering — exactly what the
1685
+ * decline message above promises.
1686
+ */
1687
+ if (!crashOfferId) {
1688
+ try { markSessionClosed(root, found.crashed.id); } catch { /* the offer already did its job */ }
1689
+ }
1690
+ }
1691
+ }
1692
+
1615
1693
  let priorMessages = null;
1616
1694
  /**
1617
1695
  * ── ⭐⭐⭐ ONE STICKY KEY FOR THIS WHOLE CONVERSATION, ACROSS PROCESSES ────
@@ -1629,7 +1707,7 @@ ${formatBoard(listed)}
1629
1707
  * the conversation being resumed had already paid to build.
1630
1708
  */
1631
1709
  let stickyKey = `acuvo-${randomUUID()}`;
1632
- if (resumeRequested) {
1710
+ if (resumeRequested || crashOfferId) {
1633
1711
  if (life.resume !== null && life.continueLatest) {
1634
1712
  die('--resume <id> and --continue both name a run to carry on, and they disagree. Pass one: --continue takes the most recent, --resume takes the id you name.', EXIT_USAGE);
1635
1713
  }
@@ -1640,7 +1718,10 @@ ${formatBoard(listed)}
1640
1718
  die('--issue starts a fresh branch and a fresh conversation, so there is nothing to resume. Drop one of --issue / --resume.', EXIT_USAGE);
1641
1719
  }
1642
1720
 
1643
- let id = life.resume;
1721
+ // ⚠️ `crashOfferId` is only ever set when NEITHER flag was given (the guard
1722
+ // above requires `!resumeRequested`), so this cannot silently outrank a
1723
+ // `--resume <id>` the user typed.
1724
+ let id = life.resume ?? crashOfferId;
1644
1725
  if (life.continueLatest) {
1645
1726
  const listed = listSessions(root, { limit: 50 });
1646
1727
  if (!listed.ok) die(listed.error, EXIT_FAILED);
@@ -1663,6 +1744,16 @@ ${formatBoard(listed)}
1663
1744
  // ⭐ The saved id IS the conversation, so it is the routing key too. This
1664
1745
  // line is what makes stickiness survive closing the terminal.
1665
1746
  stickyKey = `acuvo-${resumed.id ?? id}`;
1747
+ /**
1748
+ * ⚠️ AFTER `resumeMessages`, NEVER BEFORE — it reads the crash marker to
1749
+ * tell the model that run was killed mid-round. Carrying the conversation
1750
+ * forward is what closes the book on the old record: this run now owns the
1751
+ * history, so the old one must stop announcing itself as unfinished on every
1752
+ * future `acuvo` in this workspace.
1753
+ */
1754
+ if (resumed.crashed) {
1755
+ try { markSessionClosed(root, resumed.id ?? id); } catch { /* the resume already succeeded */ }
1756
+ }
1666
1757
  if (!task) task = resumed.task;
1667
1758
  if (!task) {
1668
1759
  die(`run ${resumed.id} recorded no task text, so "carry on" has nothing to carry. Say what to do next: acuvo --resume ${resumed.id} "<the next step>"`, EXIT_USAGE);
@@ -1672,6 +1763,24 @@ ${formatBoard(listed)}
1672
1763
  (opts.json ? process.stderr : process.stdout).write(
1673
1764
  ` · resuming ${resumed.id} — ${priorMessages.length} messages restored, nothing re-run${warn}\n`,
1674
1765
  );
1766
+ /**
1767
+ * ── ⚠️ SAY IT WHEN THE DISCOUNT IS GONE ──────────────────────────────────
1768
+ *
1769
+ * The first two messages ARE the cacheable prefix. A record whose head was
1770
+ * clipped resumes into a prompt that differs from the original at message
1771
+ * ZERO, so prefix caching misses on every token — measured at 60.8%
1772
+ * byte-identical before `MAX_HEAD_CHARS` gave the head its own ceiling, i.e.
1773
+ * the whole restored conversation re-bought at full price.
1774
+ *
1775
+ * ⚠️ It is silent on every ordinary resume, which is what makes it worth
1776
+ * printing at all: this fires only on a head above 60,000 characters, and
1777
+ * somebody seeing it needs to know the resume is honest but not cheap.
1778
+ */
1779
+ if (resumed.headTruncated) {
1780
+ (opts.json ? process.stderr : process.stdout).write(
1781
+ ' ⚠ that record\'s opening message was too large to store whole, so the prompt cache cannot hit on this resume — expect it to cost like a fresh run.\n',
1782
+ );
1783
+ }
1675
1784
 
1676
1785
  /**
1677
1786
  * ── ⚠️⚠️ A RESUMED RUN USED TO GET A WHOLE FRESH BUDGET ──────────────────
@@ -1845,6 +1954,22 @@ ${formatBoard(listed)}
1845
1954
  },
1846
1955
  });
1847
1956
 
1957
+ /**
1958
+ * ── ⭐⭐⭐ THE ID THIS TURN WILL BE SAVED UNDER, DECIDED BEFORE IT STARTS ──
1959
+ *
1960
+ * ⚠️ MEASURED, WHICH IS WHY IT IS HERE: a run SIGKILLed mid-round left NO
1961
+ * `.acuvo/sessions/` directory at all — every save happened after the loop,
1962
+ * so the run whose conversation you would most want back was the only kind
1963
+ * that left none. The checkpoints below write the same record the end of the
1964
+ * turn writes, under this id, marked `live` until the turn closes it.
1965
+ *
1966
+ * ⚠️ `--dry-run` AND `--no-session` MUST BE HONOURED HERE TOO, not only in
1967
+ * `persistRun`. A dry run that scattered eight session files while promising
1968
+ * to "touch nothing" is the same broken promise, arrived at from a new door.
1969
+ */
1970
+ const turnSessionId = newSessionId();
1971
+ const checkpointing = life.save && !opts.dryRun && !over.quiet;
1972
+
1848
1973
  let result;
1849
1974
  try {
1850
1975
  result = await runSession({
@@ -1947,6 +2072,26 @@ ${formatBoard(listed)}
1947
2072
  untilDone: opts.untilDone,
1948
2073
  // ⭐ The admin layer reaches the loop. OPEN_POLICY when no file exists.
1949
2074
  policy,
2075
+ /**
2076
+ * ── ⭐⭐⭐ THE WIRE THAT MAKES A KILLED RUN RECOVERABLE ──────────────────
2077
+ *
2078
+ * `runSession` calls this at every round boundary with the same shape it
2079
+ * returns at the end, so `saveSession` is the whole implementation —
2080
+ * there is one definition of a session record, not a live one and a final
2081
+ * one that drift apart the first time either grows a field.
2082
+ *
2083
+ * ⚠️ IT SWALLOWS ITS OWN FAILURES ON PURPOSE, and this is the one place in
2084
+ * this file that does so silently. `persistRun` announces a failed save
2085
+ * because that is the last word on a finished run; announcing a failed
2086
+ * CHECKPOINT would print the same line once per round for the rest of a
2087
+ * long run, which is how people learn to read past the line that matters.
2088
+ * The end-of-turn save hits the same disk and will say so.
2089
+ */
2090
+ onCheckpoint: checkpointing
2091
+ ? (partial) => {
2092
+ try { saveSession(root, partial, { task: turnTask, id: turnSessionId, live: true }); } catch { /* the work outranks the record */ }
2093
+ }
2094
+ : null,
1950
2095
  // ⚠️ STREAMED, NOT BUFFERED. A bounded loop that prints only at the end is
1951
2096
  // indistinguishable from a hang for however long it takes, and the whole
1952
2097
  // value of watching a fix land is watching it land.
@@ -2080,7 +2225,13 @@ ${formatBoard(listed)}
2080
2225
  */
2081
2226
  gate.dispose();
2082
2227
  }
2083
- persistRun(turnTask, result);
2228
+ /**
2229
+ * ⚠️ THE SAME ID THE CHECKPOINTS USED — this call is what flips
2230
+ * `closedCleanly` to true. Passing a fresh id here would leave the live
2231
+ * record open forever, and the next `acuvo` in this workspace would offer to
2232
+ * recover a run that finished perfectly well.
2233
+ */
2234
+ persistRun(turnTask, result, turnSessionId);
2084
2235
  /**
2085
2236
  * ── ⭐ `--say` — NARRATE THE VERDICT ──────────────────────────────────────
2086
2237
  *
@@ -2216,11 +2367,26 @@ ${formatBoard(listed)}
2216
2367
  * dry run that creates two files in the workspace has broken that promise
2217
2368
  * to save a record of a run that did not happen.
2218
2369
  */
2219
- const persistRun = (turnTask, result) => {
2370
+ /**
2371
+ * ── ⭐⭐⭐ ONE ID PER TURN, SHARED BY THE LIVE SAVES AND THE FINAL ONE ──────
2372
+ *
2373
+ * ⚠️ WITHOUT THIS THE CRASH RECOVERY WOULD LITTER. `saveSession` mints a fresh
2374
+ * id whenever it is not given one, so checkpointing each round would leave
2375
+ * eight files for one turn and the finished record would be a ninth — and the
2376
+ * eight orphans would all still carry `closedCleanly: false`, so every one of
2377
+ * them would look like a crash to the startup check. Handing the same id to
2378
+ * every write means one file per turn, exactly as before, whose only new
2379
+ * content is a boolean that flips true when the turn ends.
2380
+ *
2381
+ * ⚠️ MINTED PER TURN, NOT PER PROCESS: interactive mode runs many turns and
2382
+ * has always written one record each. Sharing one id across a conversation
2383
+ * would collapse the whole history into a single overwritten file.
2384
+ */
2385
+ const persistRun = (turnTask, result, id = null) => {
2220
2386
  if (opts.dryRun) return;
2221
2387
  if (life.save) {
2222
2388
  try {
2223
- const saved = saveSession(root, result, { task: turnTask });
2389
+ const saved = saveSession(root, result, { task: turnTask, ...(id ? { id } : {}) });
2224
2390
  if (!saved.ok) process.stderr.write(` · the run was not saved: ${saved.error}\n`);
2225
2391
  } catch (e) {
2226
2392
  process.stderr.write(` · the run was not saved: ${e?.message ?? e}\n`);
package/lib/chat.mjs CHANGED
@@ -370,7 +370,7 @@ export async function runChat({
370
370
  * Pressed against the banner it read as a fifth detail row rather than as an
371
371
  * instruction addressed to the person.
372
372
  */
373
- output.write('\nType what you want done. "/help" for commands, "exit" to leave.\n\n');
373
+ const writeInvitation = () => output.write('\nType what you want done. "/help" for commands, "exit" to leave.\n\n');
374
374
 
375
375
  let history = null;
376
376
  let turns = 0;
@@ -412,6 +412,12 @@ export async function runChat({
412
412
  * scrollback in existence runs.
413
413
  */
414
414
  writeBanner();
415
+ /**
416
+ * ⚠️ AFTER THE BANNER, AND IT WAS PRINTING BEFORE IT. The invitation is
417
+ * addressed to somebody who has just read the banner; printed above it, it is
418
+ * an instruction for a screen they have not seen yet.
419
+ */
420
+ writeInvitation();
415
421
 
416
422
  try {
417
423
  for (;;) {
package/lib/input-box.mjs CHANGED
@@ -489,9 +489,34 @@ export function readBoxedLine({ input, output, history = [], onInterrupt = null,
489
489
  */
490
490
  export function pinRegion(output, { rows = 2, env = process.env } = {}) {
491
491
  const height = output?.rows ?? process.stdout?.rows ?? 0;
492
+ /**
493
+ * ── ⚠️⚠️⚠️ OFF BY DEFAULT. THREE ATTEMPTS, THREE DIFFERENT WRONG RESULTS ────
494
+ *
495
+ * Roman, across three builds: "you have to scroll down to see the prompt" —
496
+ * then, after the clear was fixed — "now it's just the box, everything else
497
+ * is gone."
498
+ *
499
+ * The write ORDER is provably correct (traced: clear, region, banner at row 1,
500
+ * input at the last two rows). It still renders wrong in his terminal, and a
501
+ * scroll region is a claim on somebody's whole screen that behaves differently
502
+ * in VS Code, Windows Terminal and cmd.exe. I cannot verify it in the terminal
503
+ * that matters from here, and shipping a fourth guess at somebody's display is
504
+ * worse than not having the feature.
505
+ *
506
+ * ⭐ AND THE SIMPLE VERSION GETS THE ACTUAL REQUIREMENT. Without a region the
507
+ * input is simply the LAST THING WRITTEN each turn, and every terminal
508
+ * auto-scrolls to its newest output — so it is always at the bottom of what
509
+ * you are looking at, always visible, with the transcript above it. That is
510
+ * what "stuck down the bottom" needs to mean; welding it to a physical screen
511
+ * row was my addition, not the requirement.
512
+ *
513
+ * ⚠️ KEPT, NOT DELETED, and still fully tested — `ACUVO_PIN=1` turns it on.
514
+ * The mechanism is correct and worth having once it can be verified in a real
515
+ * VS Code terminal rather than inferred from a byte trace.
516
+ */
492
517
  const enabled = Boolean(output?.isTTY)
493
518
  && height > rows + 4
494
- && String(env.ACUVO_NO_PIN ?? '') !== '1'
519
+ && String(env.ACUVO_PIN ?? '') === '1'
495
520
  && String(env.CI ?? '').toLowerCase() !== 'true';
496
521
 
497
522
  if (!enabled) return { enabled: false, release() {}, rows: 0, bottom: 0 };
package/lib/session.mjs CHANGED
@@ -436,23 +436,68 @@ const WITHHELD =
436
436
  '[withheld: this tool call touched a credential file, so its contents were not saved with the session. '
437
437
  + 'Read the file again in this run if you need it.]';
438
438
 
439
+ /**
440
+ * The keys a saved message may carry, in the order this module falls back to
441
+ * when the source message does not state one of its own.
442
+ *
443
+ * ⚠️ `role` IS PINNED FIRST AND THE REST FOLLOW THE SOURCE — see `orderedKeys`.
444
+ */
445
+ const MESSAGE_KEYS = ['role', 'content', 'name', 'tool_call_id', 'tool_calls'];
446
+
447
+ /**
448
+ * ── ⚠️⭐ THE SAVED MESSAGE MUST SERIALISE IN THE ORDER THE LIVE ONE DID ──────
449
+ *
450
+ * MEASURED 2026-08-22, on the end-to-end crash-and-resume run this file exists
451
+ * for. With the head truncation fixed the restored prompt matched the original
452
+ * for 13,305 of 13,700 characters — and then diverged, on this:
453
+ *
454
+ * live : {"role":"tool","tool_call_id":"c_write_file","name":…,"content":…}
455
+ * saved : {"role":"tool","content":…,"name":…,"tool_call_id":"c_write_file"}
456
+ *
457
+ * Same message, same bytes of meaning, different JSON. `turn.mjs` pushes tool
458
+ * replies as `{role, tool_call_id, name, content}`; this function rebuilt them
459
+ * as `{role, content, name, tool_call_id}` because that is the order the code
460
+ * happened to assign in. Nothing was lost and nothing was wrong — the payload
461
+ * simply stopped being byte-identical at the first tool result, which is round
462
+ * one of every real session.
463
+ *
464
+ * ⭐ SO THE SOURCE'S OWN KEY ORDER IS PRESERVED. Reading `Object.keys(message)`
465
+ * costs nothing and makes the property hold for message shapes this module has
466
+ * not been taught about yet, which an explicit hand-written order would not.
467
+ * `role` is forced first because a `tool_calls`-only object would otherwise
468
+ * bury it, and every consumer reads `role` first.
469
+ */
470
+ function orderedKeys(message) {
471
+ const seen = new Set(['role']);
472
+ const keys = ['role'];
473
+ for (const k of Object.keys(message ?? {})) {
474
+ if (!MESSAGE_KEYS.includes(k) || seen.has(k)) continue;
475
+ seen.add(k);
476
+ keys.push(k);
477
+ }
478
+ // Anything the source did not name (or named in a shape we skipped) still has
479
+ // to be emitted if we produce a value for it — appended, never interleaved.
480
+ for (const k of MESSAGE_KEYS) if (!seen.has(k)) { seen.add(k); keys.push(k); }
481
+ return keys;
482
+ }
483
+
439
484
  /**
440
485
  * Scrub and cap one message. Returns a NEW object — the caller's array belongs
441
486
  * to a live session that may still be in use, and mutating it here would edit
442
487
  * the conversation a running loop is about to send.
443
488
  */
444
489
  function sanitizeMessage(message, { withhold = false, maxChars = MAX_MESSAGE_CHARS } = {}) {
445
- const out = { role: message?.role };
490
+ const value = {};
446
491
  let redactions = 0;
447
492
 
448
493
  if (typeof message?.content === 'string') {
449
494
  if (withhold) {
450
- out.content = WITHHELD;
495
+ value.content = WITHHELD;
451
496
  redactions += 1;
452
497
  } else {
453
498
  const r = redactSecrets(message.content);
454
499
  redactions += r.redactions;
455
- out.content = truncate(r.text, maxChars);
500
+ value.content = truncate(r.text, maxChars);
456
501
  }
457
502
  } else if (message?.content !== undefined) {
458
503
  // Non-string content (an array of parts, from a multimodal round). Keep the
@@ -460,14 +505,14 @@ function sanitizeMessage(message, { withhold = false, maxChars = MAX_MESSAGE_CHA
460
505
  // assistant message is another way to earn a 400.
461
506
  const r = redactSecrets(JSON.stringify(message.content));
462
507
  redactions += r.redactions;
463
- out.content = truncate(r.text, maxChars);
508
+ value.content = truncate(r.text, maxChars);
464
509
  }
465
510
 
466
- if (typeof message?.name === 'string') out.name = message.name;
467
- if (typeof message?.tool_call_id === 'string') out.tool_call_id = message.tool_call_id;
511
+ if (typeof message?.name === 'string') value.name = message.name;
512
+ if (typeof message?.tool_call_id === 'string') value.tool_call_id = message.tool_call_id;
468
513
 
469
514
  if (Array.isArray(message?.tool_calls)) {
470
- out.tool_calls = message.tool_calls.map((call) => {
515
+ value.tool_calls = message.tool_calls.map((call) => {
471
516
  const raw = String(call?.function?.arguments ?? '{}');
472
517
  // ⚠️ The ARGUMENTS of a write_file to `.env` contain the file body. The
473
518
  // reply is not the only place a credential lives.
@@ -487,6 +532,12 @@ function sanitizeMessage(message, { withhold = false, maxChars = MAX_MESSAGE_CHA
487
532
  };
488
533
  });
489
534
  }
535
+
536
+ const out = {};
537
+ for (const key of orderedKeys(message)) {
538
+ if (key === 'role') { out.role = message?.role; continue; }
539
+ if (value[key] !== undefined) out[key] = value[key];
540
+ }
490
541
  return { message: out, redactions };
491
542
  }
492
543
 
@@ -1035,6 +1086,42 @@ export function findCrashedSession(root, { limit = 5, selfPid = process.pid, isA
1035
1086
  return { ok: true, crashed: null };
1036
1087
  }
1037
1088
 
1089
+ /**
1090
+ * ── ⭐⭐ CLOSE THE BOOK ON A CRASHED RECORD ONCE IT HAS BEEN DEALT WITH ──────
1091
+ *
1092
+ * ⚠️ WITHOUT THIS THE OFFER IS IMMORTAL, and that is not a small defect — it is
1093
+ * the one that makes the whole feature useless. The crash marker lives in the
1094
+ * record, so a session recovered on Monday still says "I never finished" on
1095
+ * Tuesday, Wednesday and every run after that. A warning that fires when nothing
1096
+ * is wrong teaches people to dismiss it without reading, and then the real one
1097
+ * gets dismissed too.
1098
+ *
1099
+ * ⭐ IT IS CALLED ON BOTH ANSWERS — accepted and declined. Accepting carries the
1100
+ * conversation into a NEW record, so the old one is history. Declining is a
1101
+ * decision, and re-asking somebody who already said no is how a prompt becomes
1102
+ * noise. Neither answer deletes anything: the record stays listable, replayable
1103
+ * and `--resume <id>`-able, it simply stops volunteering.
1104
+ *
1105
+ * ⚠️ IT NEVER THROWS AND IT NEVER PARTIALLY WRITES. Same temp-then-rename as
1106
+ * `saveSession`, and an unreadable or unparseable file is reported, not raised —
1107
+ * this runs on the startup path of an ordinary run.
1108
+ *
1109
+ * @param {string} root
1110
+ * @param {string} id
1111
+ * @returns {{ ok: true, id: string, changed: boolean } | SessionRefused}
1112
+ */
1113
+ export function markSessionClosed(root, id) {
1114
+ const loaded = loadSession(root, id);
1115
+ if (!loaded.ok) return loaded;
1116
+ if (loaded.session.closedCleanly !== false) return { ok: true, id: loaded.session.id, changed: false };
1117
+
1118
+ const f = resolveSessionFile(root, `${String(id).replace(/\.json$/, '')}.json`);
1119
+ if (!f.ok) return f;
1120
+ const written = writeRecord(f, { ...loaded.session, closedCleanly: true });
1121
+ if (!written.ok) return written;
1122
+ return { ok: true, id: loaded.session.id, changed: true };
1123
+ }
1124
+
1038
1125
  /**
1039
1126
  * Does this pid still answer?
1040
1127
  *
package/lib/turn.mjs CHANGED
@@ -2349,6 +2349,20 @@ export async function runSession({
2349
2349
  * default is `OPEN_POLICY`, so a run with no policy file is unchanged.
2350
2350
  */
2351
2351
  policy = OPEN_POLICY,
2352
+ /**
2353
+ * ── ⭐⭐ CALLED AT EVERY ROUND BOUNDARY WITH THE RUN SO FAR ────────────────
2354
+ *
2355
+ * `null` (the default) is one falsy check per round and the behaviour this
2356
+ * function has always had. `bin/acuvo.mjs` passes `saveSession`, which is what
2357
+ * makes a killed run recoverable — see the call site inside the loop for the
2358
+ * measurement that forced it.
2359
+ *
2360
+ * ⚠️ IT RECEIVES THE SAME SHAPE THIS FUNCTION RETURNS, deliberately, so the
2361
+ * caller has one consumer and not two. A checkpoint that needed its own
2362
+ * translation layer would be a second definition of the outcome, and the two
2363
+ * would drift the first time either grew a field.
2364
+ */
2365
+ onCheckpoint = null,
2352
2366
  }) {
2353
2367
  const continuing = Array.isArray(priorMessages) && priorMessages.length > 0;
2354
2368
  /**
@@ -3047,6 +3061,52 @@ export async function runSession({
3047
3061
  }
3048
3062
  onEvent({ type: 'round-start', round, of: maxRounds });
3049
3063
 
3064
+ /**
3065
+ * ── ⭐⭐⭐ THE TRANSCRIPT REACHES DISK *DURING* THE RUN, NOT AFTER IT ─────
3066
+ *
3067
+ * ⚠️ MEASURED 2026-08-22, which is the only reason this exists: a run was
3068
+ * SIGKILLed here, mid-round, after two completed rounds and two files
3069
+ * written — and `.acuvo/sessions/` did not exist at all afterwards. Every
3070
+ * save in this package happened after the loop, so the run a person most
3071
+ * wants back (the one that died) was the only one that left nothing.
3072
+ *
3073
+ * ⭐ THE TOP OF THE ROUND IS THE RIGHT SEAM, and it is ONE call site. Here,
3074
+ * `messages` holds everything through round N-1 and nothing partial: the
3075
+ * assistant reply for this round has not arrived, so there is no dangling
3076
+ * `tool_calls` group for the session's side-effect guard to have to drop.
3077
+ * Hooking the three `rounds.push` sites instead would be three copies of the
3078
+ * same decision — the shape that has cost this repo five separate bugs.
3079
+ *
3080
+ * ⚠️ WHAT IT COSTS ON A CRASH IS THE ROUND IN FLIGHT, and that is honest:
3081
+ * the killed round's tool call may have LANDED while its result never did,
3082
+ * which is precisely what `resumeMessages` now says out loud.
3083
+ *
3084
+ * ⚠️ AND IT CAN NEVER TAKE THE RUN DOWN. A bookkeeping write that throws
3085
+ * would kill the work it exists to protect — the same rule `audit.mjs` and
3086
+ * `checkpoint.mjs` already state. The caller is handed the SAME shape
3087
+ * `saveSession` consumes at the end of the run, so there is one definition
3088
+ * of "what a session record contains" rather than two.
3089
+ */
3090
+ if (onCheckpoint) {
3091
+ try {
3092
+ onCheckpoint({
3093
+ ok: true,
3094
+ stage: 'running',
3095
+ model: config.model,
3096
+ messages,
3097
+ executed,
3098
+ rounds,
3099
+ roundsUsed: rounds.length,
3100
+ maxRounds,
3101
+ stoppedBecause: 'in-progress',
3102
+ // ⭐ The same aggregator the finished outcome uses — a resumed run's
3103
+ // budget subtraction reads `usage.cost`, and a checkpoint that
3104
+ // reported nothing would hand a crashed run a fresh full ceiling.
3105
+ usage: aggregateUsage(rounds, prefixReadings),
3106
+ });
3107
+ } catch { /* a record must never cost the work it records */ }
3108
+ }
3109
+
3050
3110
  /**
3051
3111
  * ── ⭐ THE COUNTDOWN, INJECTED HERE AND NOWHERE ELSE ────────────────────
3052
3112
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "acuvo-code",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "description": "Acuvo Code — the terminal client for the Acuvo capability registry. Zero dependencies, by design.",
5
5
  "type": "module",
6
6
  "bin": {