Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand All @@ -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` |

---

Expand Down Expand Up @@ -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/**"] }
Expand Down
10 changes: 5 additions & 5 deletions opencode.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down Expand Up @@ -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": {
Expand All @@ -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
}
},
Expand Down
8 changes: 4 additions & 4 deletions src/config/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: [],
},
Expand Down Expand Up @@ -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: [],
},
Expand All @@ -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: [],
},
Expand Down
Loading