create-claude-workspace 1.1.22 → 1.1.23
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.
|
@@ -431,6 +431,9 @@ async function main() {
|
|
|
431
431
|
await sleep(opts.cooldown, stoppingRef);
|
|
432
432
|
}
|
|
433
433
|
}
|
|
434
|
+
else {
|
|
435
|
+
checkpoint.consecutiveBlockedSameTask = 0;
|
|
436
|
+
}
|
|
434
437
|
// Update lastTaskSeen (after blocked comparison)
|
|
435
438
|
checkpoint.lastTaskSeen = result.next_task ?? result.task_completed ?? task;
|
|
436
439
|
// Handle needs_input
|
|
@@ -10,7 +10,11 @@ const STDERR_PATTERNS = [
|
|
|
10
10
|
['context_exhausted', /context.?length.?exceeded|too many tokens/i],
|
|
11
11
|
];
|
|
12
12
|
export function classifyError(signals) {
|
|
13
|
-
//
|
|
13
|
+
// Clean exit with result = success, even if transient errors occurred mid-run
|
|
14
|
+
// (Claude Code handles rate limits/errors internally with retries)
|
|
15
|
+
if (signals.code === 0 && signals.hasResult)
|
|
16
|
+
return 'none';
|
|
17
|
+
// Flag-based (set by stream events, not just stderr)
|
|
14
18
|
if (signals.isAuthError)
|
|
15
19
|
return 'auth_expired';
|
|
16
20
|
if (signals.isAuthServerError)
|
|
@@ -71,7 +75,7 @@ const STRATEGIES = {
|
|
|
71
75
|
reason: 'Claude CLI not found on PATH. Install: https://docs.anthropic.com/en/docs/claude-code',
|
|
72
76
|
}),
|
|
73
77
|
disk_full: () => ({ type: 'stop', reason: 'Disk full. Free space and restart.' }),
|
|
74
|
-
oom_killed: (ctx) => ctx.consecutiveFailures >=
|
|
78
|
+
oom_killed: (ctx) => ctx.consecutiveFailures >= MAX_CONSECUTIVE
|
|
75
79
|
? { type: 'stop', reason: 'Repeated OOM kills. Increase memory limit.' }
|
|
76
80
|
: { type: 'backoff', ms: 30_000 },
|
|
77
81
|
unknown: (ctx) => ctx.consecutiveFailures >= MAX_CONSECUTIVE
|