一键导入
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 页面并帮你完成安装。
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
基于 SOC 职业分类
| 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: