用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/kofj/rdd --skill rdd-roadmap命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | rdd-roadmap |
| description | View and manage project roadmap stages - add, modify, reorder, and track progress |
Purpose: Operational guide for creating, modifying, and tracking the project roadmap
The roadmap (docs/stages/stage-roadmap.md) is the central artifact for RDD. It defines the sequence of stages, their dependencies, and tracks overall project progress. This skill provides step-by-step instructions for roadmap operations.
When starting a new RDD project, create the roadmap file at docs/stages/stage-roadmap.md.
Steps:
Create the directory structure:
mkdir -p docs/stages
Initialize the roadmap file using the template from rdd-templates.md:
Essential sections to include:
A minimal roadmap should have at least:
Add a new stage when:
Determine the stage number:
Identify dependencies:
Update the Stage Overview table:
Add Stage Details section:
Update the Dependency Graph:
Record in Roadmap History:
## Stage Overview (Updated)
| Stage | Title | Status | Priority | Dependencies |
|-------|-------|--------|----------|--------------|
| 0 | Foundation | Complete | P0 | None |
| 1 | Core Feature A | Complete | P0 | Stage 0 |
| 2 | Core Feature B | In Progress | P0 | Stage 1 |
| 3 | Integration | Planning | P1 | Stage 1, Stage 2 |
### Stage 3: Integration
**Status**: Planning
**Goal**: Integrate Feature A and Feature B for end-to-end workflow
**Prerequisites**: Stage 1 and Stage 2 must complete
**Estimated Effort**: Medium
## Roadmap History
| Date | Change | Reason |
|------|--------|--------|
| 2026-03-06 | Added Stage 3: Integration | Needed to connect completed features |
Reorder stages when:
IMPORTANT: Reordering stages may require renumbering, which affects:
stage-N.md)stage-N-review-log.md)Steps:
Assess impact:
docs/stages/stage-*.md, docs/08-autonomous-decisions.md, docs/12-technical-debt.md, CHANGELOG.mdCreate a mapping table:
Old Number -> New Number
Stage 2 -> Stage 3
Stage 3 -> Stage 2
Rename stage files:
# Temporarily move to avoid conflicts
mv docs/stages/stage-2.md docs/stages/stage-2-temp.md
mv docs/stages/stage-3.md docs/stages/stage-2.md
mv docs/stages/stage-2-temp.md docs/stages/stage-3.md
# Also rename review logs if they exist
Update internal references:
Update the roadmap:
Update cross-references:
Record in Roadmap History:
| 2026-03-06 | Reordered: Stage 2 <-> Stage 3 | Dependency resolution required integration first |
Stage status transitions follow this lifecycle:
Planning -> In Progress -> Review -> Complete
|
v
Blocked
Status Definitions:
Update progress at these checkpoints:
Starting a stage:
Stage blocked:
Stage unblocked:
Stage complete:
Calculate progress as:
Progress = (Completed Stages / Total Stages) * 100
Or more nuanced:
Progress = (Sum of stage weights * completion) / Total weight
Example:
**Overall Progress**: 40% (2/5 stages complete)
| Stage | Weight | Status | Progress |
|-------|--------|--------|----------|
| 0 | 1 | Complete | 100% |
| 1 | 2 | Complete | 100% |
| 2 | 3 | In Progress | 60% |
| 3 | 2 | Planning | 0% |
| 4 | 1 | Planning | 0% |
Weighted Progress: (1*1 + 2*1 + 3*0.6 + 2*0 + 1*0) / (1+2+3+2+1) = 4.8/9 = 53%
The "Current Focus" section should always reflect the active work:
## Current Focus
**Active Stage**: Stage 2
**Current Objective**: Implementing user authentication
**Blockers**: None
**Next Milestone**: Complete auth flow E2E tests
Update this section whenever:
docs/stages/stage-roadmap.md
| Status | Meaning |
|---|---|
| Planning | Not started |
| In Progress | Active development |
| Review | Implementation done, under review |
| Blocked | Cannot proceed |
| Complete | Finished and verified |
| Priority | Meaning |
|---|---|
| P0 | Must complete for MVP |
| P1 | Important for complete experience |
| P2 | Nice to have |
| P3 | Future consideration |
For templates and related skills:
.claude/skills/rdd-templates/SKILL.md - Document templates including Roadmap Template.claude/skills/rdd-core/SKILL.md - Core RDD concepts and workflow