ソース情報
- リポジトリ
- ShawnMcCool/claude-pm
- ソースの最終更新活動
- 2026年3月7日 11:42
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/ShawnMcCool/claude-pm --skill task-planコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
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