2026-03-26 17:01:42 +09:00
{
2026-05-08 17:10:53 +09:00
"$schema" : "https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/assets/oh-my-opencode.schema.json" ,
2026-03-26 18:04:31 +09:00
// Optimized for strategic planning, architecture, and complex project design.
// Prioritizes deep thinking agents and thorough analysis before execution.
2026-03-26 17:01:42 +09:00
"agents" : {
2026-03-26 18:04:31 +09:00
// Orchestrator: delegates to planning agents first
2026-03-26 17:01:42 +09:00
"sisyphus" : {
2026-04-17 14:52:19 +09:00
"model" : "anthropic/claude-opus-4-7" ,
"ultrawork" : { "model" : "anthropic/claude-opus-4-7" , "variant" : "max" } ,
2026-03-26 18:04:31 +09:00
"prompt_append" : "Always consult prometheus and atlas for planning. Never rush to implementation." ,
2026-03-26 17:01:42 +09:00
} ,
2026-03-26 18:04:31 +09:00
// Implementation: uses planning outputs
2026-03-26 17:01:42 +09:00
"hephaestus" : {
2026-04-28 08:44:34 +09:00
"model" : "openai/gpt-5.5" ,
2026-03-26 18:04:31 +09:00
"prompt_append" : "Follow established plans precisely. Ask for clarification when plans are ambiguous." ,
2026-03-26 17:01:42 +09:00
} ,
2026-03-26 18:04:31 +09:00
// Primary planner: deep interview mode
"prometheus" : {
2026-04-17 14:52:19 +09:00
"model" : "anthropic/claude-opus-4-7" ,
2026-03-26 18:04:31 +09:00
"thinking" : { "type" : "enabled" , "budgetTokens" : 160000 } ,
"prompt_append" : "Interview extensively. Question assumptions. Build exhaustive plans with milestones, risks, and contingencies. Use deep & quick agents heavily in parallel for research." ,
2026-03-26 17:01:42 +09:00
} ,
2026-03-26 18:04:31 +09:00
// Architecture consultant
"oracle" : {
2026-04-28 08:44:34 +09:00
"model" : "openai/gpt-5.5" ,
2026-03-26 18:04:31 +09:00
"variant" : "xhigh" ,
"thinking" : { "type" : "enabled" , "budgetTokens" : 120000 } ,
} ,
// Research and documentation
"librarian" : { "model" : "google/gemini-3-flash" } ,
// Exploration for research phase
"explore" : { "model" : "github-copilot/grok-code-fast-1" } ,
// Visual planning and diagrams
"multimodal-looker" : { "model" : "google/gemini-3.1-pro" , "variant" : "high" } ,
// Plan review and refinement: heavily utilized
"metis" : {
2026-04-17 14:52:19 +09:00
"model" : "anthropic/claude-opus-4-7" ,
2026-03-26 18:04:31 +09:00
"prompt_append" : "Critically evaluate plans. Identify gaps, risks, and improvements. Be thorough." ,
} ,
// Critic: challenges assumptions
"momus" : {
2026-04-28 08:44:34 +09:00
"model" : "openai/gpt-5.5" ,
2026-03-26 18:04:31 +09:00
"prompt_append" : "Challenge all assumptions in plans. Look for edge cases, failure modes, and overlooked requirements." ,
2026-03-26 17:01:42 +09:00
} ,
2026-03-26 18:04:31 +09:00
// Long-running planning sessions
"atlas" : {
"prompt_append" : "Preserve context across long planning sessions. Track evolving decisions." ,
2026-03-26 17:01:42 +09:00
} ,
2026-03-26 18:04:31 +09:00
// Quick research tasks
"sisyphus-junior" : { "model" : "opencode/gpt-5-nano" } ,
2026-03-26 17:01:42 +09:00
} ,
"categories" : {
2026-03-26 18:04:31 +09:00
"quick" : { "model" : "opencode/gpt-5-nano" } ,
"unspecified-low" : { "model" : "anthropic/claude-sonnet-4-6" } ,
// High-effort planning tasks: maximum reasoning
"unspecified-high" : {
2026-04-28 08:44:34 +09:00
"model" : "openai/gpt-5.5" ,
2026-03-26 18:04:31 +09:00
"variant" : "xhigh" ,
} ,
// Documentation from plans
2026-05-18 21:39:10 +09:00
"writing" : { "model" : "kimi-for-coding/k2p5" } ,
2026-03-26 18:04:31 +09:00
// Visual architecture
"visual-engineering" : { "model" : "google/gemini-3.1-pro" , "variant" : "high" } ,
// Deep research and analysis
2026-04-28 08:44:34 +09:00
"deep" : { "model" : "openai/gpt-5.5" } ,
2026-03-26 18:04:31 +09:00
// Strategic reasoning
2026-04-28 08:44:34 +09:00
"ultrabrain" : { "model" : "openai/gpt-5.5" , "variant" : "xhigh" } ,
2026-03-26 18:04:31 +09:00
// Creative approaches to problems
"artistry" : { "model" : "google/gemini-3.1-pro" , "variant" : "high" } ,
} ,
// Moderate concurrency: planning is sequential by nature
"background_task" : {
"defaultConcurrency" : 5 ,
"staleTimeoutMs" : 300000 ,
"providerConcurrency" : {
"anthropic" : 3 ,
"openai" : 3 ,
2026-03-26 17:01:42 +09:00
} ,
2026-03-26 18:04:31 +09:00
"modelConcurrency" : {
2026-04-17 14:52:19 +09:00
"anthropic/claude-opus-4-7" : 2 ,
2026-04-28 08:44:34 +09:00
"openai/gpt-5.5" : 2 ,
2026-03-26 17:01:42 +09:00
} ,
2026-03-26 18:04:31 +09:00
} ,
"sisyphus_agent" : {
"planner_enabled" : true ,
"replace_plan" : true ,
} ,
"experimental" : { "aggressive_truncation" : true } ,
2026-03-26 17:01:42 +09:00
}