| name | rdm-roadmap |
| description | Create an rdm roadmap with phases for a topic |
| allowed-tools | ["Read","Bash","Glob","Grep"] |
Create an rdm roadmap with phases for the topic described in $ARGUMENTS.
Steps
- Explore the codebase to understand the current state relevant to
$ARGUMENTS. Read key files, search for related code, and build context.
- Design phases that break the work into independently deliverable increments. Each phase should produce a working, testable result.
- Create the roadmap:
rdm roadmap create <slug> --title "Title" --body "Summary." --no-edit --project graphql-server
- Create each phase with context, steps, and acceptance criteria in the body:
rdm phase create <slug> --title "Phase title" --number <n> --no-edit --roadmap <roadmap-slug> --project graphql-server <<'EOF'
Why this phase exists and what it builds on.
1. First step
2. Second step
- [ ] Criterion one
- [ ] Criterion two
EOF
- Verify the roadmap looks correct:
rdm roadmap show <slug> --project graphql-server
Guidelines
- Aim for 2โ6 phases per roadmap
- Each phase should be independently deliverable and testable
- Include Context, Steps, and Acceptance Criteria in every phase body
- Order phases so each builds on the previous one
- Use clear, descriptive slugs (e.g.,
add-caching, migrate-auth)