@tryarcanist/cli 0.1.239 → 0.1.241
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 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8264,9 +8264,6 @@ function parseRepoArgOrCurrent(value, argName = "repo") {
|
|
|
8264
8264
|
// ../../shared/agent/agent-runtime-backend.ts
|
|
8265
8265
|
var CODEX_AGENT_RUNTIME_BACKEND = "codex";
|
|
8266
8266
|
var AGENT_RUNTIME_BACKENDS = [CODEX_AGENT_RUNTIME_BACKEND];
|
|
8267
|
-
var AGENT_RUNTIME_BACKEND_NAMES = {
|
|
8268
|
-
[CODEX_AGENT_RUNTIME_BACKEND]: "Codex"
|
|
8269
|
-
};
|
|
8270
8267
|
|
|
8271
8268
|
// ../../shared/utils/type-guards.ts
|
|
8272
8269
|
function isRecord(value) {
|
|
@@ -8709,7 +8706,7 @@ var AUTOMATION_ERROR_HINTS = {
|
|
|
8709
8706
|
slack_channel_unavailable: "Check the Slack channel ID and confirm the bot can see the channel.",
|
|
8710
8707
|
slack_bot_not_in_channel: "Invite the Arcanist bot to the channel, then retry.",
|
|
8711
8708
|
rule_cap_reached: "Delete or disable an existing automation before creating another one. The cap is 20 enabled rules.",
|
|
8712
|
-
model_not_available: "That model
|
|
8709
|
+
model_not_available: "That model is not available for this business; use the codex default or a codex model.",
|
|
8713
8710
|
repo_skills_unavailable: "Arcanist could not verify the repo's skills right now. Retry once GitHub skill discovery is healthy.",
|
|
8714
8711
|
unknown_skill: "That leading slash skill does not exist in the selected repository."
|
|
8715
8712
|
};
|
|
@@ -13247,7 +13244,7 @@ JSON mode returns {models}
|
|
|
13247
13244
|
var automations = program.command("automations").description("Automation commands");
|
|
13248
13245
|
automations.command("create").description("Create a scheduled automation").argument("<repo-url>", "Repository URL").argument("[prompt]", "Prompt to run, or '-' to read stdin").requiredOption("--cron <expr>", "Cron expression").option("--name <name>", "Automation display name").option(
|
|
13249
13246
|
"--model <model>",
|
|
13250
|
-
"Model to pin for this automation's sessions (e.g. gpt-5.5
|
|
13247
|
+
"Model to pin for this automation's sessions (e.g. gpt-5.5). Defaults to the codex backend default."
|
|
13251
13248
|
).option(
|
|
13252
13249
|
"--slack-team-id <team-id>",
|
|
13253
13250
|
"Slack workspace/team ID for final digest delivery (requires --slack-channel-id)"
|