feat(doctor): warn on legacy package name + add example configs
- 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
This commit is contained in:
50
docs/examples/coding-focused.jsonc
Normal file
50
docs/examples/coding-focused.jsonc
Normal file
@@ -0,0 +1,50 @@
|
||||
// oh-my-openagent coding-focused configuration
|
||||
// Optimized for hands-on coding: Sisyphus + Hephaestus as primary workers.
|
||||
// Uses stronger models for implementation, lighter models for support agents.
|
||||
{
|
||||
"agents": {
|
||||
// Sisyphus with GPT 5.4 — strong coding performance
|
||||
"sisyphus": {
|
||||
"model": "openai/gpt-5.4",
|
||||
"variant": "high"
|
||||
},
|
||||
|
||||
// Hephaestus with GPT-5.3-codex — deep autonomous coding
|
||||
"hephaestus": {
|
||||
"model": "openai/gpt-5.3-codex",
|
||||
"variant": "max"
|
||||
},
|
||||
|
||||
// Atlas for orchestration when using /start-work
|
||||
"atlas": {
|
||||
"model": "anthropic/claude-sonnet-4-6",
|
||||
"variant": "max"
|
||||
},
|
||||
|
||||
// Prometheus for planning (Opus for best results)
|
||||
"prometheus": {
|
||||
"model": "anthropic/claude-opus-4-6",
|
||||
"variant": "max"
|
||||
},
|
||||
|
||||
// Lightweight agents for support tasks
|
||||
"explore": {
|
||||
"model": "anthropic/claude-haiku-4-5"
|
||||
},
|
||||
"librarian": {
|
||||
"model": "opencode-go/kimi-k2.5"
|
||||
}
|
||||
},
|
||||
|
||||
"categories": {
|
||||
"quick": {
|
||||
"model": "anthropic/claude-sonnet-4-6",
|
||||
"description": "Fast implementation tasks"
|
||||
},
|
||||
"deep": {
|
||||
"model": "openai/gpt-5.4",
|
||||
"variant": "high",
|
||||
"description": "Complex multi-file changes"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user