claude-evolve 1.5.11 → 1.5.13

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.
@@ -559,14 +559,14 @@ print(f'max_desc=\"{desc_escaped}\"')
559
559
  done
560
560
  fi
561
561
 
562
- # Add novel candidates
563
- if [[ -s "$novel_file" ]] && [[ $(wc -l < "$novel_file") -gt 1 ]]; then
564
- if [[ $gen_plots_added -gt 0 ]]; then
565
- plot_cmd="$plot_cmd, \\"$'\n'
566
- fi
567
- plot_cmd="${plot_cmd} \"$novel_file\" using 1:3 with points pointtype 8 pointsize $winner_dot_size linecolor rgb \"#ff1493\" title \"Novel Candidates\""
568
- ((gen_plots_added++))
569
- fi
562
+ # Add novel candidates - DISABLED to reduce chart clutter
563
+ # if [[ -s "$novel_file" ]] && [[ $(wc -l < "$novel_file") -gt 1 ]]; then
564
+ # if [[ $gen_plots_added -gt 0 ]]; then
565
+ # plot_cmd="$plot_cmd, \\"$'\n'
566
+ # fi
567
+ # plot_cmd="${plot_cmd} \"$novel_file\" using 1:3 with points pointtype 8 pointsize $winner_dot_size linecolor rgb \"#cccccc\" title \"Novel Candidates\""
568
+ # ((gen_plots_added++))
569
+ # fi
570
570
 
571
571
  # Add winner point
572
572
  if [[ -n $max_id && -s "$winner_file" ]]; then
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.13",
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