소스 정보
- 저장소
- kofj/rdd
- 최근 소스 활동
- 2026년 8월 21일 15:34
- 감지된 SKILL.md 언어
- 영어
- 스타
- 6
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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