@tryarcanist/cli 0.1.193 → 0.1.194
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 +14 -13
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2582,8 +2582,8 @@ var ERROR_CODE_LABELS = {
|
|
|
2582
2582
|
output_length: "Output was too long",
|
|
2583
2583
|
context_overflow: "Context window exceeded",
|
|
2584
2584
|
aborted: "Stopped by user",
|
|
2585
|
-
rate_limit: "
|
|
2586
|
-
api_error: "
|
|
2585
|
+
rate_limit: "Rate limited - please retry shortly",
|
|
2586
|
+
api_error: "Model service error",
|
|
2587
2587
|
config_error: "Configuration error",
|
|
2588
2588
|
failed_edits: "Edit failure",
|
|
2589
2589
|
memory_enforcement_failed: "Memory enforcement failed",
|
|
@@ -2596,7 +2596,7 @@ var ERROR_CODE_LABELS = {
|
|
|
2596
2596
|
spawn_modal_error: "Sandbox spawn failed (legacy provider error)",
|
|
2597
2597
|
spawn_provider_error: "Sandbox spawn failed (provider API error)",
|
|
2598
2598
|
spawn_deadline_no_object: "Sandbox spawn timed out before provider responded",
|
|
2599
|
-
spawn_deadline_no_bridge: "Sandbox
|
|
2599
|
+
spawn_deadline_no_bridge: "Sandbox startup timed out before the runtime became reachable",
|
|
2600
2600
|
spawn_preconnect: "Sandbox failed before connecting",
|
|
2601
2601
|
sandbox_terminated: "Sandbox terminated",
|
|
2602
2602
|
sandbox_disconnected: "Sandbox disconnected",
|
|
@@ -2604,13 +2604,13 @@ var ERROR_CODE_LABELS = {
|
|
|
2604
2604
|
sandbox_never_started: "Sandbox never started the prompt",
|
|
2605
2605
|
session_archived: "Session archived while processing",
|
|
2606
2606
|
sandbox_callback: "Sandbox callback failed",
|
|
2607
|
-
codex_startup_timeout: "
|
|
2608
|
-
codex_api_readiness_timeout: "
|
|
2609
|
-
codex_session_create_timeout: "
|
|
2610
|
-
codex_prompt_dispatch_timeout: "
|
|
2611
|
-
codex_not_ready: "
|
|
2612
|
-
codex_transport_closed: "
|
|
2613
|
-
codex_unrecoverable: "
|
|
2607
|
+
codex_startup_timeout: "Agent runtime startup timed out",
|
|
2608
|
+
codex_api_readiness_timeout: "Agent runtime did not become ready",
|
|
2609
|
+
codex_session_create_timeout: "Agent runtime session could not be created",
|
|
2610
|
+
codex_prompt_dispatch_timeout: "Prompt could not be delivered to the agent runtime",
|
|
2611
|
+
codex_not_ready: "Agent runtime did not become ready",
|
|
2612
|
+
codex_transport_closed: "Agent runtime connection closed",
|
|
2613
|
+
codex_unrecoverable: "Agent runtime stopped unexpectedly",
|
|
2614
2614
|
question_delivery_failed: "Answer could not be delivered to the agent",
|
|
2615
2615
|
malformed_search_command: "Malformed search command blocked",
|
|
2616
2616
|
unknown: "Unknown failure"
|
|
@@ -2695,8 +2695,7 @@ ${event.answer ? `**Answer:** ${event.answer}
|
|
|
2695
2695
|
return `**Error:** ${formatSessionErrorMessage(event.error, event.code)}
|
|
2696
2696
|
`;
|
|
2697
2697
|
case "session_resumed_cold":
|
|
2698
|
-
return
|
|
2699
|
-
`;
|
|
2698
|
+
return "*[Environment was reset; in-environment state was lost]*\n";
|
|
2700
2699
|
case "customer_activity":
|
|
2701
2700
|
return `**${event.title}:** ${event.summary}
|
|
2702
2701
|
`;
|
|
@@ -3054,7 +3053,9 @@ function formatStatusLine(status) {
|
|
|
3054
3053
|
const substate = [];
|
|
3055
3054
|
if (status.sandboxSubstate && status.sandboxSubstate !== "none") substate.push(status.sandboxSubstate);
|
|
3056
3055
|
if (status.stopMode && status.stopMode !== "none") substate.push(status.stopMode);
|
|
3057
|
-
if (status.finalizingStep && status.finalizingStep !== "none")
|
|
3056
|
+
if (status.finalizingStep && status.finalizingStep !== "none") {
|
|
3057
|
+
substate.push(status.finalizingStep === "post_execution" ? "verification" : status.finalizingStep);
|
|
3058
|
+
}
|
|
3058
3059
|
const phaseLabel2 = substate.length > 0 ? `${label}/${substate.join("/")}` : label;
|
|
3059
3060
|
const details = [];
|
|
3060
3061
|
if (status.title) details.push(status.title);
|