mirror of
https://mirror.skon.top/github.com/code-yeongyu/oh-my-opencode
synced 2026-04-22 00:20:25 +08:00
- Doctor now detects when opencode.json references 'oh-my-opencode' (legacy name) and warns users to switch to 'oh-my-openagent' with the exact replacement string. - Added 3 example config files in docs/examples/: - default.jsonc: balanced setup with all agents documented - coding-focused.jsonc: Sisyphus + Hephaestus heavy - planning-focused.jsonc: Prometheus + Atlas heavy All examples include every agent (sisyphus, hephaestus, atlas, prometheus, explore, librarian) with model recommendations. Helps with #2823
60 lines
1.9 KiB
JSON
60 lines
1.9 KiB
JSON
// oh-my-openagent default configuration
|
|
// Copy this file to your project root as .opencode/oh-my-openagent.jsonc
|
|
// or to ~/.config/opencode/oh-my-openagent.jsonc for global config.
|
|
//
|
|
// The legacy name oh-my-opencode.jsonc is also supported.
|
|
{
|
|
// Agent model overrides
|
|
// Each agent can be configured with a specific model, variant, and prompt.
|
|
"agents": {
|
|
// Sisyphus: Main worker agent. Handles coding, debugging, refactoring.
|
|
// Best with: Opus (strongest), Sonnet (good), GPT 5.4 (officially supported)
|
|
"sisyphus": {
|
|
"model": "anthropic/claude-sonnet-4-6"
|
|
},
|
|
|
|
// Hephaestus: Deep autonomous worker, optimized for GPT models.
|
|
// Best with: GPT-5.3-codex (primary), GPT 5.4
|
|
"hephaestus": {
|
|
"model": "openai/gpt-5.3-codex"
|
|
},
|
|
|
|
// Atlas: Orchestrator agent. Reads plans and delegates tasks to Sisyphus-Junior.
|
|
// Best with: Opus (recommended), GPT (has optimized prompt)
|
|
"atlas": {
|
|
"model": "anthropic/claude-sonnet-4-6"
|
|
},
|
|
|
|
// Prometheus: Strategic planner. Creates detailed work plans.
|
|
// Best with: Opus (recommended)
|
|
"prometheus": {
|
|
"model": "anthropic/claude-opus-4-6"
|
|
},
|
|
|
|
// Explore: Codebase explorer (grep, file listing). Lightweight and fast.
|
|
"explore": {
|
|
"model": "anthropic/claude-haiku-4-5"
|
|
},
|
|
|
|
// Librarian: External documentation and code search.
|
|
"librarian": {
|
|
"model": "anthropic/claude-haiku-4-5"
|
|
}
|
|
},
|
|
|
|
// Category configurations for Sisyphus-Junior tasks
|
|
// Categories control which model is used when Atlas delegates work.
|
|
"categories": {
|
|
"quick": {
|
|
"model": "anthropic/claude-sonnet-4-6",
|
|
"variant": "normal",
|
|
"description": "Fast tasks: scaffolding, simple fixes, file moves"
|
|
},
|
|
"deep": {
|
|
"model": "anthropic/claude-sonnet-4-6",
|
|
"variant": "max",
|
|
"description": "Complex tasks: architecture, multi-file refactoring"
|
|
}
|
|
}
|
|
}
|