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.
- package/bin/claude-evolve-run +3 -1
- package/package.json +1 -1
package/bin/claude-evolve-run
CHANGED
|
@@ -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
|
-
|
|
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
|