@arvorco/relentless 0.4.3 → 0.4.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/package.json +1 -1
- package/src/agents/claude.ts +1 -1
- package/src/routing/registry.ts +1 -1
package/package.json
CHANGED
package/src/agents/claude.ts
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*
|
|
12
12
|
* **Supported models:**
|
|
13
13
|
* - `opus-4.5` (claude-opus-4-5-20251101) - SOTA, best for code review and architecture
|
|
14
|
-
* - `sonnet-4.5` (claude-sonnet-4-5-
|
|
14
|
+
* - `sonnet-4.5` (claude-sonnet-4-5-20250929) - Balanced, good for daily coding
|
|
15
15
|
* - `haiku-4.5` (claude-haiku-4-5-20251001) - Fast and cheap, good for simple tasks
|
|
16
16
|
*
|
|
17
17
|
* These IDs map to the full Claude model identifiers in the CLI.
|
package/src/routing/registry.ts
CHANGED
|
@@ -106,7 +106,7 @@ export const MODEL_REGISTRY: ModelProfile[] = [
|
|
|
106
106
|
strengths: ["frontend", "refactoring", "daily_coding", "balanced"],
|
|
107
107
|
limitations: [],
|
|
108
108
|
cliFlag: "--model",
|
|
109
|
-
cliValue: "claude-sonnet-4-5-
|
|
109
|
+
cliValue: "claude-sonnet-4-5-20250929",
|
|
110
110
|
},
|
|
111
111
|
{
|
|
112
112
|
id: "haiku-4.5",
|