@h-rig/cli 0.0.6-alpha.0

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 (47) hide show
  1. package/README.md +30 -0
  2. package/dist/bin/build-rig-binaries.js +107 -0
  3. package/dist/bin/rig.js +9330 -0
  4. package/dist/src/commands/_authority-runs.js +110 -0
  5. package/dist/src/commands/_connection-state.js +123 -0
  6. package/dist/src/commands/_doctor-checks.js +501 -0
  7. package/dist/src/commands/_operator-view.js +322 -0
  8. package/dist/src/commands/_parsers.js +107 -0
  9. package/dist/src/commands/_paths.js +50 -0
  10. package/dist/src/commands/_pi-install.js +184 -0
  11. package/dist/src/commands/_policy.js +79 -0
  12. package/dist/src/commands/_preflight.js +460 -0
  13. package/dist/src/commands/_probes.js +13 -0
  14. package/dist/src/commands/_run-driver-helpers.js +289 -0
  15. package/dist/src/commands/_server-client.js +364 -0
  16. package/dist/src/commands/_snapshot-upload.js +313 -0
  17. package/dist/src/commands/_task-picker.js +48 -0
  18. package/dist/src/commands/agent.js +497 -0
  19. package/dist/src/commands/browser.js +890 -0
  20. package/dist/src/commands/connect.js +180 -0
  21. package/dist/src/commands/dist.js +402 -0
  22. package/dist/src/commands/doctor.js +511 -0
  23. package/dist/src/commands/github.js +276 -0
  24. package/dist/src/commands/inbox.js +160 -0
  25. package/dist/src/commands/init.js +1254 -0
  26. package/dist/src/commands/inspect.js +174 -0
  27. package/dist/src/commands/inspector.js +256 -0
  28. package/dist/src/commands/plugin.js +167 -0
  29. package/dist/src/commands/profile-and-review.js +178 -0
  30. package/dist/src/commands/queue.js +197 -0
  31. package/dist/src/commands/remote.js +507 -0
  32. package/dist/src/commands/repo-git-harness.js +221 -0
  33. package/dist/src/commands/run.js +753 -0
  34. package/dist/src/commands/server.js +368 -0
  35. package/dist/src/commands/setup.js +681 -0
  36. package/dist/src/commands/task-report-bug.js +1083 -0
  37. package/dist/src/commands/task-run-driver.js +1933 -0
  38. package/dist/src/commands/task.js +1325 -0
  39. package/dist/src/commands/test.js +39 -0
  40. package/dist/src/commands/workspace.js +123 -0
  41. package/dist/src/commands.js +9012 -0
  42. package/dist/src/index.js +9348 -0
  43. package/dist/src/launcher.js +131 -0
  44. package/dist/src/report-bug.js +260 -0
  45. package/dist/src/runner.js +272 -0
  46. package/dist/src/withMutedConsole.js +42 -0
  47. package/package.json +31 -0
