claude-overnight 1.25.13 → 1.25.14

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.
@@ -1 +1 @@
1
- export declare const VERSION = "1.25.13";
1
+ export declare const VERSION = "1.25.14";
package/dist/_version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Auto-generated by build — do not edit manually.
2
- export const VERSION = "1.25.13";
2
+ export const VERSION = "1.25.14";
package/dist/providers.js CHANGED
@@ -351,12 +351,15 @@ async function preflightCursorProxyViaHttp(p, timeoutMs, opts) {
351
351
  }, PROGRESS_INTERVAL_MS);
352
352
  const deadline = setTimeout(() => controller.abort(), timeoutMs);
353
353
  try {
354
+ // max_tokens must accommodate thinking tokens for `*-thinking-*` variants —
355
+ // 1 token leaves zero reasoning budget and crashes the cursor-agent subprocess
356
+ // (observed with claude-opus-4-7-thinking-high: exit code 1 after ~12s).
354
357
  const res = await fetch(`${baseURL}/v1/messages`, {
355
358
  method: "POST",
356
359
  headers,
357
360
  body: JSON.stringify({
358
361
  model: p.model,
359
- max_tokens: 1,
362
+ max_tokens: 4096,
360
363
  messages: [{ role: "user", content: "ok" }],
361
364
  }),
362
365
  signal: controller.signal,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-overnight",
3
- "version": "1.25.13",
3
+ "version": "1.25.14",
4
4
  "description": "Parallel Claude agents in git worktrees with a usage cap that reserves headroom for your interactive Claude Code. Crash-safe resume. Provider-agnostic model catalog (Anthropic, Cursor, OpenAI, Gemini, DeepSeek, Llama, Qwen) with capability-based task scoping.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-overnight",
3
- "version": "1.25.13",
3
+ "version": "1.25.14",
4
4
  "description": "Claude Code skill for understanding, installing, and inspecting claude-overnight runs -- parallel Claude agents in git worktrees with thinking waves, multi-wave steering, and crash-safe resume. Supports Cursor API Proxy, Qwen, OpenRouter.",
5
5
  "author": {
6
6
  "name": "Francesco Fornace"