@tokenoftrust/cli 1.4.0-rc.2 → 1.4.0-rc.20

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.
@@ -0,0 +1,378 @@
1
+ /**
2
+ * emitActivity — the CLI's operational-activity emitter (card D3).
3
+ *
4
+ * This is a hand-maintained JS MIRROR of the D0 actor×action contract that lives,
5
+ * in TypeScript, in `packages/public-runtime/src/activity/` (event.ts / catalog.ts
6
+ * / redaction.ts). The CLI is published to npm STANDALONE and is deliberately pure
7
+ * JS with NO dependency on `@tot/public-runtime` (a TS package) — see that module's
8
+ * README ("Consuming this from the downstream cards → D3"). So instead of importing
9
+ * the contract, we mirror the slice of it the CLI needs, and a keep-in-step test
10
+ * (activity-mirror.test.mjs) fails LOUDLY the moment this mirror drifts from the TS
11
+ * source of truth (the same discipline as no-gitea-links.test.mjs).
12
+ *
13
+ * What this mirrors, exactly:
14
+ * • the ActivityEvent envelope shape + ACTIVITY_SCHEMA_VERSION + newEventId()
15
+ * • the CLI-relevant subset of ACTION_CATALOG (the `cli.*` action keys + their
16
+ * default-deny argsAllow/renderedAllow allowlists)
17
+ * • the redaction contract (REDACTION_MARKER, MAX_VALUE_LEN, the VALUE_CANARIES,
18
+ * the KEY_NAME_CANARY, and redactPayload/createActivityEvent) — byte-for-byte,
19
+ * so a value that the server-side contract would scrub is scrubbed here too.
20
+ * If you add a `cli.*` action, change an allowlist, or touch a canary in the TS
21
+ * source, you MUST update this file in lockstep — the keep-in-step test enforces it.
22
+ *
23
+ * Transport + gate (generalized from the obstacle beacon, obstacle-beacon.cjs):
24
+ * emitActivity() is a SILENT NO-OP without a bridge credential configured — it
25
+ * never makes a network call and never fails/blocks a command when the developer
26
+ * isn't connected to a hosted /dev bridge (a bare `tot login`, an older session,
27
+ * CI, the `--sample` path). With a credential it POSTs the redacted envelope to
28
+ * the SAME `<activityUrl>/api/dev/activity` endpoint the obstacle beacon and the
29
+ * dev heartbeat already use — best-effort, bounded by a hard timeout, and fully
30
+ * swallowed so telemetry can never disrupt or delay the developer's command.
31
+ *
32
+ * Dependency-free (node: builtins + global fetch, Node ≥22).
33
+ */
34
+ import { createHash } from "node:crypto";
35
+ import { defaultCredentialsPath, readCredentials } from "./token-store.mjs";
36
+
37
+ // ─────────────────────────────────────────────────────────────────────────────
38
+ // Envelope (mirror of event.ts)
39
+ // ─────────────────────────────────────────────────────────────────────────────
40
+
41
+ /** Envelope contract version — MIRROR of event.ts ACTIVITY_SCHEMA_VERSION. */
42
+ export const ACTIVITY_SCHEMA_VERSION = 1;
43
+
44
+ /** Node-native UUID v4 (Node ≥22 has globalThis.crypto). Mirror of event.ts newEventId(). */
45
+ export function newEventId() {
46
+ const c = globalThis.crypto;
47
+ if (c && typeof c.randomUUID === "function") return c.randomUUID();
48
+ // Fallback (should never be reached on a supported Node) — node:crypto.
49
+ return createHash("sha256").update(String(Math.random()) + Date.now()).digest("hex").slice(0, 32);
50
+ }
51
+
52
+ // ─────────────────────────────────────────────────────────────────────────────
53
+ // Action catalog — the CLI-relevant SUBSET (mirror of the `cli.*` keys in catalog.ts).
54
+ //
55
+ // Keep this in lockstep with packages/public-runtime/src/activity/catalog.ts. Only
56
+ // the `cli.*` domain is mirrored here (the CLI never emits server/ui actions); the
57
+ // keep-in-step test asserts that (a) this set is EXACTLY the `cli.*` keys in the TS
58
+ // catalog and (b) each argsAllow/renderedAllow matches the TS entry.
59
+ // ─────────────────────────────────────────────────────────────────────────────
60
+ export const CLI_ACTION_CATALOG = {
61
+ "cli.command.invoked": {
62
+ argsAllow: ["command", "subcommand", "cliVersion", "node"],
63
+ renderedAllow: [],
64
+ },
65
+ "cli.command.result": {
66
+ argsAllow: ["command", "subcommand", "cliVersion", "exitCode", "durationMs"],
67
+ renderedAllow: [],
68
+ },
69
+ "cli.obstacle.reported": {
70
+ argsAllow: ["kind", "have", "need", "cliVersion"],
71
+ renderedAllow: [],
72
+ },
73
+ "cli.signin.requested": {
74
+ argsAllow: ["cliVersion"],
75
+ renderedAllow: [],
76
+ },
77
+ };
78
+
79
+ /** All CLI action keys as a runtime array. */
80
+ export const CLI_ACTION_KEYS = Object.keys(CLI_ACTION_CATALOG);
81
+
82
+ /** Deny-by-default guard — is this an allowlisted CLI action key? */
83
+ export function isCliActionKey(v) {
84
+ return typeof v === "string" && Object.prototype.hasOwnProperty.call(CLI_ACTION_CATALOG, v);
85
+ }
86
+
87
+ // ─────────────────────────────────────────────────────────────────────────────
88
+ // Redaction contract (mirror of redaction.ts) — MUST match byte-for-byte.
89
+ // ─────────────────────────────────────────────────────────────────────────────
90
+
91
+ /** Marker stored in place of a value that tripped a canary. Mirror of REDACTION_MARKER. */
92
+ export const REDACTION_MARKER = "«redacted»";
93
+ /** Cap on a stored rendered/arg string. Mirror of MAX_VALUE_LEN. */
94
+ export const MAX_VALUE_LEN = 512;
95
+
96
+ /**
97
+ * Secret/PII VALUE canaries — MIRROR of redaction.ts VALUE_CANARIES. The regex
98
+ * SOURCES here must stay identical to the TS side; the keep-in-step test compares
99
+ * them literally.
100
+ */
101
+ export const VALUE_CANARIES = [
102
+ { label: "private_key", re: /-----BEGIN(?: [A-Z]+)? PRIVATE KEY-----/ },
103
+ { label: "jwt", re: /\beyJ[A-Za-z0-9_-]{8,}\.[A-Za-z0-9_-]{8,}\.[A-Za-z0-9_-]+/ },
104
+ { label: "bearer", re: /\bBearer\s+[A-Za-z0-9._~+/-]{12,}=*/i },
105
+ { label: "aws_access_key", re: /\bAKIA[0-9A-Z]{16}\b/ },
106
+ { label: "gh_token", re: /\b(?:ghp|gho|ghu|ghs|ghr|github_pat)_[A-Za-z0-9_]{20,}/ },
107
+ { label: "slack_token", re: /\bxox[baprs]-[A-Za-z0-9-]{10,}/ },
108
+ { label: "openai_key", re: /\bsk-[A-Za-z0-9]{20,}/ },
109
+ { label: "email", re: /\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}\b/ },
110
+ { label: "card_number", re: /\b(?:\d[ -]?){13,19}\b/ },
111
+ { label: "phone", re: /\b\+?\d[\d ().-]{9,}\d\b/ },
112
+ { label: "high_entropy", re: /(?:^|[^A-Za-z0-9_-])[A-Za-z0-9_-]{28,}(?:$|[^A-Za-z0-9_-])/ },
113
+ ];
114
+
115
+ /** Secret-looking KEY NAMES — dropped outright. MIRROR of redaction.ts KEY_NAME_CANARY. */
116
+ export const KEY_NAME_CANARY =
117
+ /(?:secret|token|passwd|password|authorization|api[_-]?key|private[_-]?key|credential|cookie|session|bearer|jwt)/i;
118
+
119
+ function isPrimitive(v) {
120
+ const t = typeof v;
121
+ return t === "string" || t === "number" || t === "boolean";
122
+ }
123
+
124
+ /** Scan a stringified value against the value canaries. Mirror of scanValueCanary. */
125
+ export function scanValueCanary(value) {
126
+ for (const c of VALUE_CANARIES) if (c.re.test(value)) return c.label;
127
+ return undefined;
128
+ }
129
+
130
+ function redactLane(lane, raw, allow, hits) {
131
+ if (!raw) return undefined;
132
+ const allowSet = new Set(allow);
133
+ const out = {};
134
+ for (const [key, value] of Object.entries(raw)) {
135
+ if (KEY_NAME_CANARY.test(key)) {
136
+ hits.push({ lane, key, reason: "key_name_canary" });
137
+ continue;
138
+ }
139
+ if (!allowSet.has(key)) {
140
+ hits.push({ lane, key, reason: "not_allowlisted" });
141
+ continue;
142
+ }
143
+ if (!isPrimitive(value)) {
144
+ hits.push({ lane, key, reason: "non_primitive" });
145
+ continue;
146
+ }
147
+ const str = String(value).slice(0, MAX_VALUE_LEN);
148
+ const canary = scanValueCanary(str);
149
+ if (canary) {
150
+ hits.push({ lane, key, reason: "value_canary", canary });
151
+ out[key] = REDACTION_MARKER;
152
+ continue;
153
+ }
154
+ out[key] = typeof value === "string" ? str : value;
155
+ }
156
+ return Object.keys(out).length > 0 ? out : undefined;
157
+ }
158
+
159
+ /**
160
+ * Apply the redaction contract to a raw payload for a CLI action. Pure. Mirror of
161
+ * redaction.ts redactPayload (restricted to the CLI catalog). An unknown action
162
+ * yields an empty payload (deny-all).
163
+ */
164
+ export function redactPayload(action, raw) {
165
+ const hits = [];
166
+ const spec = CLI_ACTION_CATALOG[action];
167
+ if (!spec) {
168
+ if (raw?.args) for (const k of Object.keys(raw.args)) hits.push({ lane: "args", key: k, reason: "unknown_action" });
169
+ if (raw?.rendered) for (const k of Object.keys(raw.rendered)) hits.push({ lane: "rendered", key: k, reason: "unknown_action" });
170
+ return { payload: undefined, report: { keptArgs: [], keptRendered: [], hits, canaryTripped: false } };
171
+ }
172
+ const args = redactLane("args", raw?.args, spec.argsAllow, hits);
173
+ const renderedRaw = redactLane("rendered", raw?.rendered, spec.renderedAllow, hits);
174
+ const rendered = renderedRaw
175
+ ? Object.fromEntries(Object.entries(renderedRaw).map(([k, v]) => [k, String(v)]))
176
+ : undefined;
177
+ const payload = args || rendered ? { ...(args ? { args } : {}), ...(rendered ? { rendered } : {}) } : undefined;
178
+ return {
179
+ payload,
180
+ report: {
181
+ keptArgs: args ? Object.keys(args) : [],
182
+ keptRendered: rendered ? Object.keys(rendered) : [],
183
+ hits,
184
+ canaryTripped: hits.some((h) => h.reason === "value_canary"),
185
+ },
186
+ };
187
+ }
188
+
189
+ /**
190
+ * The safe constructor — mirror of redaction.ts createActivityEvent. Fills v/id/at
191
+ * and runs the raw payload through redactPayload() so the returned event's payload
192
+ * is already default-denied + canary-scanned. Throws only on an out-of-catalog
193
+ * (non-`cli.*`) action — a programming error.
194
+ */
195
+ export function createActivityEvent({ action, actor, source = "cli", outcome, scope, payload, at, id }) {
196
+ if (!isCliActionKey(action)) throw new Error(`activity: unknown CLI action "${action}" (not in the CLI mirror catalog)`);
197
+ const { payload: redacted, report } = redactPayload(action, payload);
198
+ const event = {
199
+ v: ACTIVITY_SCHEMA_VERSION,
200
+ id: id ?? newEventId(),
201
+ at: at ?? new Date().toISOString(),
202
+ actor,
203
+ action,
204
+ source,
205
+ scope: scope ?? {},
206
+ outcome,
207
+ ...(redacted ? { payload: redacted } : {}),
208
+ };
209
+ return { event, report };
210
+ }
211
+
212
+ // ─────────────────────────────────────────────────────────────────────────────
213
+ // Bridge resolution + emit
214
+ // ─────────────────────────────────────────────────────────────────────────────
215
+
216
+ /** Hard cap on how long a single emit may take before it's abandoned (never blocks a command). */
217
+ const EMIT_TIMEOUT_MS = 1500;
218
+
219
+ /**
220
+ * The ONE activity-telemetry kill switch (card D8) — the SAME flag name the server
221
+ * honours (`apps/storefront/src/lib/activity/killSwitch.ts`). Set
222
+ * `ACTIVITY_TELEMETRY_DISABLED=1` (or true/yes/on) and every CLI emit becomes a silent
223
+ * no-op — no build, no redaction, no network — while the command itself runs unchanged
224
+ * (fail-open). Unset ⇒ telemetry enabled (the normal state).
225
+ */
226
+ export const ACTIVITY_KILL_SWITCH_FLAG = "ACTIVITY_TELEMETRY_DISABLED";
227
+ export function isActivityDisabled(env = process.env) {
228
+ const v = env && env[ACTIVITY_KILL_SWITCH_FLAG];
229
+ return typeof v === "string" && ["1", "true", "yes", "on"].includes(v.trim().toLowerCase());
230
+ }
231
+
232
+ /**
233
+ * Resolve the local→hosted activity-bridge credential, or null when none is
234
+ * configured (→ emitActivity is a no-op). Mirrors the resolution the obstacle
235
+ * beacon (obstacle.mjs) and the heartbeat (dev-heartbeat.mjs) use: the env override
236
+ * `TOT_DEV_ACTIVITY_URL`/`TOT_DEV_ACTIVITY_TOKEN` (threaded to runner-spawning
237
+ * paths) wins, else the `activityUrl`/`activityToken` cached in ~/.tot/credentials.json.
238
+ */
239
+ export function resolveActivityBridge(env = process.env) {
240
+ const url = env.TOT_DEV_ACTIVITY_URL;
241
+ const token = env.TOT_DEV_ACTIVITY_TOKEN;
242
+ if (url && token) return { url, token };
243
+ try {
244
+ const creds = readCredentials(defaultCredentialsPath(env));
245
+ if (creds?.activityUrl && creds?.activityToken) {
246
+ return { url: creds.activityUrl, token: creds.activityToken };
247
+ }
248
+ } catch {
249
+ /* best-effort — no bridge */
250
+ }
251
+ return null;
252
+ }
253
+
254
+ /**
255
+ * The event's actor — kind `dev` (or `agent` when the caller signals an automated
256
+ * run) with an OPAQUE, non-reversible id, per the D0 contract (actor.id in the core
257
+ * zone is NEVER raw PII). Until the canonical pseudonymization salt lands (an open
258
+ * question owned by D1/D4 — see redaction.ts header), we derive the id from an
259
+ * already-opaque handle: the masked emailHint if present, else a one-way hash of the
260
+ * bridge token, else "anonymous". Never reversible, never raw PII.
261
+ */
262
+ export function resolveActor(env = process.env) {
263
+ const kind = env.TOT_ACTOR_KIND === "agent" ? "agent" : "dev";
264
+ let seed = "anonymous";
265
+ try {
266
+ const creds = readCredentials(defaultCredentialsPath(env));
267
+ if (creds?.emailHint) seed = `hint:${creds.emailHint}`;
268
+ else if (creds?.activityToken) seed = `tok:${creds.activityToken}`;
269
+ } catch {
270
+ /* fall through to anonymous */
271
+ }
272
+ const id = seed === "anonymous" ? "anonymous" : createHash("sha256").update(seed).digest("hex").slice(0, 16);
273
+ return { kind, id };
274
+ }
275
+
276
+ /**
277
+ * The scope threaded onto every CLI event — the storefront-minted invite→problem
278
+ * `traceId` from the credential cache, when present, so a CLI event and the server
279
+ * event it triggers share one trace (matching the existing feedback/heartbeat use).
280
+ */
281
+ function resolveScope(env = process.env, extra = {}) {
282
+ const scope = { ...extra };
283
+ try {
284
+ const creds = readCredentials(defaultCredentialsPath(env));
285
+ if (creds?.traceId && !scope.traceId) scope.traceId = creds.traceId;
286
+ } catch {
287
+ /* best-effort */
288
+ }
289
+ return scope;
290
+ }
291
+
292
+ /**
293
+ * Emit one activity event. SILENT NO-OP without a bridge credential (returns
294
+ * `{ sent:false }`) — no network call, never throws, never blocks a command. With
295
+ * a credential it builds the redacted envelope (via createActivityEvent) and POSTs
296
+ * it best-effort to `<url>/api/dev/activity`, bounded by EMIT_TIMEOUT_MS.
297
+ *
298
+ * Returns `{ sent, event?, report? }` so callers/tests can assert what would be
299
+ * emitted without any network. `fetchImpl` and `bridge` are injectable for tests.
300
+ *
301
+ * @param {{ action: string, outcome: object, actor?: object, scope?: object,
302
+ * payload?: object, source?: string, env?: NodeJS.ProcessEnv,
303
+ * fetchImpl?: typeof fetch, bridge?: {url:string,token:string}|null }} input
304
+ * @returns {Promise<{sent:boolean, event?:object, report?:object}>}
305
+ */
306
+ export async function emitActivity({
307
+ action,
308
+ outcome,
309
+ actor,
310
+ scope,
311
+ payload,
312
+ source = "cli",
313
+ env = process.env,
314
+ fetchImpl,
315
+ bridge,
316
+ } = {}) {
317
+ try {
318
+ // Kill switch (D8): telemetry off ⇒ true no-op (no build/redaction/network),
319
+ // fail-open — the command is unaffected.
320
+ if (isActivityDisabled(env)) return { sent: false, disabled: true };
321
+ const resolvedBridge = bridge !== undefined ? bridge : resolveActivityBridge(env);
322
+ // Build the redacted event even when we won't send it — so a caller/test can
323
+ // inspect the exact shape, and so redaction always runs on the emit path.
324
+ const { event, report } = createActivityEvent({
325
+ action,
326
+ actor: actor ?? resolveActor(env),
327
+ source,
328
+ outcome,
329
+ scope: resolveScope(env, scope ?? {}),
330
+ payload,
331
+ });
332
+ if (!resolvedBridge) return { sent: false, event, report };
333
+
334
+ const doFetch = fetchImpl || globalThis.fetch;
335
+ if (typeof doFetch !== "function") return { sent: false, event, report };
336
+
337
+ const controller = new AbortController();
338
+ const timer = setTimeout(() => controller.abort(), EMIT_TIMEOUT_MS);
339
+ if (typeof timer.unref === "function") timer.unref();
340
+ try {
341
+ await doFetch(`${String(resolvedBridge.url).replace(/\/+$/, "")}/api/dev/activity`, {
342
+ method: "POST",
343
+ headers: {
344
+ "content-type": "application/json",
345
+ authorization: `Bearer ${resolvedBridge.token}`,
346
+ },
347
+ // `event: "activity"` tags the stream for the bridge/D4 ingest to route,
348
+ // alongside the D0 envelope. Best-effort — an older bridge that doesn't
349
+ // recognize it simply ignores the post.
350
+ body: JSON.stringify({ event: "activity", ...event }),
351
+ signal: controller.signal,
352
+ });
353
+ } catch {
354
+ /* best-effort — a failed/offline/aborted post never disrupts the command */
355
+ } finally {
356
+ clearTimeout(timer);
357
+ }
358
+ return { sent: true, event, report };
359
+ } catch {
360
+ // Absolutely never throw into a command's control flow.
361
+ return { sent: false };
362
+ }
363
+ }
364
+
365
+ /**
366
+ * Cap + surface a bit of rendered output for a command-result event. The full raw
367
+ * stdout is NEVER stored — this caps to MAX_VALUE_LEN and hands the string to the
368
+ * redaction mirror via payload.rendered. NB the `cli.command.*` actions carry an
369
+ * EMPTY renderedAllow in the D0 catalog, so this string is DROPPED at redaction by
370
+ * design (the safe default for a high-volume action) — running it through the
371
+ * mirror is the belt-and-suspenders the contract prescribes, and keeps the emit
372
+ * path honest if the allowlist ever opens. Pure.
373
+ */
374
+ export function capRendered(text) {
375
+ const s = String(text ?? "").trim();
376
+ if (!s) return undefined;
377
+ return s.slice(0, MAX_VALUE_LEN);
378
+ }
@@ -0,0 +1,137 @@
1
+ /**
2
+ * The "active candidate" pointer — which open candidate PR a plain `tot submit`
3
+ * updates, per forge repo.
4
+ *
5
+ * `tot submit` is idempotent on a STABLE changeId (`deriveChangeId`) so a re-submit
6
+ * updates the same PR by default — the common case needs NO state and writes
7
+ * nothing here (backward-compatible with the stateless original). This file only
8
+ * records a DIVERGENCE from that stable default:
9
+ *
10
+ * - `tot submit --new` forks a fresh candidate and remembers it here, so the
11
+ * NEXT plain `tot submit` keeps updating the NEW PR (like pushing more commits
12
+ * to a `gh pr` branch), not the old one; and
13
+ * - a terminal-roll (the active candidate was merged/closed) records the fresh
14
+ * candidate it rolled to, so you're never wedged submitting to a dead PR.
15
+ *
16
+ * ONE file, `~/.tot/candidates.json`, a map keyed by `<mcpUrl>::<repo>` on the
17
+ * DEFAULT branch and `<mcpUrl>::<repo>::<branch>` on any other (u4 — branch-bound
18
+ * candidates): a different MCP, repo, OR non-default git branch is a different
19
+ * candidate namespace, so a feature branch gets its OWN candidate PR instead of
20
+ * fighting main's over the same handle. The default branch deliberately keeps the
21
+ * OLD branch-less key so existing devs' state is byte-identical (zero migration),
22
+ * and a branch-scoped read that misses FALLS BACK to that old key so state written
23
+ * before the rekey (or by the default branch) is never orphaned. Same atomic-write
24
+ * discipline as last-tenant.mjs (0600 in a 0700 dir, write-tmp-then-rename).
25
+ * Dependency-free (node:fs/os/path). `TOT_HOME` overrides home (tests).
26
+ */
27
+ import {
28
+ readFileSync, writeFileSync, mkdirSync, renameSync, chmodSync,
29
+ } from "node:fs";
30
+ import { homedir } from "node:os";
31
+ import { join, dirname } from "node:path";
32
+ import { randomBytes } from "node:crypto";
33
+
34
+ /** Absolute path to the active-candidate map for this machine. */
35
+ export function defaultCandidateStatePath(env = process.env) {
36
+ const home = env.TOT_HOME || homedir();
37
+ return join(home, ".tot", "candidates.json");
38
+ }
39
+
40
+ /**
41
+ * Branch names that are treated as the repo's DEFAULT — their candidates keep the
42
+ * OLD branch-less key (zero migration). A null/empty/detached ("HEAD") branch is
43
+ * treated as default too, so an environment where the branch can't be resolved
44
+ * degrades to exactly today's behavior rather than minting a spurious namespace.
45
+ */
46
+ export const DEFAULT_BRANCHES = new Set(["main", "master"]);
47
+
48
+ /** Whether `branch` should use the OLD branch-less candidate key. Pure. */
49
+ export function isDefaultBranch(branch) {
50
+ return !branch || branch === "HEAD" || DEFAULT_BRANCHES.has(branch);
51
+ }
52
+
53
+ /** The legacy (branch-less) namespace key — today's exact `<mcpUrl>::<repo>`. */
54
+ function legacyStateKey(mcpUrl, repo) {
55
+ return `${mcpUrl}::${repo}`;
56
+ }
57
+
58
+ /**
59
+ * Namespace key for one (MCP, repo, branch) candidate pointer. The DEFAULT branch
60
+ * keeps the legacy `<mcpUrl>::<repo>` key byte-for-byte (zero migration); any other
61
+ * branch gets its own `<mcpUrl>::<repo>::<branch>` namespace. Pure.
62
+ */
63
+ function stateKey(mcpUrl, repo, branch) {
64
+ return isDefaultBranch(branch) ? legacyStateKey(mcpUrl, repo) : `${mcpUrl}::${repo}::${branch}`;
65
+ }
66
+
67
+ /** Extract a usable changeId from a stored record, or null. Pure. */
68
+ function recordChangeId(rec) {
69
+ return rec && typeof rec.changeId === "string" && rec.changeId ? rec.changeId : null;
70
+ }
71
+
72
+ function readMap(filePath) {
73
+ try {
74
+ const parsed = JSON.parse(readFileSync(filePath, "utf8"));
75
+ return parsed && typeof parsed === "object" ? parsed : {};
76
+ } catch {
77
+ return {};
78
+ }
79
+ }
80
+
81
+ function writeMap(filePath, map) {
82
+ mkdirSync(dirname(filePath), { recursive: true, mode: 0o700 });
83
+ const tmp = `${filePath}.tmp`;
84
+ writeFileSync(tmp, `${JSON.stringify(map, null, 2)}\n`, { mode: 0o600 });
85
+ renameSync(tmp, filePath);
86
+ chmodSync(filePath, 0o600);
87
+ }
88
+
89
+ /**
90
+ * The remembered active changeId for `(mcpUrl, repo, branch)`, or null when there
91
+ * isn't one (absent/unreadable/malformed) — a miss means "use the stable default".
92
+ * On a non-default branch whose branch-scoped key misses, FALLS BACK to the legacy
93
+ * branch-less key so state written before the rekey (or by the default branch)
94
+ * isn't orphaned. Never throws.
95
+ */
96
+ export function readActiveChangeId(filePath, { mcpUrl, repo, branch }) {
97
+ const map = readMap(filePath);
98
+ const primary = recordChangeId(map[stateKey(mcpUrl, repo, branch)]);
99
+ if (primary) return primary;
100
+ // Legacy fallback: a branch-scoped miss reads the old branch-less key (a no-op
101
+ // when we're already on the default branch, which IS the legacy key).
102
+ if (!isDefaultBranch(branch)) return recordChangeId(map[legacyStateKey(mcpUrl, repo)]);
103
+ return null;
104
+ }
105
+
106
+ /** Remember `changeId` as the active candidate for `(mcpUrl, repo, branch)`, atomically. */
107
+ export function writeActiveChangeId(filePath, { mcpUrl, repo, branch, changeId }) {
108
+ const map = readMap(filePath);
109
+ map[stateKey(mcpUrl, repo, branch)] = { changeId, updatedAt: Date.now() };
110
+ writeMap(filePath, map);
111
+ }
112
+
113
+ /** Forget the active candidate for `(mcpUrl, repo, branch)` (e.g. after closing it). */
114
+ export function clearActiveChangeId(filePath, { mcpUrl, repo, branch }) {
115
+ const map = readMap(filePath);
116
+ const key = stateKey(mcpUrl, repo, branch);
117
+ if (key in map) {
118
+ delete map[key];
119
+ writeMap(filePath, map);
120
+ }
121
+ }
122
+
123
+ /**
124
+ * A fresh candidate handle forked from a stable base — `<baseId>-<suffix>`, still
125
+ * matching candidate_open's `[a-z0-9._-]` handle grammar. The suffix defaults to
126
+ * 6 random hex chars (so two `--new` runs never collide); tests inject a fixed
127
+ * suffix. Pure given `suffix`.
128
+ */
129
+ export function mintFreshChangeId(baseId, suffix = randomBytes(3).toString("hex")) {
130
+ const safe = String(suffix).toLowerCase().replace(/[^a-z0-9]/g, "").slice(0, 12) || "new";
131
+ return `${baseId}-${safe}`;
132
+ }
133
+
134
+ /** Whether a forge candidate state means "no open PR to update" (rolled past). */
135
+ export function isTerminalCandidateState(state) {
136
+ return state === "merged" || state === "closed";
137
+ }