@h-rig/cli 0.0.6-alpha.7 → 0.0.6-alpha.71

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.
Files changed (53) hide show
  1. package/README.md +1 -1
  2. package/dist/bin/rig.js +4507 -1506
  3. package/dist/src/commands/_async-ui.js +152 -0
  4. package/dist/src/commands/_authority-runs.js +2 -3
  5. package/dist/src/commands/_cli-format.js +369 -0
  6. package/dist/src/commands/_connection-state.js +30 -11
  7. package/dist/src/commands/_doctor-checks.js +177 -43
  8. package/dist/src/commands/_help-catalog.js +485 -0
  9. package/dist/src/commands/_json-output.js +56 -0
  10. package/dist/src/commands/_operator-surface.js +220 -0
  11. package/dist/src/commands/_operator-view.js +595 -72
  12. package/dist/src/commands/_parsers.js +18 -11
  13. package/dist/src/commands/_pi-frontend.js +411 -0
  14. package/dist/src/commands/_pi-install.js +4 -3
  15. package/dist/src/commands/_policy.js +12 -5
  16. package/dist/src/commands/_preflight.js +187 -127
  17. package/dist/src/commands/_run-driver-helpers.js +75 -22
  18. package/dist/src/commands/_run-replay.js +142 -0
  19. package/dist/src/commands/_server-client.js +343 -60
  20. package/dist/src/commands/_snapshot-upload.js +160 -38
  21. package/dist/src/commands/_spinner.js +65 -0
  22. package/dist/src/commands/_task-picker.js +44 -16
  23. package/dist/src/commands/agent.js +39 -20
  24. package/dist/src/commands/browser.js +28 -21
  25. package/dist/src/commands/connect.js +146 -33
  26. package/dist/src/commands/dist.js +19 -12
  27. package/dist/src/commands/doctor.js +304 -44
  28. package/dist/src/commands/github.js +301 -52
  29. package/dist/src/commands/inbox.js +679 -72
  30. package/dist/src/commands/init.js +622 -118
  31. package/dist/src/commands/inspect.js +515 -32
  32. package/dist/src/commands/inspector.js +20 -13
  33. package/dist/src/commands/pi.js +177 -0
  34. package/dist/src/commands/plugin.js +95 -27
  35. package/dist/src/commands/profile-and-review.js +26 -19
  36. package/dist/src/commands/queue.js +32 -12
  37. package/dist/src/commands/remote.js +43 -36
  38. package/dist/src/commands/repo-git-harness.js +22 -15
  39. package/dist/src/commands/run.js +1162 -158
  40. package/dist/src/commands/server.js +373 -56
  41. package/dist/src/commands/setup.js +316 -62
  42. package/dist/src/commands/stats.js +1030 -0
  43. package/dist/src/commands/task-report-bug.js +29 -22
  44. package/dist/src/commands/task-run-driver.js +862 -129
  45. package/dist/src/commands/task.js +1423 -311
  46. package/dist/src/commands/test.js +15 -8
  47. package/dist/src/commands/workspace.js +18 -11
  48. package/dist/src/commands.js +4446 -1499
  49. package/dist/src/index.js +4502 -1504
  50. package/dist/src/launcher.js +77 -13
  51. package/dist/src/report-bug.js +3 -3
  52. package/dist/src/runner.js +16 -22
  53. package/package.json +10 -5
@@ -1,16 +1,23 @@
1
1
  // @bun
2
2
  // packages/cli/src/commands/inspect.ts
3
- import { existsSync, readFileSync } from "fs";
4
- import { resolve } from "path";
3
+ import { existsSync as existsSync3, readFileSync as readFileSync3 } from "fs";
4
+ import { resolve as resolve3 } from "path";
5
5
 
6
6
  // packages/cli/src/runner.ts
7
7
  import { EventBus } from "@rig/runtime/control-plane/runtime/events";
8
- import { CliError } from "@rig/runtime/control-plane/errors";
8
+ import { CliError as RuntimeCliError } from "@rig/runtime/control-plane/errors";
9
9
  import { evaluate, loadPolicy, resolveAction } from "@rig/runtime/control-plane/runtime/guard";
10
- import { PluginManager } from "@rig/runtime/control-plane/runtime/plugins";
11
- import { loadRuntimeContextFromEnv } from "@rig/runtime/control-plane/runtime/context";
12
10
  import { buildBinary } from "@rig/runtime/control-plane/runtime/isolation";
