claude-evolve 1.8.27 → 1.8.29
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 +6 -0
- package/lib/config.sh +1 -1
- package/package.json +1 -1
- package/templates/config.yaml +3 -2
package/lib/ai-cli.sh
CHANGED
|
@@ -168,6 +168,12 @@ $prompt"
|
|
|
168
168
|
ai_output=$(timeout -k 30 600 opencode -m openrouter/anthropic/claude-opus-4.1 run "$prompt" 2>&1)
|
|
169
169
|
local ai_exit_code=$?
|
|
170
170
|
;;
|
|
171
|
+
kimi-k2-openrouter)
|
|
172
|
+
local ai_output
|
|
173
|
+
# Kimi K2 Thinking via OpenRouter (no separate auth needed)
|
|
174
|
+
ai_output=$(timeout -k 30 600 opencode -m openrouter/moonshotai/kimi-k2-thinking run "$prompt" 2>&1)
|
|
175
|
+
local ai_exit_code=$?
|
|
176
|
+
;;
|
|
171
177
|
kimi-k2-think-moonshot)
|
|
172
178
|
local ai_output
|
|
173
179
|
# Use kimi CLI directly (assumes kimi is installed and configured)
|
package/lib/config.sh
CHANGED
|
@@ -60,7 +60,7 @@ DEFAULT_WORKER_MAX_CANDIDATES=3
|
|
|
60
60
|
# Default LLM CLI configuration
|
|
61
61
|
DEFAULT_LLM_RUN="glm-zai glm-zai glm-zai glm-zai glm-zai codex-oss-local haiku"
|
|
62
62
|
# Ideate: Commercial models for idea generation + local fallback
|
|
63
|
-
DEFAULT_LLM_IDEATE="opus-openrouter kimi-k2-
|
|
63
|
+
DEFAULT_LLM_IDEATE="opus-openrouter kimi-k2-openrouter gemini-3-pro-preview sonnet-think gpt5high grok-4-openrouter deepseek-openrouter glm-zai"
|
|
64
64
|
|
|
65
65
|
# Load configuration from a YAML file and update variables
|
|
66
66
|
_load_yaml_config() {
|
package/package.json
CHANGED
package/templates/config.yaml
CHANGED
|
@@ -80,7 +80,7 @@ llm_cli:
|
|
|
80
80
|
# Default configuration: 100% local code generation, commercial ideation + local fallback
|
|
81
81
|
# Commented out because these change over time; uncomment to override
|
|
82
82
|
#run: codex-qwen3
|
|
83
|
-
#ideate: opus-openrouter kimi-k2-
|
|
83
|
+
#ideate: opus-openrouter kimi-k2-openrouter gemini-pro sonnet-think gpt5high grok-4-openrouter deepseek-openrouter glm-zai
|
|
84
84
|
|
|
85
85
|
# Available models:
|
|
86
86
|
# - sonnet: Claude 3.5 Sonnet via Claude CLI
|
|
@@ -97,6 +97,7 @@ llm_cli:
|
|
|
97
97
|
# - grok-code-fast: Grok Code Fast 1 via OpenRouter
|
|
98
98
|
# - grok-4: Grok 4 via OpenRouter
|
|
99
99
|
# - opus-openrouter: Claude Opus 4.1 via OpenRouter
|
|
100
|
-
# - kimi-k2-
|
|
100
|
+
# - kimi-k2-openrouter: Kimi K2 Thinking via OpenRouter (RECOMMENDED - no separate auth)
|
|
101
|
+
# - kimi-k2-think-moonshot: Kimi K2 Thinking via Moonshot CLI (requires separate kimi CLI setup)
|
|
101
102
|
# - codex-qwen3: Qwen3-Coder via Codex + Ollama (local, free, RECOMMENDED)
|
|
102
103
|
# - aider-qwen3: Qwen3-Coder via Aider + Ollama (local, free, experimental)
|