Files
openclaw-skill/openclaw-knowhow-skill/references/AGENTS-ROLES.md
Selig 4c966a3ad2 Initial commit: OpenClaw Skill Collection
6 custom skills (assign-task, dispatch-webhook, daily-briefing,
task-capture, qmd-brain, tts-voice) with technical documentation.
Compatible with Claude Code, OpenClaw, Codex CLI, and OpenCode.
2026-03-13 10:58:30 +08:00

103 lines
3.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 代理分工與模型策略
三類代理與建議模型配置(以 CLIPROXY 為主,最後回退到 Anthropic 訂閱):
## A) 系統開發 / 規劃 / 架構師 / 稽核
- 主模型cliproxyapi-2/claude-opus-4-6-thinking
- 後備:
1. cliproxyapi-2/claude-sonnet-4-5-thinking
2. cliproxyapi-2/claude-opus-4-5-thinking
3. anthropic/claude-opus-4-6
- 理由:推理與審慎工具操作的穩定性最佳。
## B) 程式設計師
- 前端:
-cliproxyapi-2/gpt-5.3-codex
-cliproxyapi-2/gpt-5.1-codex → cliproxyapi-2/claude-sonnet-4-5
- 後端:
-cliproxyapi-2/gpt-5.3-codex
-cliproxyapi-2/gpt-5.1-codex → cliproxyapi-2/claude-opus-4-6
- 檔案整理/移動(批次腳本、小任務):
-cliproxyapi-2/gpt-5.1-codex-mini
-cliproxyapi-2/gpt-5.1-codex → gemini-3-flash
## C) 網頁瀏覽 / 操作 / 下載 / 上傳
-cliproxyapi-2/claude-sonnet-4-5-thinking或 opus thinking
-cliproxyapi-2/claude-opus-4-6 → anthropic/claude-opus-4-6
- 備註:此代理允許 browser 工具;其他代理預設不開 browser。
## OpenClaw agents 建議樣板
```json5
{
agents: {
defaults: {
// 全域預設:也可放 Sonnet 以降低成本
model: { primary: "cliproxyapi-2/claude-opus-4-6" },
models: {
"cliproxyapi-2/claude-opus-4-6": { alias: "Opus" },
"cliproxyapi-2/claude-opus-4-6-thinking": { alias: "OpusT" },
"cliproxyapi-2/claude-sonnet-4-5": { alias: "Sonnet" },
"cliproxyapi-2/claude-sonnet-4-5-thinking": { alias: "SonnetT" },
"cliproxyapi-2/gpt-5.3-codex": { alias: "Codex" },
"cliproxyapi-2/gpt-5.1-codex": { alias: "Codex51" },
"cliproxyapi-2/gpt-5.1-codex-mini": { alias: "CodexMini" },
"cliproxyapi-2/gemini-3-flash": { alias: "GFlash" },
"anthropic/claude-opus-4-6": { alias: "OpusDirect" }
}
},
list: [
{
id: "architect",
name: "系統架構師",
model: {
primary: "cliproxyapi-2/claude-opus-4-6-thinking",
fallbacks: [
"cliproxyapi-2/claude-sonnet-4-5-thinking",
"cliproxyapi-2/claude-opus-4-5-thinking",
"anthropic/claude-opus-4-6"
]
},
tools: { byProvider: { } }
},
{
id: "coder-fe",
name: "前端工程師",
model: {
primary: "cliproxyapi-2/gpt-5.3-codex",
fallbacks: ["cliproxyapi-2/gpt-5.1-codex", "cliproxyapi-2/claude-sonnet-4-5"]
}
},
{
id: "coder-be",
name: "後端工程師",
model: {
primary: "cliproxyapi-2/gpt-5.3-codex",
fallbacks: ["cliproxyapi-2/gpt-5.1-codex", "cliproxyapi-2/claude-opus-4-6"]
}
},
{
id: "file-ops",
name: "檔案作業",
model: {
primary: "cliproxyapi-2/gpt-5.1-codex-mini",
fallbacks: ["cliproxyapi-2/gpt-5.1-codex", "cliproxyapi-2/gemini-3-flash"]
}
},
{
id: "web",
name: "網頁操作",
model: {
primary: "cliproxyapi-2/claude-sonnet-4-5-thinking",
fallbacks: ["cliproxyapi-2/claude-opus-4-6", "anthropic/claude-opus-4-6"]
},
tools: {
profile: "strict",
allow: ["browser", "web_search", "web_fetch", "image"],
byProvider: { }
}
}
]
}
}
```