소스 정보
- 저장소
- bdarbaz/claude-stack-plugin
- 최근 소스 활동
- 2026년 3월 16일 20:39
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/bdarbaz/claude-stack-plugin --skill s-plan명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | s-plan |
| description | Create implementation roadmap with phases, tasks, and dependencies from requirements |
You are creating a detailed implementation roadmap from the gathered requirements. This skill transforms REQUIREMENTS.md into a phased ROADMAP.md with actionable tasks.
Before starting, read and verify:
.planning/REQUIREMENTS.md exists and has content. If not: "No requirements found. Run /s:discuss first.".planning/PROJECT.md for project vision and constraints..planning/STATE.md for current state.${CLAUDE_PLUGIN_ROOT}/lib/tdd-protocol.md for task structure guidance.If any docs/brainstorms/ files exist, read the most recent ones for additional context.
Before creating the roadmap, brainstorm 2-3 architecture approaches. For each approach:
Present all approaches to the user and recommend one with a clear rationale. Wait for user confirmation before proceeding.
If the tech stack is already decided (from PROJECT.md or REQUIREMENTS.md), focus the brainstorm on architectural patterns within that stack rather than stack selection.
Group requirements into implementation phases following these principles:
For each phase, define:
Each task should follow TDD-compatible structure:
Task {N}: {title}
- What: {what to implement}
- Test: {what test to write first}
- Files: {which files will be created/modified}
- Acceptance: {how to verify it works}
- Estimate: S/M/L (Small: <1hr, Medium: 1-4hr, Large: 4hr+)
Write .planning/ROADMAP.md with this structure:
# Roadmap
## Architecture
**Approach:** {chosen approach name}
**Rationale:** {why this approach was chosen}
**Key decisions:**
- {decision 1}
- {decision 2}
## Phase Overview
| Phase | Name | Goal | Tasks | Dependencies | Status |
|-------|------|------|-------|--------------|--------|
| 1 | {name} | {goal} | {count} | - | pending |
| 2 | {name} | {goal} | {count} | Phase 1 | pending |
| ... | ... | ... | ... | ... | ... |
---
## Phase 1: {Name}
**Goal:** {one sentence}
**Success Criteria:**
- [ ] {criterion 1}
- [ ] {criterion 2}
**Requirements:** R1, R2, NF1
### Tasks
#### Task 1.1: {Title}
- **What:** {description}
- **Test first:** {what test to write}
- **Files:** {file list}
- **Acceptance:** {verification method}
- **Estimate:** {S/M/L}
#### Task 1.2: {Title}
...
---
## Phase 2: {Name}
...
Create the directory and detailed plan for the first phase:
.planning/phases/1/ directory.planning/phases/1/PLAN.md:# Phase 1: {Name}
**Status:** pending
**Started:** -
**Completed:** -
## Goal
{expanded goal description}
## Tasks
### Task 1.1: {Title}
**Status:** pending
**Description:**
{detailed description of what to implement}
**TDD Approach:**
1. Write test: {describe the test}
2. Run test (should FAIL - RED)
3. Implement: {describe minimal implementation}
4. Run test (should PASS - GREEN)
5. Refactor: {what to clean up}
**Files to create/modify:**
- {file 1}: {what goes here}
- {file 2}: {what goes here}
**Acceptance Criteria:**
- [ ] {criterion}
- [ ] {criterion}
---
### Task 1.2: {Title}
...
.planning/phases/1/CONTEXT.md:# Phase 1 Context
## What this phase is about
{2-3 sentences}
## Key decisions made
- {decision from brainstorm}
## Dependencies
- {what must exist before this phase starts}
## Reference
- Architecture approach: {name} (see ROADMAP.md)
- Requirements: {list of R/NF IDs}
Update .planning/STATE.md:
planned1{DATE} | Architecture: {approach} | {rationale summary}{DATE} | Roadmap created | {N} phases, {M} total tasksOutput to the user:
Roadmap created with {N} phases and {M} total tasks.
Architecture: {approach name}
Phase 1: {phase name} ({task count} tasks)
Saved to:
.planning/ROADMAP.md - Full roadmap
.planning/phases/1/PLAN.md - Phase 1 detailed plan
.planning/phases/1/CONTEXT.md - Phase 1 context
Next step: Run `/s:build` to start implementing Phase 1 with TDD.
Optional:
- Run `/s:ceo-review` for product perspective review of the plan
- Run `/s:eng-review` for technical review of the architecture
- Run `/s:brainstorm` to explore a specific aspect deeper before building
SOC 직업 분류 기준