Skip to content

Configuration Reference

Don't want to write JSON by hand?

Use bunx omo-kit init — interactive prompts generate your full config. See how →

The oh-my-openagent.json file lives at ~/.config/opencode/oh-my-openagent.json.

Structure

json
{
  "disabled_skills": [],
  "disabled_mcps": [],
  "agents": {},
  "categories": {}
}

Disabled Skills

Skills or MCP servers you don't want active:

json
{
  "disabled_skills": ["playwright", "agent-browser"],
  "disabled_mcps": ["playwright", "browser"]
}

Agents

Each agent has a primary model and fallback chain:

json
{
  "agents": {
    "sisyphus": {
      "model": "opencode-go/deepseek-v4-pro",
      "fallback_models": [
        { "model": "opencode-go/glm-5.1" },
        { "model": "opencode-go/minimax-m2.7" }
      ]
    }
  }
}

Agent Types

AgentPurposeRecommended Model Tier
sisyphusMain orchestrator, routingPremium (deepseek-v4-pro, claude-sonnet)
oracleArchitecture, hard debuggingPremium (deepseek-v4-pro)
exploreCodebase searchMedium (minimax-m2.7, glm-5.1)
librarianExternal reference searchMedium
sisyphus-juniorTask executionMedium to Free
momusPlan reviewMedium
metisPre-planning analysisMedium

Categories

Categories are execution profiles with tuned models. They're used when Sisyphus delegates tasks:

json
{
  "categories": {
    "visual-engineering": {
      "model": "opencode-go/deepseek-v4-pro",
      "fallback_models": []
    },
    "deep": {
      "model": "opencode-go/deepseek-v4-pro",
      "fallback_models": []
    },
    "quick": {
      "model": "opencode-go/minimax-m2.5-free",
      "fallback_models": []
    }
  }
}
CategoryBest ForModel Tier
visual-engineeringUI, styling, designPremium
ultrabrainHard logic, architecturePremium
deepThorough autonomous workPremium
artistryCreative problem-solvingMedium
quickSingle-file fixes, typosFree
unspecified-lowSimple misc tasksFree
unspecified-highComplex misc tasksPremium
writingDocumentation, proseFree to Medium

Tip: Save costs by routing simple tasks to free models. Reserve premium models for creative and complex work.

Built with VitePress. Contribute on GitHub.