Files
oh-my-opencode/packages/omo-codex/plugin
YeonGyu-Kim ae757005a3 refactor(omo-codex): move metis/momus from skills to agent TOMLs, rewrite prometheustic
metis/momus are Codex subagents, not skills. Move them to
components/ultrawork/agents/ as TOML agent role files:

- metis.toml: gpt-5.5 high, pre-planning analyst that detects
  contradictions, ambiguity, missing constraints, and execution risks.
  Ouroboros/ralplan-inspired gap analysis. Read-only.

- momus.toml: gpt-5.5 xhigh, plan reviewer with OKAY/ITERATE/REJECT
  three-verdict system. Blocker-finder with approval bias. Read-only.

planing-prometheustic SKILL.md rewritten to match the structure of
packages/prompts-core/prompts/prometheus/gpt.md (the omo Prometheus
GPT-5.5 prompt):
- Same XML-tagged sections: identity, mission, core_principles,
  output_verbosity_spec, scope_constraints, phases, plan_template,
  critical_rules, stop_rules
- Same phase flow: Classify Intent -> Ground -> Interview -> Plan
  Generation (with Metis) -> High Accuracy Review (with Momus)
- Metis called via spawn_agent(agent_type="metis") not skill load
- Momus called via spawn_agent(agent_type="momus") not skill load
- "Rigorous Review" renamed to "High Accuracy Review"
- Removed shared-skills/skills/metis/ and momus/ (deleted)
- sync-skills.mjs no longer copies metis/momus into plugin/skills/
2026-05-28 14:57:05 +09:00
..

omo

omo is the single local Codex plugin namespace for Yeongyu's Codex components.

Internally each component remains isolated under components/:

  • components/comment-checker
  • components/rules
  • components/lsp
  • components/ultrawork
  • components/ultragoal

The root plugin manifest exports one Codex plugin named omo, with aggregate hooks, skills, and the LSP MCP server.