claude-evolve 1.7.26 → 1.7.28

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.
@@ -593,10 +593,13 @@ with EvolutionCSV('$FULL_CSV_PATH') as csv:
593
593
 
594
594
  # Set current candidate for cleanup
595
595
  CURRENT_CANDIDATE_ID="$candidate_id"
596
-
596
+
597
597
  # Process the candidate and capture exit code
598
+ # Use 'set +e' temporarily to prevent script exit on non-zero return
599
+ set +e
598
600
  process_candidate "$candidate_id" "$parent_id" "$description"
599
601
  process_exit_code=$?
602
+ set -e
600
603
 
601
604
  if [[ $process_exit_code -eq 0 ]]; then
602
605
  echo "[WORKER-$$] Successfully processed $candidate_id"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-evolve",
3
- "version": "1.7.26",
3
+ "version": "1.7.28",
4
4
  "bin": {
5
5
  "claude-evolve": "./bin/claude-evolve",
6
6
  "claude-evolve-main": "./bin/claude-evolve-main",