claude-overnight 1.57.3 → 1.57.4
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/bin/evolve.js
CHANGED
|
@@ -294,8 +294,15 @@ async function evolveOne(opts) {
|
|
|
294
294
|
}
|
|
295
295
|
catch (err) {
|
|
296
296
|
const msg = err.message ?? String(err);
|
|
297
|
-
|
|
298
|
-
|
|
297
|
+
// When the user explicitly asked for --case-pool, fall-back to the
|
|
298
|
+
// 10-case default silently would be dishonest — the statistical
|
|
299
|
+
// power they expected won't be there. Fail loud so the error lands
|
|
300
|
+
// in the fornace `error` field (only surfaced on non-zero exit).
|
|
301
|
+
throw new Error(`Case generation failed: ${msg.slice(0, 1500)}\n\n` +
|
|
302
|
+
`You asked for --case-pool ${opts.casePool}, but the generator ` +
|
|
303
|
+
`couldn't produce valid cases via ${opts.genModel ?? opts.evalModel}. ` +
|
|
304
|
+
`Try --gen-model claude-haiku-4-5 (or another JSON-reliable model), ` +
|
|
305
|
+
`or drop --case-pool to proceed with the synthetic fixture alone.`);
|
|
299
306
|
}
|
|
300
307
|
}
|
|
301
308
|
}
|
package/dist/core/_version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "1.57.
|
|
1
|
+
export declare const VERSION = "1.57.4";
|
package/dist/core/_version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Auto-generated by build — do not edit manually.
|
|
2
|
-
export const VERSION = "1.57.
|
|
2
|
+
export const VERSION = "1.57.4";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-overnight",
|
|
3
|
-
"version": "1.57.
|
|
3
|
+
"version": "1.57.4",
|
|
4
4
|
"description": "Overnight parallel coding agents in git worktrees, with a self-curating skill memory that improves while the run is going. Mix Claude Opus as planner, Kimi 2.6 or Cursor composer-2 as cheap fast worker, Gemini or Qwen for bulk implementation. Multi-wave autonomous loop that plans, executes, reviews, and steers itself until the objective is met. Crash-safe resume, rate-limit aware, usage cap preserves headroom for your interactive Claude Code.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-overnight",
|
|
3
|
-
"version": "1.57.
|
|
3
|
+
"version": "1.57.4",
|
|
4
4
|
"description": "Claude Code skill for understanding, installing, and inspecting claude-overnight runs: overnight parallel coding agents in git worktrees with a self-curating skill memory, multi-wave steering, three-layer review, and crash-safe resume. Mix Opus planner with Kimi 2.6, Cursor composer-2, Gemini, Qwen, or any Anthropic-compatible worker.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Francesco Fornace"
|