ulw-plan (Prometheus Planning Consultant)
Turns Claude into an explore-first planning consultant that grounds in your repo, asks only the real owner-decisions, and writes one decision-complete plan after you approve.
Dev & CodingAdvanced★ 67,531⑂ 5,507AI score 7/10Last updated: Aug 9, 2026
What it does
- Puts Claude into the Prometheus persona: a planner that never edits product code and only writes plan artifacts under
.omo/. - Runs parallel read-only exploration (CodeGraph, Grep/Glob/LSP, external docs research) so discoverable facts are researched, not asked.
- Classifies the request as
CLEARorUNCLEAR, announces the verdict, and surfaces questions only for genuine owner-decisions (irreversible, safety-critical, public config, dependencies, schema shape). - Waits for an explicit "okay" before writing the plan; each todo carries file references, acceptance criteria, agent-executed QA (happy + failure paths) and a commit unit.
- Honors "high accuracy" modifiers by flipping a review gate (
momus+ an independent CLI review) that must pass before handoff.
Who it's for
- Developers who want a locked spec before handing a large change to an AI implementer.
- Teams burned by agents that jump straight to code and build the wrong thing.
- Agent power users who separate planning sessions from execution sessions.
Examples
ulw-plan add a 5/min-per-IP rate limit to /login→ routed CLEAR, explores middleware conventions, asks only the storage/config fork, then writes the plan after approval.ulw plan make auth better→ routed UNCLEAR, researches and announces best-practice defaults instead of interviewing you, and auto-runs the high-accuracy review.plan this migration, ultra high accuracy→ plan is drafted, thenmomusplus an independent review are forced before the handoff summary.
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the packages/omo-codex/plugin/skills/ulw-plan folder from the GitHub repo code-yeongyu/oh-my-openagent into my ~/.claude/skills/code-yeongyu-ulw-plan/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/oh-my-openagent && mkdir -p ~/.claude/skills && cp -r /tmp/oh-my-openagent/packages/omo-codex/plugin/skills/ulw-plan ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repository:
git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/oh-my-openagent - Create the skills directory if needed:
mkdir -p ~/.claude/skills - Copy the whole skill folder (the bundled
scripts/andreferences/must come along or the workflow breaks):cp -r /tmp/oh-my-openagent/packages/omo-codex/plugin/skills/ulw-plan ~/.claude/skills/ - Make sure
node(orbun) is installed — the plan scaffold script needs it. - Restart Claude Code and type
ulw-plan <what you want built>; you should seeULW-PLAN MODE ENABLED!as the first line. - Answer any questions, reply "okay" to approve, and the plan lands in
.omo/plans/<slug>.md. Run execution in a separate session (e.g.$start-work).
View source on GitHub ↗License: NOASSERTION