13
- import { CliError as CliError2 } from "@rig/runtime/control-plane/errors";
11
+
12
+ class CliError extends RuntimeCliError {
13
+ hint;
14
+ constructor(message, exitCode = 1, options = {}) {
15
+ super(message, exitCode);
16
+ if (options.hint?.trim()) {
17
+ this.hint = options.hint.trim();
18
+ }
19
+ }
20
+ }
14
21
  function takeOption(args, option) {
15
22
  const rest = [];
16
23
  let value;
@@ -19,7 +26,7 @@ function takeOption(args, option) {
19
26
  if (current === option) {
20
27
  const next = args[index + 1];
21
28
  if (!next || next.startsWith("-")) {
22
- throw new CliError(`Missing value for ${option}`);
29
+ throw new CliError(`Missing value for ${option}`, 1, { hint: `Provide a value after ${option}, e.g. \`${option} <value>\`.` });
23
30
  }
24
31
  value = next;
25
32
  index += 1;
@@ -55,31 +62,507 @@ import {
55
62
  import { changedFilesForTask } from "@rig/runtime/control-plane/native/task-ops";
56
63
  import { resolveHarnessPaths, resolveMonorepoRoot, runCapture } from "@rig/runtime/control-plane/native/utils";
57
64
  import { readTaskArtifactPreview } from "@rig/runtime/control-plane/native/workspace-ops";
65
+
66
+ // packages/cli/src/commands/_server-client.ts
67
+ import { existsSync as existsSync2, readFileSync as readFileSync2 } from "fs";
68
+ import { resolve as resolve2 } from "path";
69
+ import { ensureLocalRigServerConnection } from "@rig/runtime/local-server";
70
+
71
+ // packages/cli/src/commands/_connection-state.ts
72
+ import { existsSync, mkdirSync, readFileSync, writeFileSync } from "fs";
73
+ import { homedir } from "os";
74
+ import { dirname, resolve } from "path";
75
+ function resolveGlobalConnectionsPath(env = process.env) {
76
+ const explicit = env.RIG_CONNECTIONS_FILE?.trim();
77
+ if (explicit)
78
+ return resolve(explicit);
79
+ const stateDir = env.RIG_GLOBAL_STATE_DIR?.trim();
80
+ if (stateDir)
81
+ return resolve(stateDir, "connections.json");
82
+ return resolve(homedir(), ".rig", "connections.json");
83
+ }
84
+ function resolveRepoConnectionPath(projectRoot) {
85
+ return resolve(projectRoot, ".rig", "state", "connection.json");
86
+ }
87
+ function readJsonFile(path) {
88
+ if (!existsSync(path))
89
+ return null;
90
+ try {
91
+ return JSON.parse(readFileSync(path, "utf8"));
92
+ } catch (error) {
93
+ throw new CliError(`Invalid Rig connection state at ${path}: ${error instanceof Error ? error.message : String(error)}`, 1, { hint: "Fix or delete that file, then re-select a server with `rig server use <alias|local>`." });
94
+ }
95
+ }
96
+ function writeJsonFile(path, value) {
97
+ mkdirSync(dirname(path), { recursive: true });
98
+ writeFileSync(path, `${JSON.stringify(value, null, 2)}
99
+ `, "utf8");
100
+ }
101
+ function normalizeConnection(value) {
102
+ if (!value || typeof value !== "object" || Array.isArray(value))
103
+ return null;
104
+ const record = value;
105
+ if (record.kind === "local")
106
+ return { kind: "local", mode: "auto" };
107
+ if (record.kind === "remote" && typeof record.baseUrl === "string" && record.baseUrl.trim()) {
108
+ const baseUrl = record.baseUrl.trim().replace(/\/+$/, "");
109
+ return { kind: "remote", baseUrl };
110
+ }
111
+ return null;
112
+ }
113
+ function readGlobalConnections(options = {}) {
114
+ const path = resolveGlobalConnectionsPath(options.env ?? process.env);
115
+ const payload = readJsonFile(path);
116
+ if (!payload || typeof payload !== "object" || Array.isArray(payload)) {
117
+ return { connections: {} };
118
+ }
119
+ const rawConnections = payload.connections;
120
+ const connections = {};
121
+ if (rawConnections && typeof rawConnections === "object" && !Array.isArray(rawConnections)) {
122
+ for (const [alias, raw] of Object.entries(rawConnections)) {
123
+ const connection = normalizeConnection(raw);
124
+ if (connection)
125
+ connections[alias] = connection;
126
+ }
127
+ }
128
+ return { connections };
129
+ }
130
+ function readRepoConnection(projectRoot) {
131
+ const payload = readJsonFile(resolveRepoConnectionPath(projectRoot));
132
+ if (!payload || typeof payload !== "object" || Array.isArray(payload))
133
+ return null;
134
+ const record = payload;
135
+ const selected = typeof record.selected === "string" ? record.selected.trim() : "";
136
+ if (!selected)
137
+ return null;
138
+ return {
139
+ selected,
140
+ project: typeof record.project === "string" ? record.project : undefined,
141
+ linkedAt: typeof record.linkedAt === "string" ? record.linkedAt : undefined,
142
+ serverProjectRoot: typeof record.serverProjectRoot === "string" && record.serverProjectRoot.trim() ? record.serverProjectRoot.trim() : undefined
143
+ };
144
+ }
145
+ function writeRepoConnection(projectRoot, state) {
146
+ writeJsonFile(resolveRepoConnectionPath(projectRoot), state);
147
+ }
148
+ function resolveSelectedConnection(projectRoot, options = {}) {
149
+ const repo = readRepoConnection(projectRoot);
150
+ if (!repo)
151
+ return null;
152
+ if (repo.selected === "local")
153
+ return { alias: "local", connection: { kind: "local", mode: "auto" }, serverProjectRoot: repo.serverProjectRoot };
154
+ const global = readGlobalConnections(options);
155
+ const connection = global.connections[repo.selected];
156
+ if (!connection) {
157
+ throw new CliError(`Selected Rig server "${repo.selected}" was not found. Run \`rig server list\` or \`rig server use local\`.`, 1);
158
+ }
159
+ return { alias: repo.selected, connection, serverProjectRoot: repo.serverProjectRoot };
160
+ }
161
+ function writeRepoServerProjectRoot(projectRoot, serverProjectRoot) {
162
+ const repo = readRepoConnection(projectRoot);
163
+ if (!repo)
164
+ return;
165
+ writeRepoConnection(projectRoot, { ...repo, serverProjectRoot });
166
+ }
167
+
168
+ // packages/cli/src/commands/_server-client.ts
169
+ var scopedGitHubBearerTokens = new Map;
170
+ var serverPhaseListener = null;
171
+ function setServerPhaseListener(listener) {
172
+ const previous = serverPhaseListener;
173
+ serverPhaseListener = listener;
174
+ return previous;
175
+ }
176
+ function reportServerPhase(label) {
177
+ serverPhaseListener?.(label);
178
+ }
179
+ function cleanToken(value) {
180
+ const trimmed = value?.trim();
181
+ return trimmed ? trimmed : null;
182
+ }
183
+ function readPrivateRemoteSessionToken(projectRoot) {
184
+ const path = resolve2(projectRoot, ".rig", "state", "github-auth.json");
185
+ if (!existsSync2(path))
186
+ return null;
187
+ try {
188
+ const parsed = JSON.parse(readFileSync2(path, "utf8"));
189
+ return cleanToken(typeof parsed.apiSessionToken === "string" ? parsed.apiSessionToken : typeof parsed.sessionToken === "string" ? parsed.sessionToken : undefined);
190
+ } catch {
191
+ return null;
192
+ }
193
+ }
194
+ function readGitHubBearerTokenForRemote(projectRoot) {
195
+ const scopedKey = resolve2(projectRoot);
196
+ if (scopedGitHubBearerTokens.has(scopedKey))
197
+ return scopedGitHubBearerTokens.get(scopedKey) ?? null;
198
+ const privateSession = readPrivateRemoteSessionToken(projectRoot);
199
+ if (privateSession)
200
+ return privateSession;
201
+ return cleanToken(process.env.RIG_SERVER_AUTH_TOKEN) ?? cleanToken(process.env.RIG_REMOTE_AUTH_TOKEN);
202
+ }
203
+ function readStoredGitHubAuthToken(projectRoot) {
204
+ const path = resolve2(projectRoot, ".rig", "state", "github-auth.json");
205
+ if (!existsSync2(path))
206
+ return null;
207
+ try {
208
+ const parsed = JSON.parse(readFileSync2(path, "utf8"));
209
+ return cleanToken(typeof parsed.token === "string" ? parsed.token : undefined);
210
+ } catch {
211
+ return null;
212
+ }
213
+ }
214
+ function readLocalConnectionFallbackToken(projectRoot) {
215
+ return readGitHubBearerTokenForRemote(projectRoot) ?? cleanToken(process.env.RIG_GITHUB_TOKEN) ?? readStoredGitHubAuthToken(projectRoot);
216
+ }
217
+ async function ensureServerForCli(projectRoot) {
218
+ try {
219
+ const selected = resolveSelectedConnection(projectRoot);
220
+ if (selected?.connection.kind === "remote") {
221
+ reportServerPhase(`Connecting to ${selected.alias}\u2026`);
222
+ const authToken = readGitHubBearerTokenForRemote(projectRoot);
223
+ const serverProjectRoot = selected.serverProjectRoot ?? await backfillRemoteServerProjectRoot(projectRoot, selected.connection.baseUrl, authToken);
224
+ return {
225
+ baseUrl: selected.connection.baseUrl,
226
+ authToken,
227
+ connectionKind: "remote",
228
+ serverProjectRoot
229
+ };
230
+ }
231
+ reportServerPhase("Starting local Rig server\u2026");
232
+ const connection = await ensureLocalRigServerConnection(projectRoot);
233
+ return {
234
+ baseUrl: connection.baseUrl,
235
+ authToken: connection.authToken ?? readLocalConnectionFallbackToken(projectRoot),
236
+ connectionKind: "local",
237
+ serverProjectRoot: resolve2(projectRoot)
238
+ };
239
+ } catch (error) {
240
+ if (error instanceof Error) {
241
+ throw new CliError(error.message, 1);
242
+ }
243
+ throw error;
244
+ }
245
+ }
246
+ async function backfillRemoteServerProjectRoot(projectRoot, baseUrl, authToken) {
247
+ const repo = readRepoConnection(projectRoot);
248
+ const slug = repo?.project?.trim();
249
+ if (!slug)
250
+ return null;
251
+ try {
252
+ const response = await fetch(`${baseUrl}/api/projects/${encodeURIComponent(slug)}`, {
253
+ headers: mergeHeaders(undefined, authToken)
254
+ });
255
+ if (!response.ok)
256
+ return null;
257
+ const payload = await response.json();
258
+ const project = payload.project && typeof payload.project === "object" && !Array.isArray(payload.project) ? payload.project : null;
259
+ const checkouts = Array.isArray(project?.checkouts) ? project.checkouts : [];
260
+ const latestCheckout = [...checkouts].reverse().find((entry) => Boolean(entry && typeof entry === "object" && !Array.isArray(entry) && typeof entry.path === "string"));
261
+ const path = typeof latestCheckout?.path === "string" && latestCheckout.path.trim() ? latestCheckout.path.trim() : null;
262
+ if (path)
263
+ writeRepoServerProjectRoot(projectRoot, path);
264
+ return path;
265
+ } catch {
266
+ return null;
267
+ }
268
+ }
269
+ function mergeHeaders(headers, authToken) {
270
+ const merged = new Headers(headers);
271
+ if (authToken) {
272
+ merged.set("authorization", `Bearer ${authToken}`);
273
+ }
274
+ return merged;
275
+ }
276
+ function diagnosticMessage(payload) {
277
+ if (!payload || typeof payload !== "object" || Array.isArray(payload))
278
+ return null;
279
+ const record = payload;
280
+ const diagnostics = Array.isArray(record.diagnostics) ? record.diagnostics : [];
281
+ const messages = diagnostics.flatMap((entry) => {
282
+ if (!entry || typeof entry !== "object" || Array.isArray(entry))
283
+ return [];
284
+ const diagnostic = entry;
285
+ const kind = typeof diagnostic.kind === "string" ? diagnostic.kind : "task-source";
286
+ const message = typeof diagnostic.message === "string" ? diagnostic.message : null;
287
+ return message ? [`${kind}: ${message}`] : [];
288
+ });
289
+ return messages.length > 0 ? messages.join("; ") : null;
290
+ }
291
+ var serverReachabilityCache = new Map;
292
+ async function probeServerReachability(baseUrl, authToken) {
293
+ try {
294
+ const response = await fetch(`${baseUrl.replace(/\/+$/, "")}/api/server/status`, {
295
+ headers: mergeHeaders(undefined, authToken),
296
+ signal: AbortSignal.timeout(1500)
297
+ });
298
+ return response.ok;
299
+ } catch {
300
+ return false;
301
+ }
302
+ }
303
+ function cachedServerReachability(projectRoot, baseUrl, authToken) {
304
+ const key = resolve2(projectRoot);
305
+ const cached = serverReachabilityCache.get(key);
306
+ if (cached)
307
+ return cached;
308
+ const probe = probeServerReachability(baseUrl, authToken);
309
+ serverReachabilityCache.set(key, probe);
310
+ return probe;
311
+ }
312
+ function describeSelectedServer(projectRoot, server) {
313
+ try {
314
+ const selected = resolveSelectedConnection(projectRoot);
315
+ if (selected) {
316
+ return {
317
+ alias: selected.alias,
318
+ target: selected.connection.kind === "remote" ? selected.connection.baseUrl : server.baseUrl
319
+ };
320
+ }
321
+ } catch {}
322
+ return { alias: server.connectionKind === "remote" ? "remote" : "local", target: server.baseUrl };
323
+ }
324
+ async function buildServerFailureContext(projectRoot, server) {
325
+ const { alias, target } = describeSelectedServer(projectRoot, server);
326
+ const reachable = await cachedServerReachability(projectRoot, server.baseUrl, server.authToken);
327
+ const reachability = reachable ? "server is reachable" : "server is unreachable";
328
+ return {
329
+ contextLine: `Currently connected to: ${alias} at ${target} (${reachability}).`,
330
+ hint: "Check the selected server with `rig server status`, or switch with `rig server use <alias|local>`."
331
+ };
332
+ }
333
+ async function requestServerJson(context, pathname, init = {}) {
334
+ const server = await ensureServerForCli(context.projectRoot);
335
+ const headers = mergeHeaders(init.headers, server.authToken);
336
+ if (server.serverProjectRoot)
337
+ headers.set("x-rig-project-root", server.serverProjectRoot);
338
+ reportServerPhase(`${(init.method ?? "GET").toUpperCase()} ${pathname.split("?")[0]}\u2026`);
339
+ let response;
340
+ try {
341
+ response = await fetch(`${server.baseUrl}${pathname}`, {
342
+ ...init,
343
+ headers
344
+ });
345
+ } catch (error) {
346
+ const failure = await buildServerFailureContext(context.projectRoot, server);
347
+ throw new CliError(`Rig server request failed: ${error instanceof Error ? error.message : String(error)}
348
+ ${failure.contextLine}`, 1, { hint: failure.hint });
349
+ }
350
+ const text = await response.text();
351
+ const payload = text.trim().length > 0 ? (() => {
352
+ try {
353
+ return JSON.parse(text);
354
+ } catch {
355
+ return null;
356
+ }
357
+ })() : null;
358
+ if (!response.ok) {
359
+ const diagnostics = diagnosticMessage(payload);
360
+ const detail = diagnostics ?? (text || response.statusText);
361
+ const failure = await buildServerFailureContext(context.projectRoot, server);
362
+ throw new CliError(`Rig server request failed (${response.status}): ${detail}
363
+ ${failure.contextLine}`, 1, { hint: failure.hint });
364
+ }
365
+ return payload;
366
+ }
367
+ async function listRunsViaServer(context, options = {}) {
368
+ const url = new URL("http://rig.local/api/runs");
369
+ if (options.limit !== undefined)
370
+ url.searchParams.set("limit", String(options.limit));
371
+ const payload = await requestServerJson(context, `${url.pathname}${url.search}`);
372
+ const runs = Array.isArray(payload) ? payload : payload && typeof payload === "object" && !Array.isArray(payload) && Array.isArray(payload.runs) ? payload.runs : [];
373
+ return runs.filter((entry) => Boolean(entry && typeof entry === "object" && !Array.isArray(entry)));
374
+ }
375
+ async function getRunLogsViaServer(context, runId, options = {}) {
376
+ const url = new URL(`http://rig.local/api/runs/${encodeURIComponent(runId)}/logs`);
377
+ if (options.limit !== undefined)
378
+ url.searchParams.set("limit", String(options.limit));
379
+ if (options.cursor)
380
+ url.searchParams.set("cursor", options.cursor);
381
+ const payload = await requestServerJson(context, `${url.pathname}${url.search}`);
382
+ return payload && typeof payload === "object" && !Array.isArray(payload) ? payload : { entries: [] };
383
+ }
384
+ var RESUMABLE_RUN_STATUSES = new Set([
385
+ "created",
386
+ "preparing",
387
+ "running",
388
+ "validating",
389
+ "reviewing",
390
+ "stopped",
391
+ "failed",
392
+ "needs-attention",
393
+ "needs_attention"
394
+ ]);
395
+
396
+ // packages/cli/src/commands/_async-ui.ts
397
+ import pc from "picocolors";
398
+
399
+ // packages/cli/src/commands/_spinner.ts
400
+ var SPINNER_FRAMES = ["\u280B", "\u2819", "\u2839", "\u2838", "\u283C", "\u2834", "\u2826", "\u2827", "\u2807", "\u280F"];
401
+ function createTtySpinner(input) {
402
+ const output = input.output ?? process.stdout;
403
+ const isTty = output.isTTY === true;
404
+ const frames = input.frames && input.frames.length > 0 ? input.frames : SPINNER_FRAMES;
405
+ let label = input.label;
406
+ let frame = 0;
407
+ let paused = false;
408
+ let stopped = false;
409
+ let lastPrintedLabel = "";
410
+ const render = () => {
411
+ if (stopped || paused)
412
+ return;
413
+ if (!isTty) {
414
+ if (label !== lastPrintedLabel) {
415
+ output.write(`${label}
416
+ `);
417
+ lastPrintedLabel = label;
418
+ }
419
+ return;
420
+ }
421
+ frame = (frame + 1) % frames.length;
422
+ const glyph = frames[frame] ?? frames[0] ?? "";
423
+ output.write(`\r\x1B[2K${input.styleFrame ? input.styleFrame(glyph) : glyph} ${label}`);
424
+ };
425
+ const clearLine = () => {
426
+ if (isTty)
427
+ output.write("\r\x1B[2K");
428
+ };
429
+ render();
430
+ const timer = isTty ? setInterval(render, input.intervalMs ?? 120) : null;
431
+ return {
432
+ setLabel(next) {
433
+ label = next;
434
+ render();
435
+ },
436
+ pause() {
437
+ paused = true;
438
+ clearLine();
439
+ },
440
+ resume() {
441
+ if (stopped)
442
+ return;
443
+ paused = false;
444
+ render();
445
+ },
446
+ stop(finalLine) {
447
+ if (stopped)
448
+ return;
449
+ stopped = true;
450
+ if (timer)
451
+ clearInterval(timer);
452
+ clearLine();
453
+ if (finalLine)
454
+ output.write(`${finalLine}
455
+ `);
456
+ }
457
+ };
458
+ }
459
+
460
+ // packages/cli/src/commands/_async-ui.ts
461
+ var CLACK_SPINNER_FRAMES = ["\u25D2", "\u25D0", "\u25D3", "\u25D1"];
462
+ var DONE_SYMBOL = pc.green("\u25C7");
463
+ var FAIL_SYMBOL = pc.red("\u25A0");
464
+ var activeUpdate = null;
465
+ async function withSpinner(label, work, options = {}) {
466
+ if (options.outputMode === "json") {
467
+ return work(() => {});
468
+ }
469
+ if (activeUpdate) {
470
+ const outer = activeUpdate;
471
+ outer(label);
472
+ return work(outer);
473
+ }
474
+ const output = options.output ?? process.stderr;
475
+ const isTty = output.isTTY === true;
476
+ let lastLabel = label;
477
+ if (!isTty) {
478
+ output.write(`${label}
479
+ `);
480
+ const update2 = (next) => {
481
+ lastLabel = next;
482
+ };
483
+ activeUpdate = update2;
484
+ const previousListener2 = setServerPhaseListener(update2);
485
+ try {
486
+ return await work(update2);
487
+ } finally {
488
+ activeUpdate = null;
489
+ setServerPhaseListener(previousListener2);
490
+ }
491
+ }
492
+ const spinner = createTtySpinner({
493
+ label,
494
+ output,
495
+ frames: CLACK_SPINNER_FRAMES,
496
+ styleFrame: (frame) => pc.magenta(frame)
497
+ });
498
+ const update = (next) => {
499
+ lastLabel = next;
500
+ spinner.setLabel(next);
501
+ };
502
+ activeUpdate = update;
503
+ const previousListener = setServerPhaseListener(update);
504
+ try {
505
+ const result = await work(update);
506
+ spinner.stop(options.doneLabel ? `${DONE_SYMBOL} ${options.doneLabel}` : undefined);
507
+ return result;
508
+ } catch (error) {
509
+ spinner.stop(`${FAIL_SYMBOL} ${lastLabel}`);
510
+ throw error;
511
+ } finally {
512
+ activeUpdate = null;
513
+ setServerPhaseListener(previousListener);
514
+ }
515
+ }
516
+
517
+ // packages/cli/src/commands/inspect.ts
58
518
  async function executeInspect(context, args) {
59
519
  const [command = "failures", ...rest] = args;
60
520
  switch (command) {
61
521
  case "logs": {
62
522
  const { value: task, rest: remaining } = takeOption(rest, "--task");
63
- requireNoExtraArgs(remaining, "bun run rig inspect logs --task <beads-id>");
64
- const requiredTask = requireTask(task, "bun run rig inspect logs --task <beads-id>");
523
+ requireNoExtraArgs(remaining, "rig inspect logs --task <task-id>");
524
+ const requiredTask = requireTask(task, "rig inspect logs --task <task-id>");
65
525
  const latestRun = listAuthorityRuns(context.projectRoot).map((entry) => readAuthorityRun(context.projectRoot, entry.runId)).filter((run) => Boolean(run)).filter((run) => run.taskId === requiredTask).sort((left, right) => String(right.updatedAt ?? "").localeCompare(String(left.updatedAt ?? "")))[0];
66
526
  if (!latestRun) {
67
- throw new CliError2(`No runs found for ${requiredTask}.`);
527
+ const fallback = await withSpinner(`Finding runs for ${requiredTask} on the server\u2026`, async (update) => {
528
+ const serverRuns = await listRunsViaServer(context, { limit: 200 }).catch(() => []);
529
+ const serverRun = serverRuns.filter((run) => String(run.taskId ?? "") === requiredTask).sort((left, right) => String(right.updatedAt ?? "").localeCompare(String(left.updatedAt ?? "")))[0];
530
+ if (!serverRun || typeof serverRun.runId !== "string")
531
+ return null;
532
+ update(`Reading logs for run ${serverRun.runId}\u2026`);
533
+ const page = await getRunLogsViaServer(context, serverRun.runId, { limit: 500 });
534
+ return { runId: serverRun.runId, page };
535
+ }, { outputMode: context.outputMode });
536
+ if (!fallback) {
537
+ throw new CliError(`No runs found for ${requiredTask} (local or on the selected server).`, 1, { hint: "Start one with `rig task run --task <id>`, or check `rig run list`." });
538
+ }
539
+ const entries = Array.isArray(fallback.page.entries) ? fallback.page.entries : [];
540
+ if (context.outputMode === "text") {
541
+ for (const entry of entries) {
542
+ const record = entry && typeof entry === "object" ? entry : {};
543
+ const title = String(record.title ?? "");
544
+ const detail = String(record.detail ?? "");
545
+ console.log([title, detail].filter(Boolean).join(" \u2014 "));
546
+ }
547
+ if (entries.length === 0)
548
+ console.log(`(no log entries for run ${fallback.runId})`);
549
+ }
550
+ return { ok: true, group: "inspect", command, details: { task: requiredTask, runId: fallback.runId, source: "server", entries } };
68
551
  }
69
- const logsPath = resolve(resolveAuthorityRunDir(context.projectRoot, latestRun.runId), "logs.jsonl");
70
- if (!existsSync(logsPath)) {
71
- throw new CliError2(`No logs found for run ${latestRun.runId}.`);
552
+ const logsPath = resolve3(resolveAuthorityRunDir(context.projectRoot, latestRun.runId), "logs.jsonl");
553
+ if (!existsSync3(logsPath)) {
554
+ throw new CliError(`No logs found for run ${latestRun.runId}.`, 1, { hint: `Try \`rig run show ${latestRun.runId}\` or \`rig run replay ${latestRun.runId}\`.` });
72
555
  }
73
556
  await context.runCommand(["cat", logsPath]);
74
557
  return { ok: true, group: "inspect", command, details: { task: requiredTask, runId: latestRun.runId } };
75
558
  }
76
559
  case "artifacts": {
77
560
  const { value: task, rest: remaining } = takeOption(rest, "--task");
78
- requireNoExtraArgs(remaining, "bun run rig inspect artifacts --task <beads-id>");
79
- const requiredTask = requireTask(task, "bun run rig inspect artifacts --task <beads-id>");
80
- const artifactRoot = resolveTaskArtifactDirs(context.projectRoot, requiredTask).find((path) => existsSync(path));
561
+ requireNoExtraArgs(remaining, "rig inspect artifacts --task <task-id>");
562
+ const requiredTask = requireTask(task, "rig inspect artifacts --task <task-id>");
563
+ const artifactRoot = resolveTaskArtifactDirs(context.projectRoot, requiredTask).find((path) => existsSync3(path));
81
564
  if (!artifactRoot) {
82
- throw new CliError2(`No artifacts found for ${requiredTask}.`);
565
+ throw new CliError(`No artifacts found for ${requiredTask}.`, 1, { hint: "Artifacts appear after a run completes; check `rig run list` for run state." });
83
566
  }
84
567
  await context.runCommand(["ls", "-la", artifactRoot]);
85
568
  return { ok: true, group: "inspect", command, details: { task: requiredTask } };
@@ -90,10 +573,10 @@ async function executeInspect(context, args) {
90
573
  previewPending = task.rest;
91
574
  const file = takeOption(previewPending, "--file");
92
575
  previewPending = file.rest;
93
- requireNoExtraArgs(previewPending, "bun run rig inspect artifact --task <beads-id> --file <name>");
94
- const requiredTask = requireTask(task.value, "bun run rig inspect artifact --task <beads-id> --file <name>");
576
+ requireNoExtraArgs(previewPending, "rig inspect artifact --task <task-id> --file <name>");
577
+ const requiredTask = requireTask(task.value, "rig inspect artifact --task <task-id> --file <name>");
95
578
  if (!file.value) {
96
- throw new CliError2("Missing --file for rig inspect artifact.");
579
+ throw new CliError("Missing --file for rig inspect artifact.", 1, { hint: "List artifact files first: `rig inspect artifacts --task <id>`, then pass one with --file." });
97
580
  }
98
581
  const preview = readTaskArtifactPreview(context.projectRoot, requiredTask, file.value);
99
582
  if (context.outputMode === "text") {
@@ -120,9 +603,9 @@ async function executeInspect(context, args) {
120
603
  }
121
604
  case "diff": {
122
605
  const { value: task, rest: remaining } = takeOption(rest, "--task");
123
- requireNoExtraArgs(remaining, "bun run rig inspect diff [--task <beads-id>]");
606
+ requireNoExtraArgs(remaining, "rig inspect diff [--task <task-id>]");
124
607
  if (task) {
125
- const files = changedFilesForTask(context.projectRoot, task, false);
608
+ const files = await withSpinner(`Computing changed files for ${task}\u2026`, async () => changedFilesForTask(context.projectRoot, task, false), { outputMode: context.outputMode });
126
609
  for (const file of files) {
127
610
  console.log(file);
128
611
  }
@@ -132,33 +615,33 @@ async function executeInspect(context, args) {
132
615
  return { ok: true, group: "inspect", command, details: { task: task || null } };
133
616
  }
134
617
  case "failures": {
135
- requireNoExtraArgs(rest, "bun run rig inspect failures");
618
+ requireNoExtraArgs(rest, "rig inspect failures");
136
619
  const failed = resolveHarnessPaths(context.projectRoot).failedApproachesPath;
137
- if (!existsSync(failed)) {
620
+ if (!existsSync3(failed)) {
138
621
  console.log("No failures recorded.");
139
622
  } else {
140
- process.stdout.write(readFileSync(failed, "utf-8"));
623
+ process.stdout.write(readFileSync3(failed, "utf-8"));
141
624
  }
142
625
  return { ok: true, group: "inspect", command };
143
626
  }
144
627
  case "graph":
145
- requireNoExtraArgs(rest, "bun run rig inspect graph");
628
+ requireNoExtraArgs(rest, "rig inspect graph");
146
629
  {
147
630
  const monorepoRoot = resolveMonorepoRoot(context.projectRoot);
148
631
  const result = runCapture(["br", "--no-db", "list", "--pretty"], monorepoRoot);
149
632
  if (result.exitCode !== 0) {
150
- throw new CliError2(result.stderr || result.stdout || "Failed to inspect graph");
633
+ throw new CliError(result.stderr || result.stdout || "Failed to inspect graph");
151
634
  }
152
635
  process.stdout.write(result.stdout);
153
636
  }
154
637
  return { ok: true, group: "inspect", command };
155
638
  case "audit": {
156
- requireNoExtraArgs(rest, "bun run rig inspect audit");
157
- const auditPath = resolve(resolveHarnessPaths(context.projectRoot).logsDir, "audit.jsonl");
158
- if (!existsSync(auditPath)) {
639
+ requireNoExtraArgs(rest, "rig inspect audit");
640
+ const auditPath = resolve3(resolveHarnessPaths(context.projectRoot).logsDir, "audit.jsonl");
641
+ if (!existsSync3(auditPath)) {
159
642
  console.log("No audit log found.");
160
643
  } else {
161
- const lines = readFileSync(auditPath, "utf-8").split(/\r?\n/).filter(Boolean).slice(-20);
644
+ const lines = readFileSync3(auditPath, "utf-8").split(/\r?\n/).filter(Boolean).slice(-20);
162
645
  for (const line of lines) {
163
646
  console.log(line);
164
647
  }
@@ -166,7 +649,7 @@ async function executeInspect(context, args) {
166
649
  return { ok: true, group: "inspect", command };
167
650
  }
168
651
  default:
169
- throw new CliError2(`Unknown inspect command: ${command}`);
652
+ throw new CliError(`Unknown inspect command: ${command}`, 1, { hint: "Run `rig inspect --help` to list inspect commands." });
170
653
  }
171
654
  }
172
655
  export {