claude-evolve 1.0.17 → 1.0.19

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.
@@ -228,8 +228,10 @@ if [[ $id == "000" || $id == "0" ]]; then
228
228
  echo "[INFO] Baseline algorithm - skipping mutation, using original"
229
229
  else
230
230
  echo "[INFO] Calling Claude $CLAUDE_MODEL to apply mutation..."
231
- if ! generated_code=$(echo "$prompt" | "$claude_cmd" --model $CLAUDE_MODEL); then
231
+
232
+ if ! generated_code=$(echo "$prompt" | "$claude_cmd" --model $CLAUDE_MODEL -p 2>&1); then
232
233
  echo "[ERROR] Claude failed to generate algorithm mutation" >&2
234
+ echo "[ERROR] Claude output: $generated_code" >&2
233
235
  update_csv_row "$row_num" "" "failed"
234
236
  exit 1
235
237
  fi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-evolve",
3
- "version": "1.0.17",
3
+ "version": "1.0.19",
4
4
  "bin": {
5
5
  "claude-evolve": "./bin/claude-evolve",
6
6
  "claude-evolve-main": "./bin/claude-evolve-main",