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.
- package/bin/claude-evolve-ideate +11 -19
- package/lib/ai-cli.sh +1 -1
- package/package.json +1 -1
- package/templates/config.yaml +4 -2
package/bin/claude-evolve-ideate
CHANGED
|
@@ -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
|
-
|
|
1032
|
-
|
|
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
|
-
|
|
1119
|
-
|
|
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
|
-
|
|
1206
|
-
|
|
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
|
-
|
|
1290
|
-
-
|
|
1291
|
-
-
|
|
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
|
-
|
|
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
package/package.json
CHANGED
package/templates/config.yaml
CHANGED
|
@@ -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
|
|
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)
|