claude-evolve 1.3.2 → 1.3.3

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.
@@ -222,11 +222,8 @@ check_stuck_candidates
222
222
  set +e # Don't exit on error in the main loop
223
223
 
224
224
  while true; do
225
- # Check if too many consecutive failures
226
- if [[ $consecutive_failures -ge $MAX_FAILURES ]]; then
227
- echo "[ERROR] Too many consecutive failures ($consecutive_failures). Stopping." >&2
228
- break
229
- fi
225
+ # In parallel mode, let individual algorithm failures happen
226
+ # The generation is finite, so worst case it just completes with many failures
230
227
 
231
228
  # Check if rate limit was hit
232
229
  if [[ $rate_limit_hit == true ]]; then
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-evolve",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "bin": {
5
5
  "claude-evolve": "./bin/claude-evolve",
6
6
  "claude-evolve-main": "./bin/claude-evolve-main",