claude-evolve 1.2.4 → 1.2.5
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 +35 -0
- package/package.json +1 -1
package/bin/claude-evolve-ideate
CHANGED
|
@@ -198,6 +198,13 @@ generate_novel_ideas_direct() {
|
|
|
198
198
|
|
|
199
199
|
local prompt="Edit the file $FULL_CSV_PATH to add exactly $count new rows for novel algorithmic approaches.
|
|
200
200
|
|
|
201
|
+
Current CSV content:
|
|
202
|
+
$(cat "$FULL_CSV_PATH")
|
|
203
|
+
|
|
204
|
+
Algorithm files you can examine for context:
|
|
205
|
+
- Base algorithm: $FULL_ALGORITHM_PATH
|
|
206
|
+
- Evolved algorithms: $FULL_OUTPUT_DIR/evolution_id*.py (if any exist)
|
|
207
|
+
|
|
201
208
|
Project Brief:
|
|
202
209
|
$(cat "$FULL_BRIEF_PATH")
|
|
203
210
|
|
|
@@ -230,6 +237,13 @@ generate_hill_climbing_direct() {
|
|
|
230
237
|
|
|
231
238
|
local prompt="Edit the file $FULL_CSV_PATH to add exactly $count new rows for parameter tuning based on successful algorithms.
|
|
232
239
|
|
|
240
|
+
Current CSV content:
|
|
241
|
+
$(cat "$FULL_CSV_PATH")
|
|
242
|
+
|
|
243
|
+
Algorithm files you can examine for context:
|
|
244
|
+
- Base algorithm: $FULL_ALGORITHM_PATH
|
|
245
|
+
- Evolved algorithms: $FULL_OUTPUT_DIR/evolution_id*.py (if any exist)
|
|
246
|
+
|
|
233
247
|
Successful algorithms to build on:
|
|
234
248
|
$top_performers
|
|
235
249
|
|
|
@@ -265,6 +279,13 @@ generate_structural_mutation_direct() {
|
|
|
265
279
|
|
|
266
280
|
local prompt="Edit the file $FULL_CSV_PATH to add exactly $count new rows for structural modifications based on successful algorithms.
|
|
267
281
|
|
|
282
|
+
Current CSV content:
|
|
283
|
+
$(cat "$FULL_CSV_PATH")
|
|
284
|
+
|
|
285
|
+
Algorithm files you can examine for context:
|
|
286
|
+
- Base algorithm: $FULL_ALGORITHM_PATH
|
|
287
|
+
- Evolved algorithms: $FULL_OUTPUT_DIR/evolution_id*.py (if any exist)
|
|
288
|
+
|
|
268
289
|
Successful algorithms to build on:
|
|
269
290
|
$top_performers
|
|
270
291
|
|
|
@@ -300,6 +321,13 @@ generate_crossover_direct() {
|
|
|
300
321
|
|
|
301
322
|
local prompt="Edit the file $FULL_CSV_PATH to add exactly $count new rows for hybrid combinations of successful algorithms.
|
|
302
323
|
|
|
324
|
+
Current CSV content:
|
|
325
|
+
$(cat "$FULL_CSV_PATH")
|
|
326
|
+
|
|
327
|
+
Algorithm files you can examine for context:
|
|
328
|
+
- Base algorithm: $FULL_ALGORITHM_PATH
|
|
329
|
+
- Evolved algorithms: $FULL_OUTPUT_DIR/evolution_id*.py (if any exist)
|
|
330
|
+
|
|
303
331
|
Top performers to combine:
|
|
304
332
|
$top_performers
|
|
305
333
|
|
|
@@ -351,6 +379,13 @@ ideate_ai_legacy() {
|
|
|
351
379
|
# Build prompt
|
|
352
380
|
local prompt="Edit the file $FULL_CSV_PATH to add exactly $TOTAL_IDEAS new algorithm variation rows.
|
|
353
381
|
|
|
382
|
+
Current CSV content:
|
|
383
|
+
$(cat "$FULL_CSV_PATH")
|
|
384
|
+
|
|
385
|
+
Algorithm files you can examine for context:
|
|
386
|
+
- Base algorithm: $FULL_ALGORITHM_PATH
|
|
387
|
+
- Evolved algorithms: $FULL_OUTPUT_DIR/evolution_id*.py (if any exist)
|
|
388
|
+
|
|
354
389
|
Project Brief:
|
|
355
390
|
$(cat "$FULL_BRIEF_PATH")"
|
|
356
391
|
|