claude-evolve 1.5.16 → 1.5.17

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.
Files changed (2) hide show
  1. package/lib/ai-cli.sh +2 -7
  2. package/package.json +1 -1
package/lib/ai-cli.sh CHANGED
@@ -24,12 +24,12 @@ call_ai_model_configured() {
24
24
  ;;
25
25
  gpt5high)
26
26
  local ai_output
27
- ai_output=$(timeout 420 codex exec --profile gpt5high --dangerously-bypass-approvals-and-sandbox "$prompt" 2>&1)
27
+ ai_output=$(timeout 420 codex exec -m gpt-5 -c model_reasoning_effort="high" --dangerously-bypass-approvals-and-sandbox "$prompt" 2>&1)
28
28
  local ai_exit_code=$?
29
29
  ;;
30
30
  gpt5)
31
31
  local ai_output
32
- ai_output=$(timeout 420 codex exec --dangerously-bypass-approvals-and-sandbox "$prompt" 2>&1)
32
+ ai_output=$(timeout 420 codex exec -m gpt-5 --dangerously-bypass-approvals-and-sandbox "$prompt" 2>&1)
33
33
  local ai_exit_code=$?
34
34
  ;;
35
35
  o3high)
@@ -37,11 +37,6 @@ call_ai_model_configured() {
37
37
  ai_output=$(timeout 500 codex exec --profile o3high --dangerously-bypass-approvals-and-sandbox "$prompt" 2>&1)
38
38
  local ai_exit_code=$?
39
39
  ;;
40
- codex)
41
- local ai_output
42
- ai_output=$(timeout 420 codex exec --dangerously-bypass-approvals-and-sandbox "$prompt" 2>&1)
43
- local ai_exit_code=$?
44
- ;;
45
40
  gemini)
46
41
  # Debug: Show exact command
47
42
  echo "[DEBUG] Running: timeout 1200 gemini -y -p <prompt>" >&2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-evolve",
3
- "version": "1.5.16",
3
+ "version": "1.5.17",
4
4
  "bin": {
5
5
  "claude-evolve": "./bin/claude-evolve",
6
6
  "claude-evolve-main": "./bin/claude-evolve-main",