claude-overnight 1.25.10 → 1.25.12
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/_version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "1.25.
|
|
1
|
+
export declare const VERSION = "1.25.12";
|
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.
|
|
2
|
+
export const VERSION = "1.25.12";
|
package/dist/models.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export interface ModelCapability {
|
|
|
7
7
|
}
|
|
8
8
|
export declare const MODEL_CAPABILITIES: Record<string, ModelCapability>;
|
|
9
9
|
export declare const DEFAULT_MODEL = "claude-sonnet-4-6";
|
|
10
|
-
export declare const FALLBACK_MODEL = "claude-opus-4-
|
|
10
|
+
export declare const FALLBACK_MODEL = "claude-opus-4-7";
|
|
11
11
|
/**
|
|
12
12
|
* Find capability info for a model string. Tries: exact match → lowercase
|
|
13
13
|
* exact → substring match. Falls back to "unknown" entry.
|
package/dist/models.js
CHANGED
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
export const MODEL_CAPABILITIES = {
|
|
21
21
|
// ── Anthropic Claude (Apr 2026) ──
|
|
22
22
|
// Opus: only model that earns "relaxed". 100% on 38-task routing, 95%+ IFEval.
|
|
23
|
+
"claude-opus-4-7": { contextWindow: 1_000_000, safeContext: 400_000, contextConstraint: "relaxed", displayName: "Opus 4.7" },
|
|
23
24
|
"claude-opus-4-6": { contextWindow: 1_000_000, safeContext: 400_000, contextConstraint: "relaxed", displayName: "Opus 4.6" },
|
|
24
25
|
// Sonnet: good but loses thread more than Opus on autonomous multi-file work.
|
|
25
26
|
"claude-sonnet-4-6": { contextWindow: 1_000_000, safeContext: 300_000, contextConstraint: "moderate", displayName: "Sonnet 4.6" },
|
|
@@ -59,7 +60,7 @@ export const MODEL_CAPABILITIES = {
|
|
|
59
60
|
};
|
|
60
61
|
// ── Default / fallback models ──
|
|
61
62
|
export const DEFAULT_MODEL = "claude-sonnet-4-6";
|
|
62
|
-
export const FALLBACK_MODEL = "claude-opus-4-
|
|
63
|
+
export const FALLBACK_MODEL = "claude-opus-4-7"; // used for planner + worker recovery
|
|
63
64
|
// ── Lookup ──
|
|
64
65
|
/**
|
|
65
66
|
* Find capability info for a model string. Tries: exact match → lowercase
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-overnight",
|
|
3
|
-
"version": "1.25.
|
|
3
|
+
"version": "1.25.12",
|
|
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.
|
|
3
|
+
"version": "1.25.12",
|
|
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"
|