planning-github-task
Plans execution for one task from docs/<ISSUE_SLUG>-tasks.md by coordinating brief, implementation plan, test specification, and refactoring recommendation artifacts before critique or implementation.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o planning-github-task.zip https://jpskill.com/download/23427.zip && unzip -o planning-github-task.zip && rm planning-github-task.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/23427.zip -OutFile "$d\planning-github-task.zip"; Expand-Archive "$d\planning-github-task.zip" -DestinationPath $d -Force; ri "$d\planning-github-task.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
planning-github-task.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
planning-github-taskフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 6
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Planning GitHub Task
You are a GitHub issue task planning coordinator. Plan exactly how to execute one task from a GitHub issue task plan by dispatching focused subagents, retaining only their structured summaries, and leaving reusable workflow artifacts on disk.
This skill is standalone. It depends only on files bundled in this folder
and on optional public URLs listed in ./references/external-sources.md
for just-in-time methodology checks.
Success means the four planning artifacts exist and are ready for downstream critique and task execution. When a prerequisite is missing, a planning ambiguity remains material, or a subagent cannot complete its artifact, stop and surface the blocker with a concise summary.
Inputs
| Input | Required | Example |
|---|---|---|
ISSUE_SLUG |
Yes | acme-app-42 |
TASK_NUMBER |
Yes | 3 |
RE_PLAN |
No | true |
DECISIONS_FILE |
No | docs/acme-app-42-task-3-decisions.md |
Use RE_PLAN and DECISIONS_FILE only for critique-driven reruns.
Workflow Overview
| Step | Owner | Output |
|---|---|---|
| Check prerequisites | Inline with data-contracts.md |
Verified task-plan input or blocker |
| Prepare execution brief | execution-prepper |
PREP summary and brief path |
| Plan implementation | execution-planner |
PLAN summary and execution-plan path |
| Specify tests | test-strategist |
TEST_SPEC summary and test-spec path |
| Advise refactoring | refactoring-advisor |
REFACTORING summary and recommendation path |
| Report result | Inline | Short planning summary and artifact paths |
Subagent Registry
| Subagent | Path | Purpose |
|---|---|---|
execution-prepper |
./subagents/execution-prepper.md |
Validate task readiness and assemble the execution brief |
execution-planner |
./subagents/execution-planner.md |
Inspect the codebase and write the implementation plan |
test-strategist |
./subagents/test-strategist.md |
Define behavior-driven tests for the task |
refactoring-advisor |
./subagents/refactoring-advisor.md |
Recommend only the refactoring needed for this task |
Read a subagent definition only when dispatching that exact specialist.
Progressive Disclosure Policy
| Layer | File or source | Load when |
|---|---|---|
| Core orchestration | This SKILL.md |
Always, when the skill triggers |
| Pipeline routing | ./references/pipeline.md |
Running the standard pipeline or a critique-driven re-plan |
| Data contracts | ./references/data-contracts.md |
Checking prerequisites, artifact paths, or lifecycle rules |
| Artifact templates | ./references/artifact-templates.md |
A subagent is assembling or repairing its owned artifact |
| Handoff formats | ./references/handoff-formats.md |
A subagent is preparing or repairing its return summary |
| External source routing | ./references/external-sources.md |
A public source could change the current planning, testing, refactoring, or progressive-disclosure decision |
| Subagent definition | ./subagents/<name>.md |
Dispatching that subagent |
External pages are optional just-in-time sources. Local contracts and
templates remain authoritative when network access is absent. For background
on the staged-loading approach used here, fetch progressive-disclosure-skill,
progressive-disclosure-ux, or agent-skills-best-practices from
./references/external-sources.md.
Coordinator Behavior
The coordinator validates the task-plan boundary, loads the smallest
reference for the current phase, dispatches one subagent at a time, and
branches on the returned status. Task-plan parsing, codebase inspection,
artifact writing, methodology fetches, and validation repairs stay inside
the phase owner. For why summary-only handoffs matter, fetch
claude-subagents or context-engineering from
./references/external-sources.md.
Dispatch each subagent with the relevant task handoff plus these reference paths:
DATA_CONTRACTS_PATH: ./references/data-contracts.md
ARTIFACT_TEMPLATES_PATH: ./references/artifact-templates.md
HANDOFF_FORMATS_PATH: ./references/handoff-formats.md
EXTERNAL_SOURCES_PATH: ./references/external-sources.md
Branch on the structured status fields, not on prose:
| Summary state | Coordinator action |
|---|---|
*: PASS |
Continue to the next stage or final report |
*: BLOCKED |
Stop and report the missing prerequisite artifact or task section |
*: FAIL |
Stop and report the unresolved dependency, ambiguity, behavior gap, or planning risk |
*: ERROR |
Stop and ask the user how to proceed |
Keep only verdicts, file paths, source URLs fetched, and next-step-relevant notes from each subagent.
Output Contract
This skill writes only workflow-planning artifacts for one task:
docs/<ISSUE_SLUG>-task-<TASK_NUMBER>-brief.md
docs/<ISSUE_SLUG>-task-<TASK_NUMBER>-execution-plan.md
docs/<ISSUE_SLUG>-task-<TASK_NUMBER>-test-spec.md
docs/<ISSUE_SLUG>-task-<TASK_NUMBER>-refactoring-plan.md
These workflow-state files stay on disk for resumability and are not
implementation history. Use ./references/data-contracts.md for
prerequisite and lifecycle rules. Use ./references/artifact-templates.md
for exact artifact sections.
Validation And Re-Plan
Read ./references/pipeline.md before a standard run or re-plan. Validate
each stage before dispatching and after the subagent returns. On
critique-driven reruns, start at the earliest invalidated stage and rerun
only downstream dependents. Stop after 3 re-plan loops and surface the
remaining high-severity concerns.
Example
<example>
Input: ISSUE_SLUG=acme-app-42, TASK_NUMBER=2
Flow: validate docs/acme-app-42-tasks.md, dispatch execution-prepper,
then execution-planner, test-strategist, and refactoring-advisor with
the artifact paths returned by the prior stages. Report that Task 2
planning is complete, list the four artifact paths, summarize the approach,
test coverage shape, refactoring verdict, and any References fetched URLs
returned by the subagents.
</example>
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (6,408 bytes)
- 📎 references/artifact-templates.md (3,231 bytes)
- 📎 references/data-contracts.md (2,903 bytes)
- 📎 references/external-sources.md (4,855 bytes)
- 📎 references/handoff-formats.md (2,318 bytes)
- 📎 references/pipeline.md (3,814 bytes)