Install
npx skillscat add yeachan-heo/oh-my-codex/ralplan Install via the SkillsCat registry.
SKILL.md
Ralplan (Consensus Planning Alias)
Ralplan is a shorthand alias for /plan --consensus. It triggers iterative planning with Planner, Architect, and Critic agents until consensus is reached.
Usage
/ralplan "task description"
/ralplan --interactive "task description"Flags
| Flag | Description |
|---|---|
| (none) | Default non-interactive mode: auto-proceeds through all steps without pausing |
--interactive |
Pauses at draft feedback (step 2) and final approval (step 6) to prompt the user |
Behavior
This skill invokes the Plan skill in consensus mode:
/plan --consensus <arguments>
/plan --consensus --interactive <arguments>The consensus workflow (default — non-interactive):
- Planner creates initial plan
- (skipped in default mode) Auto-proceeds to Architect review
- Architect reviews for architectural soundness
- Critic evaluates against quality criteria
- If Critic rejects: iterate with feedback (max 5 iterations)
- (skipped in default mode) Auto-approves on Critic approval
- MUST invoke
/ralphfor execution -- never implement directly
With --interactive flag, steps 2 and 6 pause to ask the user via AskUserQuestion:
- Step 2 options: Proceed to review / Request changes / Skip review
- Step 6 options: Approve and execute / Request changes / Reject
Follow the Plan skill's full documentation for consensus mode details.