claude-evolve 1.11.5 → 1.11.6
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/lib/ai-cli.sh +4 -2
- package/package.json +1 -1
package/lib/ai-cli.sh
CHANGED
|
@@ -75,19 +75,21 @@ call_ai_model_configured() {
|
|
|
75
75
|
sonnet-think)
|
|
76
76
|
local ai_output
|
|
77
77
|
# Use extended thinking with sonnet 4.5 - prepend ultrathink instruction
|
|
78
|
+
# AIDEV-NOTE: Extended thinking needs 30 min timeout - can take long for complex ideation
|
|
78
79
|
local think_prompt="ultrathink
|
|
79
80
|
|
|
80
81
|
$prompt"
|
|
81
|
-
ai_output=$(timeout -k 30
|
|
82
|
+
ai_output=$(timeout -k 30 1800 claude --dangerously-skip-permissions --mcp-config '' --model sonnet -p "$think_prompt" 2>&1)
|
|
82
83
|
local ai_exit_code=$?
|
|
83
84
|
;;
|
|
84
85
|
opus-think)
|
|
85
86
|
local ai_output
|
|
86
87
|
# Use extended thinking with opus - prepend ultrathink instruction
|
|
88
|
+
# AIDEV-NOTE: Extended thinking needs 30 min timeout - can take long for complex ideation
|
|
87
89
|
local think_prompt="ultrathink
|
|
88
90
|
|
|
89
91
|
$prompt"
|
|
90
|
-
ai_output=$(timeout -k 30
|
|
92
|
+
ai_output=$(timeout -k 30 1800 claude --dangerously-skip-permissions --mcp-config '' --model opus -p "$think_prompt" 2>&1)
|
|
91
93
|
local ai_exit_code=$?
|
|
92
94
|
;;
|
|
93
95
|
haiku)
|