Install
npx skillscat add yeachan-heo/oh-my-claudecode/ralplan Install via the SkillsCat registry.
SKILL.md
Ralplan (Consensus Planning Alias)
Ralplan is a shorthand alias for /oh-my-claudecode:plan --consensus. It triggers iterative planning with Planner, Architect, and Critic agents until consensus is reached.
Usage
/oh-my-claudecode:ralplan "task description"Flags
--interactive: Enables user prompts at key decision points (draft review in step 2 and final approval in step 6). Without this flag the workflow runs fully automated — Planner → Architect → Critic loop — and outputs the final plan without asking for confirmation.
Usage with interactive mode
/oh-my-claudecode:ralplan --interactive "task description"Behavior
This skill invokes the Plan skill in consensus mode:
/oh-my-claudecode:plan --consensus <arguments>The consensus workflow:
- Planner creates initial plan
- User feedback (--interactive only): If
--interactiveis set, useAskUserQuestionto present the draft plan before review (Proceed to review / Request changes / Skip review). Otherwise, automatically proceed to review. - Architect reviews for architectural soundness — await completion before step 4
- Critic evaluates against quality criteria — run only after step 3 completes
- If Critic rejects: iterate with feedback (max 5 iterations)
- On Critic approval (--interactive only): If
--interactiveis set, useAskUserQuestionto present the plan with approval options (Approve and execute via ralph / Approve and implement via team / Clear context and implement / Request changes / Reject). Otherwise, output the final plan and stop. - (--interactive only) User chooses: Approve (ralph or team), Request changes, or Reject
- (--interactive only) On approval: invoke
Skill("oh-my-claudecode:ralph")for sequential execution orSkill("oh-my-claudecode:team")for parallel team execution -- never implement directly
Important: Steps 3 and 4 MUST run sequentially. Do NOT issue both agent Task calls in the same parallel batch. Always await the Architect result before issuing the Critic Task.
Follow the Plan skill's full documentation for consensus mode details.