@h-rig/cli 0.0.6-alpha.77 → 0.0.6-alpha.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/build-rig-binaries.d.ts +2 -0
- package/dist/bin/rig.d.ts +2 -0
- package/dist/bin/rig.js +10214 -9309
- package/dist/src/app/board.d.ts +23 -0
- package/dist/src/app/board.js +1786 -0
- package/dist/src/app/drone-ui.d.ts +37 -0
- package/dist/src/app/drone-ui.js +294 -0
- package/dist/src/app/theme.d.ts +47 -0
- package/dist/src/{commands/_tui-theme.js → app/theme.js} +16 -1
- package/dist/src/commands/_async-ui.d.ts +13 -0
- package/dist/src/commands/_async-ui.js +74 -3
- package/dist/src/commands/_authority-runs.d.ts +22 -0
- package/dist/src/commands/_cli-format.d.ts +49 -0
- package/dist/src/commands/_cli-format.js +26 -8
- package/dist/src/commands/_connection-state.d.ts +44 -0
- package/dist/src/commands/_doctor-checks.d.ts +52 -0
- package/dist/src/commands/_doctor-checks.js +3 -1
- package/dist/src/commands/_help-catalog.d.ts +51 -0
- package/dist/src/commands/_help-catalog.js +9 -70
- package/dist/src/commands/_json-output.d.ts +11 -0
- package/dist/src/commands/_operator-surface.d.ts +34 -0
- package/dist/src/commands/_operator-view.d.ts +30 -0
- package/dist/src/commands/_operator-view.js +184 -7
- package/dist/src/commands/_parsers.d.ts +15 -0
- package/dist/src/commands/_paths.d.ts +11 -0
- package/dist/src/commands/_pi-frontend.d.ts +27 -0
- package/dist/src/commands/_pi-frontend.js +184 -7
- package/dist/src/commands/_pi-install.d.ts +42 -0
- package/dist/src/commands/_pi-install.js +1 -1
- package/dist/src/commands/_policy.d.ts +8 -0
- package/dist/src/commands/_preflight.d.ts +22 -0
- package/dist/src/commands/_preflight.js +3 -1
- package/dist/src/commands/_probes.d.ts +1 -0
- package/dist/src/commands/_run-driver-helpers.d.ts +99 -0
- package/dist/src/commands/_run-replay.d.ts +24 -0
- package/dist/src/commands/_server-client.d.ts +186 -0
- package/dist/src/commands/_server-client.js +3 -1
- package/dist/src/commands/_snapshot-upload.d.ts +39 -0
- package/dist/src/commands/_snapshot-upload.js +3 -1
- package/dist/src/commands/_spinner.d.ts +25 -0
- package/dist/src/commands/_task-picker.d.ts +9 -0
- package/dist/src/commands/_task-picker.js +132 -7
- package/dist/src/commands/agent.d.ts +3 -0
- package/dist/src/commands/browser.d.ts +65 -0
- package/dist/src/commands/browser.js +306 -30
- package/dist/src/commands/connect.d.ts +7 -0
- package/dist/src/commands/connect.js +130 -64
- package/dist/src/commands/dist.d.ts +28 -0
- package/dist/src/commands/doctor.d.ts +3 -0
- package/dist/src/commands/doctor.js +77 -4
- package/dist/src/commands/github.d.ts +3 -0
- package/dist/src/commands/github.js +77 -4
- package/dist/src/commands/inbox.d.ts +30 -0
- package/dist/src/commands/inbox.js +101 -78
- package/dist/src/commands/init.d.ts +74 -0
- package/dist/src/commands/init.js +350 -10
- package/dist/src/commands/inspect.d.ts +3 -0
- package/dist/src/commands/inspect.js +77 -4
- package/dist/src/commands/inspector.d.ts +3 -0
- package/dist/src/commands/pi.d.ts +3 -0
- package/dist/src/commands/plugin.d.ts +16 -0
- package/dist/src/commands/profile-and-review.d.ts +4 -0
- package/dist/src/commands/queue.d.ts +3 -0
- package/dist/src/commands/remote.d.ts +3 -0
- package/dist/src/commands/repo-git-harness.d.ts +5 -0
- package/dist/src/commands/run.d.ts +3 -0
- package/dist/src/commands/run.js +195 -69
- package/dist/src/commands/server.d.ts +7 -0
- package/dist/src/commands/server.js +133 -65
- package/dist/src/commands/setup.d.ts +16 -0
- package/dist/src/commands/setup.js +77 -4
- package/dist/src/commands/stats.d.ts +12 -0
- package/dist/src/commands/stats.js +57 -113
- package/dist/src/commands/task-report-bug.d.ts +19 -0
- package/dist/src/commands/task-report-bug.js +231 -40
- package/dist/src/commands/task-run-driver.d.ts +132 -0
- package/dist/src/commands/task-run-driver.js +26 -3
- package/dist/src/commands/task.d.ts +14 -0
- package/dist/src/commands/task.js +341 -229
- package/dist/src/commands/test.d.ts +3 -0
- package/dist/src/commands/workspace.d.ts +3 -0
- package/dist/src/commands.d.ts +29 -0
- package/dist/src/commands.js +10194 -9289
- package/dist/src/index.d.ts +4 -0
- package/dist/src/index.js +10200 -9295
- package/dist/src/launcher.d.ts +61 -0
- package/dist/src/report-bug.d.ts +44 -0
- package/dist/src/runner.d.ts +47 -0
- package/dist/src/withMutedConsole.d.ts +2 -0
- package/package.json +10 -9
- package/dist/src/commands/_operator-board.js +0 -730
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { type RunnerContext } from "./runner";
|
|
2
|
+
import type { CommandOutcome } from "@rig/runtime/control-plane/runtime/types";
|
|
3
|
+
import { buildBrowserDemoAgentCommands, buildBrowserDemoRuntime, browserDemoCommandCompletions, browserDemoCommandMatches, browserHelpText, findBrowserDemoPageTarget, formatBrowserDemoCdpResult, formatBrowserDemoCheckOutput, formatBrowserDemoCommandOutput, normalizeBrowserDemoCommand } from "./commands/browser";
|
|
4
|
+
import { buildRunPrompt } from "./commands/_run-driver-helpers";
|
|
5
|
+
import { bugPromptExampleText, formatDroppedAssetDefault, splitDroppedAssetList, validateRequiredBugPromptValue } from "./commands/task-report-bug";
|
|
6
|
+
export declare function printGroupHelp(group: string): void;
|
|
7
|
+
/** Returns true if args[0] requests group help (--help, -h, or "help"). */
|
|
8
|
+
export declare function isHelpArg(arg: string | undefined): boolean;
|
|
9
|
+
export declare function helpText(): string;
|
|
10
|
+
export declare function execute(context: RunnerContext, args: string[]): Promise<CommandOutcome>;
|
|
11
|
+
export { buildRigInitConfigSource } from "./commands/init";
|
|
12
|
+
export type { RigInitConfigInput } from "./commands/init";
|
|
13
|
+
export declare const __testOnly: {
|
|
14
|
+
buildRunPrompt: typeof buildRunPrompt;
|
|
15
|
+
buildBrowserDemoAgentCommands: typeof buildBrowserDemoAgentCommands;
|
|
16
|
+
buildBrowserDemoRuntime: typeof buildBrowserDemoRuntime;
|
|
17
|
+
browserDemoCommandCompletions: typeof browserDemoCommandCompletions;
|
|
18
|
+
browserDemoCommandMatches: typeof browserDemoCommandMatches;
|
|
19
|
+
browserHelpText: typeof browserHelpText;
|
|
20
|
+
bugPromptExampleText: typeof bugPromptExampleText;
|
|
21
|
+
findBrowserDemoPageTarget: typeof findBrowserDemoPageTarget;
|
|
22
|
+
formatBrowserDemoCdpResult: typeof formatBrowserDemoCdpResult;
|
|
23
|
+
formatBrowserDemoCheckOutput: typeof formatBrowserDemoCheckOutput;
|
|
24
|
+
formatBrowserDemoCommandOutput: typeof formatBrowserDemoCommandOutput;
|
|
25
|
+
formatDroppedAssetDefault: typeof formatDroppedAssetDefault;
|
|
26
|
+
normalizeBrowserDemoCommand: typeof normalizeBrowserDemoCommand;
|
|
27
|
+
splitDroppedAssetList: typeof splitDroppedAssetList;
|
|
28
|
+
validateRequiredBugPromptValue: typeof validateRequiredBugPromptValue;
|
|
29
|
+
};
|