claude-evolve 1.3.24 → 1.3.26

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.
@@ -342,6 +342,16 @@ Requirements for new CSV rows:
342
342
  - Each description should be one clear sentence describing a specific algorithmic change
343
343
  - Descriptions should explore completely different approaches than existing ones
344
344
  - All new rows should have empty performance and status fields
345
+
346
+ CRITICAL CSV FORMAT RULES:
347
+ - DO NOT modify the CSV header row
348
+ - DO NOT change the column order
349
+ - DO NOT add extra columns or fields
350
+ - DO NOT modify existing rows - only append new ones
351
+ - DO NOT add extra blank lines or formatting
352
+ - Maintain exact CSV format: id,basedOnId,description,performance,status
353
+ - Leave performance and status fields completely empty (just commas)
354
+ - Use proper CSV quoting only when descriptions contain commas
345
355
  - CRITICAL: You must read existing evolution files to avoid suggesting changes that:
346
356
  * Have already been tried and failed
347
357
  * Are impossible given the codebase structure
@@ -395,6 +405,16 @@ Requirements for new CSV rows:
395
405
  - Each description should be one clear sentence about parameter tuning
396
406
  - Focus on adjusting hyperparameters, thresholds, sizes, learning rates
397
407
  - All new rows should have empty performance and status fields
408
+
409
+ CRITICAL CSV FORMAT RULES:
410
+ - DO NOT modify the CSV header row
411
+ - DO NOT change the column order
412
+ - DO NOT add extra columns or fields
413
+ - DO NOT modify existing rows - only append new ones
414
+ - DO NOT add extra blank lines or formatting
415
+ - Maintain exact CSV format: id,basedOnId,description,performance,status
416
+ - Leave performance and status fields completely empty (just commas)
417
+ - Use proper CSV quoting only when descriptions contain commas
398
418
  - CRITICAL: You must read the parent algorithm file to understand:
399
419
  * What parameters are actually tunable in the code
400
420
  * What changes made this algorithm successful vs its parent
@@ -448,6 +468,16 @@ Requirements for new CSV rows:
448
468
  - Each description should be one clear sentence about architectural changes
449
469
  - Keep core insights but change implementation approach
450
470
  - All new rows should have empty performance and status fields
471
+
472
+ CRITICAL CSV FORMAT RULES:
473
+ - DO NOT modify the CSV header row
474
+ - DO NOT change the column order
475
+ - DO NOT add extra columns or fields
476
+ - DO NOT modify existing rows - only append new ones
477
+ - DO NOT add extra blank lines or formatting
478
+ - Maintain exact CSV format: id,basedOnId,description,performance,status
479
+ - Leave performance and status fields completely empty (just commas)
480
+ - Use proper CSV quoting only when descriptions contain commas
451
481
  - CRITICAL: You must read the parent algorithm file to understand:
452
482
  * What structural elements can be modified within the codebase constraints
453
483
  * What architectural decisions led to this algorithm's success
@@ -25,19 +25,27 @@ get_version() {
25
25
  fi
26
26
  }
27
27
 
28
- # Function to check for updates (non-blocking)
28
+ # Function to check for updates and auto-update if needed
29
29
  check_for_updates() {
30
30
  # Only check if we can reach npm registry quickly
31
31
  if timeout 2 npm view claude-evolve version >/dev/null 2>&1; then
32
32
  local current_version
33
- current_version=$(npm list -g claude-evolve --depth=0 2>/dev/null | grep claude-evolve | sed 's/.*@//')
33
+ current_version=$(npm list -g claude-evolve --depth=0 2>/dev/null | grep claude-evolve | sed 's/.*@//' | sed 's/ ->.*//')
34
34
  local latest_version
35
35
  latest_version=$(timeout 2 npm view claude-evolve version 2>/dev/null)
36
36
 
37
37
  if [[ -n $current_version ]] && [[ -n $latest_version ]] && [[ $current_version != "$latest_version" ]]; then
38
38
  echo -e "${YELLOW}📦 Update available: claude-evolve $current_version → $latest_version${NC}"
39
- echo -e "${YELLOW} Run: npm update -g claude-evolve${NC}"
40
- echo
39
+ echo -e "${GREEN}🔄 Auto-updating claude-evolve...${NC}"
40
+
41
+ # Attempt automatic update
42
+ if npm update -g claude-evolve >/dev/null 2>&1; then
43
+ echo -e "${GREEN}✅ Successfully updated to claude-evolve $latest_version${NC}"
44
+ echo
45
+ else
46
+ echo -e "${YELLOW}⚠️ Auto-update failed. Please run manually: npm update -g claude-evolve${NC}"
47
+ echo
48
+ fi
41
49
  fi
42
50
  fi
43
51
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-evolve",
3
- "version": "1.3.24",
3
+ "version": "1.3.26",
4
4
  "bin": {
5
5
  "claude-evolve": "./bin/claude-evolve",
6
6
  "claude-evolve-main": "./bin/claude-evolve-main",