diff --git a/README.md b/README.md index c889875..46e9fa2 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ pnpm check | Agent | Purpose | Model | |---|---|---| -| **orchestrator-agent** | Routes work, manages lanes and approval gates | `qwen3.6-plus` | +| **orchestrator-agent** | Routes work, manages lanes and approval gates | `qwen3.7-plus` | | **research-agent** | Codebase mapping, root-cause analysis | `deepseek-v4-flash` | | **planning-agent** | Implementation-ready plans | `gpt-5.5` (xhigh) | | **reviewer-agent** | Adversarial plan stress-testing | `glm-5.1` | @@ -64,11 +64,11 @@ pnpm check | Agent | Purpose | Model | |---|---|---| | **pr-review-agent** | PR review via `gh` CLI | `glm-5.1` | -| **prompt-agent** | Refine agent prompts | `qwen3.6-plus` | +| **prompt-agent** | Refine agent prompts | `qwen3.7-plus` | | **spec-agent** | Proposal + capability specs | `kimi-k2.6` | | **apply-agent** | Execute playbooks (RED→GREEN) | `deepseek-v4-flash` | -| **readme-architect** | Professional READMEs | `qwen3.6-plus` | -| **technical-product-guide** | Codebase navigation guidance | `qwen3.6-plus` | +| **readme-architect** | Professional READMEs | `qwen3.7-plus` | +| **technical-product-guide** | Codebase navigation guidance | `qwen3.7-plus` | --- @@ -126,7 +126,7 @@ All lanes run through `orchestrator-agent` with `[y/N/edit]` approval gates befo ```json { - "model": "opencode-go/qwen3.6-plus", + "model": "opencode-go/qwen3.7-plus", "permission": { "bash": "ask", "edit": "allow" }, "compaction": { "auto": true, "prune": true }, "watcher": { "ignore": ["node_modules/**", "dist/**", ".git/**"] } diff --git a/opencode.json b/opencode.json index 7593d04..78c42f4 100644 --- a/opencode.json +++ b/opencode.json @@ -2,11 +2,11 @@ "$schema": "https://opencode.ai/config.json", "plugin": ["@warp-dot-dev/opencode-warp"], "autoupdate": "notify", - "model": "opencode-go/qwen3.6-plus", + "model": "opencode-go/qwen3.7-plus", "small_model": "opencode-go/qwen3.5-plus", "agent": { "orchestrator-agent": { - "model": "opencode-go/qwen3.6-plus", + "model": "opencode-go/qwen3.7-plus", "temperature": 0.1 }, "planning-agent": { @@ -40,7 +40,7 @@ "variant": "xhigh" }, "prompt-agent": { - "model": "opencode-go/qwen3.6-plus", + "model": "opencode-go/qwen3.7-plus", "temperature": 0.2 }, "spec-agent": { @@ -52,11 +52,11 @@ "temperature": 0.1 }, "technical-product-guide": { - "model": "opencode-go/qwen3.6-plus", + "model": "opencode-go/qwen3.7-plus", "temperature": 0.3 }, "gitmoji-staged-commit-agent": { - "model": "opencode-go/qwen3.6-plus", + "model": "opencode-go/qwen3.7-plus", "temperature": 0.1 } }, diff --git a/src/config/models.ts b/src/config/models.ts index 63111c4..44042af 100644 --- a/src/config/models.ts +++ b/src/config/models.ts @@ -2,7 +2,7 @@ import type { AgentName, ModelConfig } from "../types/types"; export const agentModelConfig = { "orchestrator-agent": { - model: "opencode-go/qwen3.6-plus", + model: "opencode-go/qwen3.7-plus", temperature: 0.1, fallbackModels: [], }, @@ -52,7 +52,7 @@ export const agentModelConfig = { }, "prompt-agent": { - model: "opencode-go/qwen3.6-plus", + model: "opencode-go/qwen3.7-plus", temperature: 0.2, fallbackModels: [], }, @@ -70,13 +70,13 @@ export const agentModelConfig = { }, "technical-product-guide": { - model: "opencode-go/qwen3.6-plus", + model: "opencode-go/qwen3.7-plus", temperature: 0.3, fallbackModels: [], }, "readme-architect": { - model: "opencode-go/qwen3.6-plus", + model: "opencode-go/qwen3.7-plus", temperature: 0.2, fallbackModels: [], },