planning-jira-tasks
Phase 2 of the Jira planning workflow. Reads a Jira ticket snapshot, dispatches a plan/prioritize/validate pipeline, and writes docs/<TICKET_KEY>-tasks.md with branch names for every planned Jira subtask.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o planning-jira-tasks.zip https://jpskill.com/download/23429.zip && unzip -o planning-jira-tasks.zip && rm planning-jira-tasks.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/23429.zip -OutFile "$d\planning-jira-tasks.zip"; Expand-Archive "$d\planning-jira-tasks.zip" -DestinationPath $d -Force; ri "$d\planning-jira-tasks.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
planning-jira-tasks.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
planning-jira-tasksフォルダができる - 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
- 同梱ファイル
- 10
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Planning Jira Ticket Tasks
Plan a Jira ticket snapshot into docs/<TICKET_KEY>-tasks.md. This is the
Phase 2 orchestrator for the Jira planning workflow: it routes stages,
dispatches specialists, preserves stage artifacts for resume and critique, and
returns a concise handoff.
The orchestrator keeps only workflow state, subagent verdicts, paths, counts, and user decisions in context. Detailed contracts, templates, validation checks, and source-backed background are loaded just in time from bundled references or optional external URLs.
Inputs
| Input | Required | Example |
|---|---|---|
TICKET_KEY |
Yes | JNS-6065 |
RE_PLAN |
No | true |
DECISIONS |
No | SSO decision changes task dependencies |
Phase 2 is file-driven. docs/<TICKET_KEY>.md must already exist as the Jira
ticket snapshot.
Progressive Loading Map
| Need | Load |
|---|---|
| Normal run, dispatch payloads, retry loop | ./references/execution-guide.md |
| Final artifact contract, branch policy, subtask handling | ./references/output-contract.md |
| Critique-driven re-plan or recovery from stage artifacts | ./references/re-plan-cycle.md |
| Source-backed background or current platform syntax | ./references/external-sources.md |
| Subagent-specific guides, templates, or validation checks | Load only from the dispatched subagent |
Bundled paths in this file are relative to this SKILL.md; files loaded later
use paths relative to their own locations. All bundled files travel with the
package.
External URLs are optional progressive enhancement: fetch them only when local
contracts need background or current syntax, and proceed from bundled references
when network access is unavailable.
Subagent Registry
| Subagent | Path | Purpose |
|---|---|---|
task-planner |
./subagents/task-planner.md |
Decompose the ticket and draft the stage 1 plan |
dependency-prioritizer |
./subagents/dependency-prioritizer.md |
Add dependency order, priority, and branch names |
task-validator |
./subagents/task-validator.md |
Validate the prioritized plan and append QA findings |
stage-validator |
./subagents/stage-validator.md |
Check preflight, inter-stage, and final structural gates |
Workflow
| Path | When | Next reference |
|---|---|---|
| Normal | RE_PLAN is absent or false |
./references/execution-guide.md |
| Re-plan | RE_PLAN=true with critique decisions |
./references/re-plan-cycle.md, then ./references/execution-guide.md |
The normal path is: preflight snapshot validation, Stage 1 detailed planning, Stage 1 validation, Stage 2 dependency/branch planning, Stage 2 validation, Stage 3 final validation report, Stage 3 validation, postpipeline validation, handoff.
Preserve docs/<TICKET_KEY>-stage-1-detailed.md,
docs/<TICKET_KEY>-stage-2-prioritized.md, and
docs/<TICKET_KEY>-tasks.md on disk. They are orchestration state for resume,
critique, and targeted retries; they are not implementation outputs.
Use targeted fix loops only. Re-dispatch the stage that produced the failing artifact, pass only the validator's issue list, rerun only the failing gate, and stop after 3 failed cycles for the same gate.
Return Format
Return only this phase handoff. Use PLANNING: PASS only when every stage and
stage-validation gate has passed.
PLANNING: PASS | FAIL
TICKET_KEY: <TICKET_KEY>
File: <final file path or "not written">
Tasks: <N>
Branches: <N unique branch names>
Cross-cutting questions: <N>
Validation warnings: <N>
Failure category: PREFLIGHT | STAGE_1 | STAGE_2 | STAGE_3 | POSTPIPELINE | NONE
Reason: <one line>
Artifacts preserved: <comma-separated paths>
Example
<example>
Input: TICKET_KEY=JNS-6065
- Load
./references/execution-guide.mdfor the dispatch payloads. - Dispatch
stage-validatorforpreflight; it returnsSTAGE_VALIDATION: PASS. - Dispatch
task-planner,dependency-prioritizer, andtask-validatorin sequence, validating after each produced artifact. - Dispatch
stage-validatorforpostpipeline; it returnsSTAGE_VALIDATION: PASS. - Return the concise
PLANNING: PASShandoff with preserved artifact paths. </example>
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (4,494 bytes)
- 📎 references/dependency-and-branch-guide.md (4,087 bytes)
- 📎 references/dependency-prioritizer-template.md (2,848 bytes)
- 📎 references/execution-guide.md (4,389 bytes)
- 📎 references/external-sources.md (4,253 bytes)
- 📎 references/output-contract.md (4,396 bytes)
- 📎 references/re-plan-cycle.md (2,816 bytes)
- 📎 references/task-planner-template.md (2,258 bytes)
- 📎 references/task-planning-guide.md (4,646 bytes)
- 📎 references/validation-checks.md (6,214 bytes)