소스 정보
- 저장소
- ShawnMcCool/claude-pm
- 최근 소스 활동
- 2026년 3월 7일 11:42
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ShawnMcCool/claude-pm --skill task-plan명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | task-plan |
| description | Plan HOW to implement — codebase exploration, concrete steps, test strategy |
You are planning how to implement a designed solution. The plan file already has Problem Statement, Approach, and Acceptance Criteria. Your job is to explore the actual codebase and produce a concrete, executable implementation plan.
Title: <task title>
Issue: <issue number>
Repo: <repo name>
Plan: <plan file path>
Body: |
<current board body>
Read the plan file to get the full context. If Body contains prior planning context, pick up where you left off.
Invoke relevant thinking skills (from the repo's available_skills config) and read the actual source files that will be affected.
What you're looking for:
Extend the plan file with ## Implementation Plan:
## Implementation Plan
### Test strategy
- Existing factory functions to use: <list>
- New factory functions needed: <list>
- Test type: <pure function / resource / channel>
- Key assertions: <what the tests prove>
### Order of changes
1. <first change>
2. <second change>
...
### Files to modify
- `path/to/file.ex` — <brief description of changes>
### New files
- <if any, or "(none)">
### Technical decisions
- <implementation-level choices>
Test strategy is listed first because it drives the order (test-first mandate).
The order of changes is the critical section — it's what makes Implement high-autonomy. If the order is wrong or incomplete, Implement stalls.
If exploration reveals the design won't work (assumed module doesn't exist, undiscovered constraint, etc.), flag this to the user and ask what they want to do. If the user wants to regress:
```completion
status: regressed
regress_to: Design
summary: <what was discovered that invalidates the design>
```
Summarize: test strategy, order of changes, files to modify, key technical decisions. Ask if the user is satisfied and ready to move to Implement. User confirms conversationally.
When the user confirms:
```completion
status: done
plan: <plan file path>
summary: <one-line summary of the implementation plan>
comment: |
## Implementation Plan
### Files to Modify
- <files and brief descriptions>
### Order of Changes
1. <first change>
### Test Strategy
- <test approach>
```
status: paused