| name | ralplan |
| aliases | ["/ralplan","consensus plan","consensus planning"] |
| primaryRole | orchestrator |
| description | Run iterative planner, architect, and critic consensus on an execution plan. Use when a task needs structured plan review before implementation. |
Ralplan Skill (oh-my-antigravity)
Quick Start
- Run planner, architect, and critic review rounds until the plan converges or the round limit is reached.
Consensus-based planning that iterates until planner, architect, and critic agree.
Quick Start
- The task is complex enough that a single planning pass is insufficient
- Architecture decisions need structured debate before execution
- High-risk work requires pre-mortem analysis
Workflow
Standard (default)
- Planner drafts execution plan with task decomposition
- Architect reviews for technical soundness and boundary issues
- Critic challenges for completeness, risks, and missing edge cases
- Iterate until all three agents converge (max 3 rounds)
- Output: approved plan synced to
/omg:taskboard
Deliberate (--deliberate flag, for high-risk work)
Adds to standard workflow:
- Pre-mortem: "Assume this plan failed — what went wrong?"
- Test strategy: Unit, integration, e2e, and observability planning
- Rollback plan: How to undo if things go wrong
- Extra iteration round allowed (max 4 total)
Convergence criteria
- All three agents approve the plan
- No unresolved HIGH severity concerns
- Acceptance criteria are testable
- Dependencies are acyclic
Output format
## Plan: [Title]
### Phases
Phase 1: [tasks, owners, dependencies]
Phase 2: ...
### Consensus
- Planner: APPROVE
- Architect: APPROVE (with note: ...)
- Critic: APPROVE
### Risk Register
| Risk | Impact | Mitigation |
Related commands
/omg:consensus — general decision convergence
/omg:team/plan — team-scoped planning
/omg:taskboard sync — sync plan to task ledger