claude-evolve 1.5.9 → 1.5.10

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 -2
  2. package/package.json +1 -1
package/lib/ai-cli.sh CHANGED
@@ -19,7 +19,7 @@ call_ai_model_configured() {
19
19
  case "$model_name" in
20
20
  opus|sonnet)
21
21
  local ai_output
22
- ai_output=$(timeout 180 claude --dangerously-skip-permissions --model "$model_name" -p "$prompt" 2>&1)
22
+ ai_output=$(timeout 300 claude --dangerously-skip-permissions --model "$model_name" -p "$prompt" 2>&1)
23
23
  local ai_exit_code=$?
24
24
  ;;
25
25
  gpt5high)
@@ -50,7 +50,7 @@ call_ai_model_configured() {
50
50
  ;;
51
51
  cursor-sonnet)
52
52
  local ai_output
53
- ai_output=$(timeout 180 cursor-agent sonnet -p "$prompt" 2>&1)
53
+ ai_output=$(timeout 300 cursor-agent sonnet -p "$prompt" 2>&1)
54
54
  local ai_exit_code=$?
55
55
  ;;
56
56
  cursor-opus)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-evolve",
3
- "version": "1.5.9",
3
+ "version": "1.5.10",
4
4
  "bin": {
5
5
  "claude-evolve": "./bin/claude-evolve",
6
6
  "claude-evolve-main": "./bin/claude-evolve-main",