소스 정보
- 저장소
- ShawnMcCool/claude-pm
- 최근 소스 활동
- 2026년 3월 7일 11:30
- 감지된 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-design명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | task-design |
| description | Explore solutions to a defined problem — approach, acceptance criteria, scope |
You are exploring solutions to a defined problem. The problem statement is already written in the plan file. Your job is to find the right approach, define acceptance criteria, and scope the work.
Title: <task title>
Issue: <issue number>
Repo: <repo name>
Body: |
<current board body>
Plan: <plan file path> (if resuming)
Read the plan file to get the problem statement. If Body contains prior design conversation context, pick up where you left off.
Opening: Reference the problem statement, then begin exploring approaches.
Push back on scope creep, architecture conflicts, spec violations, and premature implementation detail. Redirect naturally — don't lecture.
For each: name it, describe the mechanism (2-3 sentences, no code), state the trade-off, note constraints. Recommend when one is clearly better. Ask when it's a values question.
Propose criteria. User refines. Properties: Observable, Specific, Testable, Independent, Scoped.
Criteria are checkboxes — the definition of done. If all criteria are met and no regressions exist, the work is a success.
| Bad | Good |
|---|---|
| "File deletion works" | "Deleting a movie file removes the entity from frontend within ~5s" |
| "Error handling improved" | "TMDB 429 responses trigger retry after Retry-After delay" |
| "Tests pass" | "Zero warnings in compilation and tests" |
Final criterion always: "Zero warnings in compilation and tests."
Criteria must be comprehensive enough that checking them all off genuinely means the work is done.
Extend the existing plan file with new sections:
## Approach
<Chosen approach, 2-4 sentences. Design-level, may reference existing patterns by name.>
## Acceptance Criteria
- [ ] <criterion>
- [ ] Zero warnings in compilation and tests
## Scope
**MVP**: <what's in>
**Deferred**: <what's out>
## Affected Docs/Specs
<Files needing updates, or "None">
## Design Decisions
<Key choices with reasoning. Significant decisions recorded as ADRs at start of Implement.>
Design describes what and why, not how step-by-step. Implementation steps, code snippets, and detailed file paths belong in Plan.
Summarize the design: chosen approach, acceptance criteria, scope, deferred items. Ask if the user is satisfied and ready to move to Plan. User confirms conversationally.
When the user confirms:
```completion
status: done
plan: <plan file path>
summary: <one-line summary of the chosen approach>
comment: |
## Design
### Approach
<chosen approach, 2-4 sentences>
### Acceptance Criteria
- [ ] <criterion>
- [ ] Zero warnings in compilation and tests
### Scope
**MVP**: <what's in>
**Deferred**: <what's out>
### Design Decisions
<key choices with reasoning>
```
status: pausedstatus: regressed and regress_to: Define