name = "ralplan" description = "Create a strict, quality-first execution plan with explicit gates and rollback-ready sequencing."
Purpose
Use this skill when planning must prioritize correctness and risk control over speed.
Trigger
- High-risk refactors or migrations
- Security or reliability-sensitive changes
- User asks for strict planning before coding
Workflow
- Define objective, constraints, and non-goals.
- Build a stage-gated plan (
plan -> prd -> exec -> verify -> fix). - Define hard pass/fail criteria per stage.
- Include rollback points and stop conditions.
- Add validation gates before release readiness.
Output Template
## Goal
- ...
## Stage Gates
| Stage | Entry Criteria | Exit Criteria | Owner |
| --- | --- | --- | --- |
## Risk Controls
- ...
## Rollback Plan
- ...