claude-evolve 1.5.32 → 1.5.34

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/lib/ai-cli.sh CHANGED
@@ -86,6 +86,16 @@ $prompt"
86
86
  ai_output=$(timeout 300 opencode -m openrouter/deepseek/deepseek-v3.1-terminus run "$prompt" 2>&1)
87
87
  local ai_exit_code=$?
88
88
  ;;
89
+ grok-code-fast)
90
+ local ai_output
91
+ ai_output=$(timeout 300 opencode -m openrouter/x-ai/grok-code-fast-1 run "$prompt" 2>&1)
92
+ local ai_exit_code=$?
93
+ ;;
94
+ grok-4)
95
+ local ai_output
96
+ ai_output=$(timeout 300 opencode -m openrouter/x-ai/grok-4 run "$prompt" 2>&1)
97
+ local ai_exit_code=$?
98
+ ;;
89
99
  *)
90
100
  echo "[ERROR] Unknown model: $model_name" >&2
91
101
  return 1
package/lib/config.sh CHANGED
@@ -54,7 +54,7 @@ DEFAULT_MAX_RETRIES=3
54
54
  DEFAULT_MEMORY_LIMIT_MB=12288
55
55
 
56
56
  # Default LLM CLI configuration - use simple variables instead of arrays
57
- DEFAULT_LLM_RUN="gpt5 cursor-sonnet deepseek"
57
+ DEFAULT_LLM_RUN="sonnet gpt5 cursor-sonnet deepseek"
58
58
  DEFAULT_LLM_IDEATE="gemini sonnet-think gpt5high o3high glm"
59
59
 
60
60
  # Load configuration from config file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-evolve",
3
- "version": "1.5.32",
3
+ "version": "1.5.34",
4
4
  "bin": {
5
5
  "claude-evolve": "./bin/claude-evolve",
6
6
  "claude-evolve-main": "./bin/claude-evolve-main",
@@ -87,3 +87,5 @@ llm_cli:
87
87
  # - cursor-sonnet: Claude 3.5 Sonnet via Cursor Agent CLI
88
88
  # - cursor-opus: Claude 3 Opus via Cursor Agent CLI
89
89
  # - glm: GLM-4.6 via OpenCode CLI
90
+ # - grok-code-fast: Grok Code Fast 1 via OpenRouter
91
+ # - grok-4: Grok 4 via OpenRouter