@tryarcanist/cli 0.1.317 → 0.1.318
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/index.js +2 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7370,7 +7370,7 @@ import { Command } from "commander";
|
|
|
7370
7370
|
// package.json
|
|
7371
7371
|
var package_default = {
|
|
7372
7372
|
name: "@tryarcanist/cli",
|
|
7373
|
-
version: "0.1.
|
|
7373
|
+
version: "0.1.318",
|
|
7374
7374
|
description: "CLI for Arcanist - create and manage coding agent sessions",
|
|
7375
7375
|
type: "module",
|
|
7376
7376
|
bin: {
|
|
@@ -23962,7 +23962,6 @@ async function reviewCommand(prUrl, options = {}, command) {
|
|
|
23962
23962
|
method: "POST",
|
|
23963
23963
|
body: JSON.stringify({
|
|
23964
23964
|
prUrl,
|
|
23965
|
-
...options.focus ? { focus: options.focus } : {},
|
|
23966
23965
|
// Send an explicitly passed model even when empty (e.g. --model "$VAR" with an
|
|
23967
23966
|
// unset VAR) so the server rejects it as invalid instead of silently routing.
|
|
23968
23967
|
...options.model !== void 0 ? { model: options.model } : {},
|
|
@@ -27273,12 +27272,11 @@ codex.command("use <state>").description("Turn using your saved Codex subscripti
|
|
|
27273
27272
|
codex.command("status").description("Show Codex subscription availability and whether auth is saved").action((options, command) => codexStatusCommand(options, command));
|
|
27274
27273
|
codex.command("logout").description("Deactivate the selector and remove the stored Codex subscription auth for your user").action((options, command) => codexLogoutCommand(options, command));
|
|
27275
27274
|
var sessions = program.command("sessions").description("Session commands");
|
|
27276
|
-
program.command("review <pr-url>").description("Run a Zeus review for a GitHub pull request").option("--focus <text>", "
|
|
27275
|
+
program.command("review <pr-url>").description("Run a Zeus review for a GitHub pull request").option("--focus <text>", "Ignored. Zeus always reviews the full pull request").option("--model <model>", "Pin the reviewer model (Arcanist members only); defaults to the Codex reviewer").option("--sandbox-runtime <runtime>", "Force the sandbox runtime (Arcanist members only): modal or e2b").option("--wait", "Wait for the review and print its verdict and findings").option("--poll-interval <ms>", "Polling interval in milliseconds while waiting (default 10000)").addHelpText(
|
|
27277
27276
|
"after",
|
|
27278
27277
|
`
|
|
27279
27278
|
Examples:
|
|
27280
27279
|
arcanist review https://github.com/org/repo/pull/123 --wait --json
|
|
27281
|
-
arcanist review https://github.com/org/repo/pull/123 --focus "Check auth" --wait
|
|
27282
27280
|
arcanist review https://github.com/org/repo/pull/123 --model gpt-5.5 --wait
|
|
27283
27281
|
arcanist review https://github.com/org/repo/pull/123 --sandbox-runtime modal --wait
|
|
27284
27282
|
|