@tryarcanist/cli 0.1.124 → 0.1.126
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/README.md +1 -1
- package/dist/index.js +2 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -138,7 +138,7 @@ Repeatable `--uploaded-file <path>` flags attach local UTF-8 text files to the p
|
|
|
138
138
|
|
|
139
139
|
`--idempotency-key <uuid>` is for manually retrying a create request that may have reached the server. The CLI derives separate session and prompt idempotency keys from the provided value.
|
|
140
140
|
|
|
141
|
-
`--onboarding` creates an onboarding session: the agent authors the repo's `.arcanist.json`, `.arcanist/` runtime files,
|
|
141
|
+
`--onboarding` creates an onboarding session: the agent authors the repo's `.arcanist.json`, `.arcanist/` runtime files, `ARCANIST.md`, and conditionally `.arcanist/sandbox.yaml` + `.arcanist/sandbox.layer.Dockerfile` (when the base sandbox lacks a needed toolchain), proves what it can inside its sandbox, and opens the setup PR ready for review. Team use; not part of the external API surface.
|
|
142
142
|
|
|
143
143
|
JSON mode returns `{sessionId, sessionUrl?, repoUrl, model?, agentRuntimeBackend?, reasoningEffort?, promptId?}`. `sessionUrl` is emitted only when the server returns it; `agentRuntimeBackend` only when `--backend` is passed.
|
|
144
144
|
|
package/dist/index.js
CHANGED
|
@@ -417,7 +417,7 @@ var AnthropicModel = {
|
|
|
417
417
|
};
|
|
418
418
|
var MODEL_PROVIDERS_SET = /* @__PURE__ */ new Set(["openai", "anthropic"]);
|
|
419
419
|
var SESSION_START_MODEL_IDS_BY_BACKEND = {
|
|
420
|
-
[CODEX_AGENT_RUNTIME_BACKEND]: [OpenAIModel.GPT55, OpenAIModel.GPT54],
|
|
420
|
+
[CODEX_AGENT_RUNTIME_BACKEND]: [OpenAIModel.GPT55, OpenAIModel.GPT54, OpenAIModel.GPT54Nano],
|
|
421
421
|
[CLAUDE_CODE_AGENT_RUNTIME_BACKEND]: [AnthropicModel.Opus48, AnthropicModel.Sonnet46]
|
|
422
422
|
};
|
|
423
423
|
var DEFAULT_SESSION_START_MODEL_ID_BY_BACKEND = {
|
|
@@ -579,6 +579,7 @@ function isSessionStartModelAllowedForBackend(modelId, backend) {
|
|
|
579
579
|
var MODEL_TIER_BY_ID = {
|
|
580
580
|
[OpenAIModel.GPT55]: "frontier",
|
|
581
581
|
[OpenAIModel.GPT54]: "mid",
|
|
582
|
+
[OpenAIModel.GPT54Nano]: "mid",
|
|
582
583
|
[AnthropicModel.Opus48]: "frontier",
|
|
583
584
|
[AnthropicModel.Sonnet46]: "mid"
|
|
584
585
|
};
|
|
@@ -2151,12 +2152,6 @@ function renderWatchEvent(event, state) {
|
|
|
2151
2152
|
return { kind: "line", line: `[pr] ${String(data.prUrl ?? "")}` };
|
|
2152
2153
|
case "pr_failed":
|
|
2153
2154
|
return { kind: "line", line: `[pr error] ${String(data.error ?? "Unknown error")}` };
|
|
2154
|
-
case "similar_sessions_searching":
|
|
2155
|
-
return { kind: "line", line: "[similar] searching for related sessions" };
|
|
2156
|
-
case "similar_sessions_found":
|
|
2157
|
-
return { kind: "line", line: `[similar] found ${String(data.count ?? 0)} related sessions` };
|
|
2158
|
-
case "similar_sessions_none":
|
|
2159
|
-
return { kind: "line", line: "[similar] no related sessions found" };
|
|
2160
2155
|
case "session_idle":
|
|
2161
2156
|
return { kind: "line", line: "[idle] waiting for next prompt" };
|
|
2162
2157
|
default:
|