@@ -0,0 +1,110 @@
1
+ // @bun
2
+ // packages/cli/src/commands/_authority-runs.ts
3
+ import { existsSync } from "fs";
4
+ import { resolve } from "path";
5
+ import {
6
+ readAuthorityRun,
7
+ readJsonlFile,
8
+ resolveAuthorityRunDir,
9
+ writeJsonFile
10
+ } from "@rig/runtime/control-plane/authority-files";
11
+
12
+ // packages/cli/src/commands/_paths.ts
13
+ import { resolveMonorepoRoot } from "@rig/runtime/control-plane/native/utils";
14
+ function resolveControlPlaneMonorepoRoot(projectRoot) {
15
+ return resolveMonorepoRoot(projectRoot);
16
+ }
17
+
18
+ // packages/cli/src/commands/_authority-runs.ts
19
+ var RIG_WORKSPACE_ID = "rig-local-workspace";
20
+ function normalizeRuntimeAdapter(value) {
21
+ const normalized = value?.trim().toLowerCase();
22
+ if (!normalized) {
23
+ return "pi";
24
+ }
25
+ if (normalized === "codex" || normalized === "codex-cli" || normalized === "codex-app-server" || normalized === "gpt-codex") {
26
+ return "codex";
27
+ }
28
+ if (normalized === "pi" || normalized === "rig-pi" || normalized === "@rig/pi") {
29
+ return "pi";
30
+ }
31
+ return "claude-code";
32
+ }
33
+ function readLatestBeadRecord(projectRoot, taskId) {
34
+ const issuesPath = resolve(resolveControlPlaneMonorepoRoot(projectRoot), ".beads", "issues.jsonl");
35
+ if (!existsSync(issuesPath)) {
36
+ return null;
37
+ }
38
+ let latest = null;
39
+ for (const issue of readJsonlFile(issuesPath)) {
40
+ if (!issue || typeof issue !== "object") {
41
+ continue;
42
+ }
43
+ const record = issue;
44
+ if (record.id === taskId) {
45
+ latest = record;
46
+ }
47
+ }
48
+ return latest;
49
+ }
50
+ function resolveTaskTitleForAuthorityRun(projectRoot, taskId) {
51
+ try {
52
+ const record = readLatestBeadRecord(projectRoot, taskId);
53
+ const title = record && typeof record.title === "string" ? record.title.trim() : "";
54
+ if (title) {
55
+ return title;
56
+ }
57
+ } catch {}
58
+ return null;
59
+ }
60
+ function upsertAgentAuthorityRun(projectRoot, input) {
61
+ const current = readAuthorityRun(projectRoot, input.runId);
62
+ const existing = current;
63
+ const createdAt = existing?.createdAt ?? input.createdAt;
64
+ const runtimeMode = typeof existing?.runtimeMode === "string" ? existing.runtimeMode : "full-access";
65
+ const interactionMode = typeof existing?.interactionMode === "string" ? existing.interactionMode : "default";
66
+ const runMode = typeof existing?.runMode === "string" ? existing.runMode : "autonomous";
67
+ const runtimeAdapter = normalizeRuntimeAdapter(input.runtimeAdapter ?? existing?.runtimeAdapter ?? "claude-code");
68
+ const title = resolveTaskTitleForAuthorityRun(projectRoot, input.taskId) ?? input.taskId;
69
+ const next = {
70
+ runId: input.runId,
71
+ projectRoot,
72
+ workspaceId: existing?.workspaceId ?? RIG_WORKSPACE_ID,
73
+ taskId: input.taskId,
74
+ threadId: existing?.threadId ?? null,
75
+ mode: "local",
76
+ runtimeAdapter,
77
+ status: input.status,
78
+ createdAt,
79
+ startedAt: input.startedAt ?? existing?.startedAt ?? null,
80
+ completedAt: input.completedAt ?? existing?.completedAt ?? null,
81
+ endpointId: existing?.endpointId ?? null,
82
+ hostId: existing?.hostId ?? null,
83
+ worktreePath: input.worktreePath ?? existing?.worktreePath ?? null,
84
+ artifactRoot: input.artifactRoot ?? existing?.artifactRoot ?? null,
85
+ logRoot: input.logRoot ?? existing?.logRoot ?? null,
86
+ sessionPath: input.sessionPath ?? existing?.sessionPath ?? null,
87
+ sessionLogPath: input.sessionLogPath ?? existing?.sessionLogPath ?? null,
88
+ pid: input.pid ?? existing?.pid ?? null,
89
+ updatedAt: input.createdAt,
90
+ title,
91
+ model: typeof existing?.model === "string" ? existing.model : null,
92
+ runtimeMode,
93
+ interactionMode,
94
+ runMode,
95
+ initialPrompt: typeof existing?.initialPrompt === "string" ? existing.initialPrompt : null
96
+ };
97
+ if (input.errorText !== undefined) {
98
+ next.errorText = input.errorText;
99
+ } else if ("errorText" in next) {
100
+ delete next.errorText;
101
+ }
102
+ writeJsonFile(resolve(resolveAuthorityRunDir(projectRoot, input.runId), "run.json"), next);
103
+ return next;
104
+ }
105
+ export {
106
+ upsertAgentAuthorityRun,
107
+ readLatestBeadRecord,
108
+ normalizeRuntimeAdapter,
109
+ RIG_WORKSPACE_ID
110
+ };
@@ -0,0 +1,123 @@
1
+ // @bun
2
+ // packages/cli/src/commands/_connection-state.ts
3
+ import { existsSync, mkdirSync, readFileSync, writeFileSync } from "fs";
4
+ import { homedir } from "os";
5
+ import { dirname, resolve } from "path";
6
+
7
+ // packages/cli/src/runner.ts
8
+ import { EventBus } from "@rig/runtime/control-plane/runtime/events";
9
+ import { CliError } from "@rig/runtime/control-plane/errors";
10
+ import { evaluate, loadPolicy, resolveAction } from "@rig/runtime/control-plane/runtime/guard";
11
+ import { PluginManager } from "@rig/runtime/control-plane/runtime/plugins";
12
+ import { loadRuntimeContextFromEnv } from "@rig/runtime/control-plane/runtime/context";
13
+ import { buildBinary } from "@rig/runtime/control-plane/runtime/isolation";
14
+ import { CliError as CliError2 } from "@rig/runtime/control-plane/errors";
15
+
16
+ // packages/cli/src/commands/_connection-state.ts
17
+ function resolveGlobalConnectionsPath(env = process.env) {
18
+ const explicit = env.RIG_CONNECTIONS_FILE?.trim();
19
+ if (explicit)
20
+ return resolve(explicit);
21
+ const stateDir = env.RIG_GLOBAL_STATE_DIR?.trim();
22
+ if (stateDir)
23
+ return resolve(stateDir, "connections.json");
24
+ return resolve(homedir(), ".rig", "connections.json");
25
+ }
26
+ function resolveRepoConnectionPath(projectRoot) {
27
+ return resolve(projectRoot, ".rig", "state", "connection.json");
28
+ }
29
+ function readJsonFile(path) {
30
+ if (!existsSync(path))
31
+ return null;
32
+ try {
33
+ return JSON.parse(readFileSync(path, "utf8"));
34
+ } catch (error) {
35
+ throw new CliError2(`Invalid Rig connection state at ${path}: ${error instanceof Error ? error.message : String(error)}`, 1);
36
+ }
37
+ }
38
+ function writeJsonFile(path, value) {
39
+ mkdirSync(dirname(path), { recursive: true });
40
+ writeFileSync(path, `${JSON.stringify(value, null, 2)}
41
+ `, "utf8");
42
+ }
43
+ function normalizeConnection(value) {
44
+ if (!value || typeof value !== "object" || Array.isArray(value))
45
+ return null;
46
+ const record = value;
47
+ if (record.kind === "local")
48
+ return { kind: "local", mode: "auto" };
49
+ if (record.kind === "remote" && typeof record.baseUrl === "string" && record.baseUrl.trim()) {
50
+ const baseUrl = record.baseUrl.trim().replace(/\/+$/, "");
51
+ return { kind: "remote", baseUrl };
52
+ }
53
+ return null;
54
+ }
55
+ function readGlobalConnections(options = {}) {
56
+ const path = resolveGlobalConnectionsPath(options.env ?? process.env);
57
+ const payload = readJsonFile(path);
58
+ if (!payload || typeof payload !== "object" || Array.isArray(payload)) {
59
+ return { connections: {} };
60
+ }
61
+ const rawConnections = payload.connections;
62
+ const connections = {};
63
+ if (rawConnections && typeof rawConnections === "object" && !Array.isArray(rawConnections)) {
64
+ for (const [alias, raw] of Object.entries(rawConnections)) {
65
+ const connection = normalizeConnection(raw);
66
+ if (connection)
67
+ connections[alias] = connection;
68
+ }
69
+ }
70
+ return { connections };
71
+ }
72
+ function writeGlobalConnections(state, options = {}) {
73
+ writeJsonFile(resolveGlobalConnectionsPath(options.env ?? process.env), state);
74
+ }
75
+ function upsertGlobalConnection(alias, connection, options = {}) {
76
+ const cleanAlias = alias.trim();
77
+ if (!cleanAlias)
78
+ throw new CliError2("Connection alias is required.", 1);
79
+ const state = readGlobalConnections(options);
80
+ state.connections[cleanAlias] = connection;
81
+ writeGlobalConnections(state, options);
82
+ return state;
83
+ }
84
+ function readRepoConnection(projectRoot) {
85
+ const payload = readJsonFile(resolveRepoConnectionPath(projectRoot));
86
+ if (!payload || typeof payload !== "object" || Array.isArray(payload))
87
+ return null;
88
+ const record = payload;
89
+ const selected = typeof record.selected === "string" ? record.selected.trim() : "";
90
+ if (!selected)
91
+ return null;
92
+ return {
93
+ selected,
94
+ project: typeof record.project === "string" ? record.project : undefined,
95
+ linkedAt: typeof record.linkedAt === "string" ? record.linkedAt : undefined
96
+ };
97
+ }
98
+ function writeRepoConnection(projectRoot, state) {
99
+ writeJsonFile(resolveRepoConnectionPath(projectRoot), state);
100
+ }
101
+ function resolveSelectedConnection(projectRoot, options = {}) {
102
+ const repo = readRepoConnection(projectRoot);
103
+ if (!repo)
104
+ return null;
105
+ if (repo.selected === "local")
106
+ return { alias: "local", connection: { kind: "local", mode: "auto" } };
107
+ const global = readGlobalConnections(options);
108
+ const connection = global.connections[repo.selected];
109
+ if (!connection) {
110
+ throw new CliError2(`Selected Rig connection "${repo.selected}" was not found. Run \`rig connect list\` or \`rig connect use local\`.`, 1);
111
+ }
112
+ return { alias: repo.selected, connection };
113
+ }
114
+ export {
115
+ writeRepoConnection,
116
+ writeGlobalConnections,
117
+ upsertGlobalConnection,
118
+ resolveSelectedConnection,
119
+ resolveRepoConnectionPath,
120
+ resolveGlobalConnectionsPath,
121
+ readRepoConnection,
122
+ readGlobalConnections
123
+ };