claude-evolve 1.5.25 → 1.5.27

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.
@@ -1028,9 +1028,8 @@ IMPORTANT: You MUST use one of these exact parent IDs: $valid_parent_ids
1028
1028
  Successful algorithms to tune:
1029
1029
  $top_performers
1030
1030
 
1031
- CRITICAL INSTRUCTION: Before generating parameter tuning ideas, you MUST read the source code of the parent algorithms.
1032
- Algorithm source files are located at: evolution_<PARENT_ID>.py
1033
- For example: evolution_gen01-251.py
1031
+ OPTIONAL: If needed for context, you may read parent algorithm source files at: evolution_<PARENT_ID>.py
1032
+ However, you can often generate good parameter tuning ideas just from the descriptions and performance scores above.
1034
1033
 
1035
1034
  CRITICAL INSTRUCTIONS:
1036
1035
  1. Use the Read tool to examine the current CSV file
@@ -1115,9 +1114,8 @@ IMPORTANT: You MUST use one of these exact parent IDs: $valid_parent_ids
1115
1114
  Successful algorithms to modify structurally:
1116
1115
  $top_performers
1117
1116
 
1118
- CRITICAL INSTRUCTION: Before generating structural modification ideas, you MUST read the source code of the parent algorithms.
1119
- Algorithm source files are located at: evolution_<PARENT_ID>.py
1120
- For example: evolution_gen01-251.py
1117
+ OPTIONAL: If needed for context, you may read parent algorithm source files at: evolution_<PARENT_ID>.py
1118
+ However, you can often generate good structural ideas just from the descriptions and performance scores above.
1121
1119
 
1122
1120
  CRITICAL INSTRUCTIONS:
1123
1121
  1. Use the Read tool to examine the current CSV file
@@ -1202,9 +1200,8 @@ IMPORTANT: You MUST use ONLY these exact parent IDs: $valid_parent_ids
1202
1200
  Top performers to combine (reference at least 2 in each idea):
1203
1201
  $top_performers
1204
1202
 
1205
- CRITICAL INSTRUCTION: Before generating hybrid combination ideas, you MUST read the source code of the parent algorithms.
1206
- Algorithm source files are located at: evolution_<PARENT_ID>.py
1207
- For example: evolution_gen01-251.py
1203
+ OPTIONAL: If needed for context, you may read parent algorithm source files at: evolution_<PARENT_ID>.py
1204
+ However, you can often generate good hybrid ideas just from the descriptions and performance scores above.
1208
1205
 
1209
1206
  CRITICAL INSTRUCTIONS:
1210
1207
  1. Use the Read tool to examine the current CSV file
@@ -1286,17 +1283,12 @@ ideate_ai_legacy() {
1286
1283
 
1287
1284
  local prompt="I need you to use your file editing capabilities to add exactly $TOTAL_IDEAS algorithmic ideas to the CSV file: $temp_csv_basename
1288
1285
 
1289
- Algorithm files for context:
1290
- - Base algorithm: algorithm.py
1291
- - Evolved algorithms: evolution_*.py
1292
-
1293
- IMPORTANT: Before generating ideas, you should:
1294
- 1. Use the Read tool to examine the base algorithm to understand the codebase structure and possibilities
1295
- 2. Use the Read tool to examine ALL existing evolution_*.py files to see what modifications have been attempted
1296
- 3. Consider which approaches might work well
1286
+ Current evolution context:
1287
+ - Generation: $CURRENT_GENERATION
1288
+ - Algorithm: algorithm.py (base algorithm)
1289
+ - Brief: $(head -10 "$FULL_BRIEF_PATH" 2>/dev/null | head -c 1000 || echo "No brief file found")
1297
1290
 
1298
- Project Brief:
1299
- $(cat "$FULL_BRIEF_PATH")"
1291
+ IMPORTANT: DO NOT read all evolution files - that uses too many tokens. Just generate creative ideas based on the brief."
1300
1292
 
1301
1293
  if [[ -n $top_performers ]]; then
1302
1294
  prompt+="
package/lib/ai-cli.sh CHANGED
@@ -68,7 +68,7 @@ $prompt"
68
68
  ;;
69
69
  cursor-sonnet)
70
70
  local ai_output
71
- ai_output=$(timeout 300 cursor-agent sonnet -p "$prompt" 2>&1)
71
+ ai_output=$(timeout 300 cursor-agent sonnet-4.5 -p "$prompt" 2>&1)
72
72
  local ai_exit_code=$?
73
73
  ;;
74
74
  cursor-opus)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-evolve",
3
- "version": "1.5.25",
3
+ "version": "1.5.27",
4
4
  "bin": {
5
5
  "claude-evolve": "./bin/claude-evolve",
6
6
  "claude-evolve-main": "./bin/claude-evolve-main",
@@ -73,11 +73,13 @@ llm_cli:
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
75
  #run: sonnet gpt5 cursor-sonnet
76
- #ideate: gemini opus gpt5high o3high cursor-opus
77
-
76
+ #ideate: gemini sonnet-think sonnet-think gpt5high sonnet-think o3high
77
+
78
78
  # Available models:
79
79
  # - sonnet: Claude 3.5 Sonnet via Claude CLI
80
+ # - sonnet-think: Claude 3.5 Sonnet with extended thinking (ultrathink prompt)
80
81
  # - opus: Claude 3 Opus via Claude CLI
82
+ # - opus-think: Claude 3 Opus with extended thinking (ultrathink prompt)
81
83
  # - gemini: Gemini via Gemini CLI
82
84
  # - gpt5: GPT-5 via Codex CLI (standard)
83
85
  # - gpt5high: GPT-5 via Codex CLI (high reasoning)