ワンクリックで
roadmap-builder
Interactive roadmap creation through structured questioning, optimized for ephemeral execution
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Interactive roadmap creation through structured questioning, optimized for ephemeral execution
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Execute a single phase from roadmap to working code autonomously
Generate comprehensive handoff documentation optimized for AI agent takeover by analyzing project structure, design docs, and codebase
| name | roadmap-builder |
| description | Interactive roadmap creation through structured questioning, optimized for ephemeral execution |
| when_to_use | when user wants to create a new development roadmap |
| version | 3.0.0 |
Create execution-ready roadmap through one-question-at-a-time dialogue.
Ask questions one at a time. Use AskUserQuestion tool with clear options.
1. Project name?
2. Programming language?
3. Test command?
pytest tests/ -vgo test ./... -race -covercargo testnpm test or jestmvn test or gradle test4. Lint command?
ruff check . or pylintgolangci-lint run ./...cargo clippy --all-targetseslint .mvn checkstyle:check5. One-sentence project goal?
6. How many phases?
7-N. For each phase, ask:
After gathering all info, create roadmap at:
docs/roadmaps/[YYYY-MM-DD]-[project-name-slug]-roadmap.yml
Format:
proj:
name: "[Project Name]"
lang: "[Language]"
test: "[Test Command]"
lint: "[Lint Command]"
goal: "[One-sentence goal]"
phases:
- id: 0
name: "[Phase Name]"
goal: "[Phase goal]"
success:
- "[Success criterion 1]"
- "[Success criterion 2]"
- "[Success criterion 3]"
- id: 1
name: "[Phase Name]"
goal: "[Phase goal]"
success:
- "[Success criterion 1]"
- "[Success criterion 2]"
Check:
Display:
✅ Roadmap created: docs/roadmaps/[filename]
Project: [name]
Language: [lang]
Phases: [count]
To execute:
/autonomous-dev docs/roadmaps/[filename]
To review first:
cat docs/roadmaps/[filename]
Phase granularity:
Success criteria:
Phase sequencing:
Examples:
Good success criteria:
Bad success criteria: