claude-evolve 1.5.11 → 1.5.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/lib/ai-cli.sh CHANGED
@@ -27,6 +27,11 @@ call_ai_model_configured() {
27
27
  ai_output=$(timeout 420 codex exec --profile gpt5high --dangerously-bypass-approvals-and-sandbox "$prompt" 2>&1)
28
28
  local ai_exit_code=$?
29
29
  ;;
30
+ gpt5)
31
+ local ai_output
32
+ ai_output=$(timeout 420 codex exec --dangerously-bypass-approvals-and-sandbox "$prompt" 2>&1)
33
+ local ai_exit_code=$?
34
+ ;;
30
35
  o3high)
31
36
  local ai_output
32
37
  ai_output=$(timeout 500 codex exec --profile o3high --dangerously-bypass-approvals-and-sandbox "$prompt" 2>&1)
package/lib/config.sh CHANGED
@@ -54,7 +54,7 @@ DEFAULT_MAX_RETRIES=3
54
54
  DEFAULT_MEMORY_LIMIT_MB=12288
55
55
 
56
56
  # Default LLM CLI configuration - use simple variables instead of arrays
57
- DEFAULT_LLM_RUN="sonnet cursor-sonnet"
57
+ DEFAULT_LLM_RUN="sonnet gpt5 cursor-sonnet"
58
58
  DEFAULT_LLM_IDEATE="gemini opus gpt5high o3high cursor-opus"
59
59
 
60
60
  # Load configuration from config file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-evolve",
3
- "version": "1.5.11",
3
+ "version": "1.5.12",
4
4
  "bin": {
5
5
  "claude-evolve": "./bin/claude-evolve",
6
6
  "claude-evolve-main": "./bin/claude-evolve-main",
@@ -72,13 +72,14 @@ llm_cli:
72
72
 
73
73
  # commented out because these change over time; if you want to fix them in a particular
74
74
  # configuration, uncomment them and set them
75
- #run: sonnet cursor-sonnet
75
+ #run: sonnet gpt5 cursor-sonnet
76
76
  #ideate: gemini opus gpt5high o3high cursor-opus
77
77
 
78
78
  # Available models:
79
79
  # - sonnet: Claude 3.5 Sonnet via Claude CLI
80
80
  # - opus: Claude 3 Opus via Claude CLI
81
81
  # - gemini: Gemini via Gemini CLI
82
+ # - gpt5: GPT-5 via Codex CLI (standard)
82
83
  # - gpt5high: GPT-5 via Codex CLI (high reasoning)
83
84
  # - o3high: O3 via Codex CLI (high reasoning)
84
85
  # - cursor-sonnet: Claude 3.5 Sonnet via Cursor Agent CLI