claude-evolve 1.5.21 → 1.5.25

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 CHANGED
@@ -28,7 +28,7 @@ call_ai_model_configured() {
28
28
  local think_prompt="ultrathink
29
29
 
30
30
  $prompt"
31
- ai_output=$(timeout 600 claude --dangerously-skip-permissions --model sonnet --extended-thinking -p "$think_prompt" 2>&1)
31
+ ai_output=$(timeout 600 claude --dangerously-skip-permissions --model sonnet -p "$think_prompt" 2>&1)
32
32
  local ai_exit_code=$?
33
33
  ;;
34
34
  opus-think)
@@ -37,7 +37,7 @@ $prompt"
37
37
  local think_prompt="ultrathink
38
38
 
39
39
  $prompt"
40
- ai_output=$(timeout 600 claude --dangerously-skip-permissions --model opus --extended-thinking -p "$think_prompt" 2>&1)
40
+ ai_output=$(timeout 600 claude --dangerously-skip-permissions --model opus -p "$think_prompt" 2>&1)
41
41
  local ai_exit_code=$?
42
42
  ;;
43
43
  gpt5high)
package/lib/config.sh CHANGED
@@ -55,7 +55,7 @@ DEFAULT_MEMORY_LIMIT_MB=12288
55
55
 
56
56
  # Default LLM CLI configuration - use simple variables instead of arrays
57
57
  DEFAULT_LLM_RUN="sonnet gpt5 cursor-sonnet"
58
- DEFAULT_LLM_IDEATE="gemini opus-think sonnet-think sonnet-think sonnet-think gpt5high o3high cursor-opus"
58
+ DEFAULT_LLM_IDEATE="gemini sonnet-think sonnet-think gpt5high sonnet-think o3high"
59
59
 
60
60
  # Load configuration from config file
61
61
  load_config() {
@@ -103,9 +103,9 @@ load_config() {
103
103
  LLM_CLI_codex='codex exec --dangerously-bypass-approvals-and-sandbox "{{PROMPT}}"'
104
104
  LLM_CLI_gemini='gemini -y -p "{{PROMPT}}"'
105
105
  LLM_CLI_opus='claude --dangerously-skip-permissions --model opus -p "{{PROMPT}}"'
106
- LLM_CLI_opus_think='claude --dangerously-skip-permissions --model opus --extended-thinking -p "ultrathink\n\n{{PROMPT}}"'
106
+ LLM_CLI_opus_think='claude --dangerously-skip-permissions --model opus -p "ultrathink\n\n{{PROMPT}}"'
107
107
  LLM_CLI_sonnet='claude --dangerously-skip-permissions --model sonnet -p "{{PROMPT}}"'
108
- LLM_CLI_sonnet_think='claude --dangerously-skip-permissions --model sonnet --extended-thinking -p "ultrathink\n\n{{PROMPT}}"'
108
+ LLM_CLI_sonnet_think='claude --dangerously-skip-permissions --model sonnet -p "ultrathink\n\n{{PROMPT}}"'
109
109
  LLM_CLI_cursor_sonnet='cursor-agent sonnet -p "{{PROMPT}}"'
110
110
  LLM_CLI_cursor_opus='cursor-agent opus -p "{{PROMPT}}"'
111
111
  LLM_RUN="$DEFAULT_LLM_RUN"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-evolve",
3
- "version": "1.5.21",
3
+ "version": "1.5.25",
4
4
  "bin": {
5
5
  "claude-evolve": "./bin/claude-evolve",
6
6
  "claude-evolve-main": "./bin/claude-evolve-main",