810e3c7a51
Audit pass against root AGENTS.md (regenerated 2026-05-08) and the canonical sources in src/shared/model-requirements.ts, src/features/team-mode/, src/cli/, src/config/schema/. Each touched file keeps its existing tone but corrects stale facts: - guide/overview.md: project name + dual-package transition reality - guide/installation.md: bun-only invocation, dual oh-my-openagent / oh-my-opencode CLI surface, current doctor categories - guide/orchestration.md: 11 agents, category routing through sisyphus-junior, background concurrency, team-mode link - guide/agent-model-matching.md: Metis primary -> claude-sonnet-4-6 (matches src/shared/model-requirements.ts fallback chain) - guide/team-mode.md: full schema, member eligibility tiers, 12 team_* tools added when enabled - reference/cli.md: trim to current Commander surface (install, doctor, run, mcp-oauth, refresh-model-capabilities, get-local-version) - reference/configuration.md: trim to schema-driven reference, JSONC rules, multi-level merge order, mcp_env_allowlist user-only constraint - reference/features.md: 5-tier hook composition counts, 3-tier MCPs, hashline edit, IntentGate, OpenClaw bidirectional dispatcher Cross-cutting: every `oh-my-opencode.schema.json` URL replaced with the canonical `oh-my-openagent.schema.json` (legacy package name in text bodies preserved where it documents the dual-publish transition).
113 lines
3.5 KiB
JSON
113 lines
3.5 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/assets/oh-my-openagent.schema.json",
|
|
|
|
// Optimized for strategic planning, architecture, and complex project design.
|
|
// Prioritizes deep thinking agents and thorough analysis before execution.
|
|
|
|
"agents": {
|
|
// Orchestrator: delegates to planning agents first
|
|
"sisyphus": {
|
|
"model": "anthropic/claude-opus-4-7",
|
|
"ultrawork": { "model": "anthropic/claude-opus-4-7", "variant": "max" },
|
|
"prompt_append": "Always consult prometheus and atlas for planning. Never rush to implementation.",
|
|
},
|
|
|
|
// Implementation: uses planning outputs
|
|
"hephaestus": {
|
|
"model": "openai/gpt-5.5",
|
|
"prompt_append": "Follow established plans precisely. Ask for clarification when plans are ambiguous.",
|
|
},
|
|
|
|
// Primary planner: deep interview mode
|
|
"prometheus": {
|
|
"model": "anthropic/claude-opus-4-7",
|
|
"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.",
|
|
},
|
|
|
|
// Architecture consultant
|
|
"oracle": {
|
|
"model": "openai/gpt-5.5",
|
|
"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": {
|
|
"model": "anthropic/claude-opus-4-7",
|
|
"prompt_append": "Critically evaluate plans. Identify gaps, risks, and improvements. Be thorough.",
|
|
},
|
|
|
|
// Critic: challenges assumptions
|
|
"momus": {
|
|
"model": "openai/gpt-5.5",
|
|
"prompt_append": "Challenge all assumptions in plans. Look for edge cases, failure modes, and overlooked requirements.",
|
|
},
|
|
|
|
// Long-running planning sessions
|
|
"atlas": {
|
|
"prompt_append": "Preserve context across long planning sessions. Track evolving decisions.",
|
|
},
|
|
|
|
// Quick research tasks
|
|
"sisyphus-junior": { "model": "opencode/gpt-5-nano" },
|
|
},
|
|
|
|
"categories": {
|
|
"quick": { "model": "opencode/gpt-5-nano" },
|
|
|
|
"unspecified-low": { "model": "anthropic/claude-sonnet-4-6" },
|
|
|
|
// High-effort planning tasks: maximum reasoning
|
|
"unspecified-high": {
|
|
"model": "openai/gpt-5.5",
|
|
"variant": "xhigh",
|
|
},
|
|
|
|
// Documentation from plans
|
|
"writing": { "model": "google/gemini-3-flash" },
|
|
|
|
// Visual architecture
|
|
"visual-engineering": { "model": "google/gemini-3.1-pro", "variant": "high" },
|
|
|
|
// Deep research and analysis
|
|
"deep": { "model": "openai/gpt-5.5" },
|
|
|
|
// Strategic reasoning
|
|
"ultrabrain": { "model": "openai/gpt-5.5", "variant": "xhigh" },
|
|
|
|
// 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,
|
|
},
|
|
"modelConcurrency": {
|
|
"anthropic/claude-opus-4-7": 2,
|
|
"openai/gpt-5.5": 2,
|
|
},
|
|
},
|
|
|
|
"sisyphus_agent": {
|
|
"planner_enabled": true,
|
|
"replace_plan": true,
|
|
},
|
|
|
|
"experimental": { "aggressive_truncation": true },
|
|
}
|