claude-evolve 1.8.16 → 1.8.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.
- package/lib/ai-cli.sh +2 -2
- package/lib/config.sh +1 -1
- package/package.json +1 -1
- package/templates/config.yaml +2 -2
package/lib/ai-cli.sh
CHANGED
|
@@ -118,9 +118,9 @@ $prompt"
|
|
|
118
118
|
ai_output=$(timeout 600 opencode -m openrouter/anthropic/claude-opus-4.1 run "$prompt" 2>&1)
|
|
119
119
|
local ai_exit_code=$?
|
|
120
120
|
;;
|
|
121
|
-
kimi-k2
|
|
121
|
+
moonshot-kimi-k2)
|
|
122
122
|
local ai_output
|
|
123
|
-
ai_output=$(timeout 600 opencode -m
|
|
123
|
+
ai_output=$(timeout 600 opencode -m moonshotai/kimi-k2-thinking run "$prompt" 2>&1)
|
|
124
124
|
local ai_exit_code=$?
|
|
125
125
|
;;
|
|
126
126
|
codex-oss-local)
|
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 gemini-flash 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 moonshot-kimi-k2 gemini-pro 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 moonshot-kimi-k2 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,6 @@ 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
|
+
# - moonshot-kimi-k2: Kimi K2 Thinking via Moonshot
|
|
101
101
|
# - codex-qwen3: Qwen3-Coder via Codex + Ollama (local, free, RECOMMENDED)
|
|
102
102
|
# - aider-qwen3: Qwen3-Coder via Aider + Ollama (local, free, experimental)
|