claude-evolve 1.0.13 → 1.0.14

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.
@@ -125,7 +125,9 @@ fi
125
125
 
126
126
  # Get row data
127
127
  row_data=$(get_csv_row "$row_num")
128
+ echo "[DEBUG] Raw row data: '$row_data'"
128
129
  IFS=, read -r id based_on_id description performance status <<<"$row_data"
130
+ echo "[DEBUG] After parsing - ID: '$id', based_on_id: '$based_on_id'"
129
131
 
130
132
  # Check if ID is empty
131
133
  if [[ -z $id ]]; then
@@ -165,7 +167,9 @@ fi
165
167
  echo "[INFO] Using parent algorithm: $parent_file"
166
168
 
167
169
  # Generate mutation
170
+ echo "[DEBUG] ID is: '$id', FULL_OUTPUT_DIR is: '$FULL_OUTPUT_DIR'"
168
171
  output_file="$FULL_OUTPUT_DIR/evolution_id${id}.py"
172
+ echo "[DEBUG] Output file will be: '$output_file'"
169
173
  echo "[INFO] Generating algorithm mutation..."
170
174
 
171
175
  # Copy parent algorithm to output file first
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-evolve",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "bin": {
5
5
  "claude-evolve": "./bin/claude-evolve",
6
6
  "claude-evolve-main": "./bin/claude-evolve-main",