claude-evolve 1.6.10 → 1.6.12
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-worker +16 -4
- package/lib/ai-cli.sh +3 -3
- package/lib/config.sh +14 -2
- package/package.json +1 -1
package/bin/claude-evolve-worker
CHANGED
|
@@ -26,10 +26,22 @@ TERMINATION_SIGNAL=""
|
|
|
26
26
|
cleanup_on_exit() {
|
|
27
27
|
if [[ -n "$CURRENT_CANDIDATE_ID" ]]; then
|
|
28
28
|
echo "[WORKER-$$] Worker terminated while processing $CURRENT_CANDIDATE_ID" >&2
|
|
29
|
-
#
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
29
|
+
# Atomically reset status to pending only if it is not already complete
|
|
30
|
+
echo "[WORKER-$$] Determining status before resetting" >&2
|
|
31
|
+
"$PYTHON_CMD" -c "
|
|
32
|
+
import sys
|
|
33
|
+
from lib.evolution_csv import EvolutionCSV
|
|
34
|
+
csv = EvolutionCSV('$FULL_CSV_PATH')
|
|
35
|
+
# Acquire lock and read current status safely
|
|
36
|
+
info = csv.get_candidate_info('$CURRENT_CANDIDATE_ID')
|
|
37
|
+
if info and info.get('status', '').lower() != 'complete':
|
|
38
|
+
csv.update_candidate_status('$CURRENT_CANDIDATE_ID', 'pending')
|
|
39
|
+
print('reset')
|
|
40
|
+
sys.exit(0)
|
|
41
|
+
else:
|
|
42
|
+
# No reset needed
|
|
43
|
+
sys.exit(0)
|
|
44
|
+
" 2>/dev/null || echo "[WORKER-$$] Warning: failed to reset status" >&2
|
|
33
45
|
fi
|
|
34
46
|
}
|
|
35
47
|
|
package/lib/ai-cli.sh
CHANGED
|
@@ -99,13 +99,13 @@ $prompt"
|
|
|
99
99
|
codex-qwen3)
|
|
100
100
|
# Qwen3-Coder via Codex CLI with Ollama backend (only mildly agentic)
|
|
101
101
|
local ai_output
|
|
102
|
-
ai_output=$(timeout
|
|
102
|
+
ai_output=$(timeout 1200 codex exec --dangerously-bypass-approvals-and-sandbox --skip-git-repo-check --oss --model qwen3-coder:30b "$prompt" 2>&1)
|
|
103
103
|
local ai_exit_code=$?
|
|
104
104
|
;;
|
|
105
105
|
codex-oss)
|
|
106
|
-
# Codex-OSS via Codex CLI with Ollama backend
|
|
106
|
+
# Codex-OSS via Codex CLI with Ollama backend (longer timeout)
|
|
107
107
|
local ai_output
|
|
108
|
-
ai_output=$(timeout
|
|
108
|
+
ai_output=$(timeout 1200 codex exec --dangerously-bypass-approvals-and-sandbox --skip-git-repo-check --oss "$prompt" 2>&1)
|
|
109
109
|
local ai_exit_code=$?
|
|
110
110
|
;;
|
|
111
111
|
aider-qwen3|qwen3)
|
package/lib/config.sh
CHANGED
|
@@ -61,8 +61,20 @@ DEFAULT_LLM_IDEATE="gemini sonnet-think gpt5high o3high glm grok-4 codex-qwen3 c
|
|
|
61
61
|
|
|
62
62
|
# Load configuration from config file
|
|
63
63
|
load_config() {
|
|
64
|
-
# Accept config file path as parameter
|
|
65
|
-
|
|
64
|
+
# Accept config file path as parameter. If not supplied, look for a user override in
|
|
65
|
+
# $HOME/.config/claude-evolve/config.yaml first, then fall back to the repo default.
|
|
66
|
+
local user_config="$1"
|
|
67
|
+
|
|
68
|
+
if [[ -n "$user_config" ]]; then
|
|
69
|
+
config_file="$user_config"
|
|
70
|
+
else
|
|
71
|
+
local home_config="$HOME/.config/claude-evolve/config.yaml"
|
|
72
|
+
if [[ -f "$home_config" ]]; then
|
|
73
|
+
config_file="$home_config"
|
|
74
|
+
else
|
|
75
|
+
config_file="evolution/config.yaml"
|
|
76
|
+
fi
|
|
77
|
+
fi
|
|
66
78
|
|
|
67
79
|
# Set defaults first
|
|
68
80
|
EVOLUTION_DIR="$DEFAULT_EVOLUTION_DIR"
|