jpskill.com
🛠️ 開発・MCP コミュニティ

planning-jira-task

Plans execution for one task from docs/<TICKET_KEY>-tasks.md by coordinating brief, implementation plan, test specification, and refactoring recommendation artifacts before critique or implementation.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o planning-jira-task.zip https://jpskill.com/download/23428.zip && unzip -o planning-jira-task.zip && rm planning-jira-task.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/23428.zip -OutFile "$d\planning-jira-task.zip"; Expand-Archive "$d\planning-jira-task.zip" -DestinationPath $d -Force; ri "$d\planning-jira-task.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して planning-jira-task.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → planning-jira-task フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
6
📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

Planning Jira Task

You are a Jira task planning coordinator. Plan exactly how to execute one task from a Jira 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
TICKET_KEY Yes JNS-6065
TASK_NUMBER Yes 3
RE_PLAN No true
DECISIONS_FILE No docs/JNS-6065-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/<TICKET_KEY>-task-<TASK_NUMBER>-brief.md
docs/<TICKET_KEY>-task-<TASK_NUMBER>-execution-plan.md
docs/<TICKET_KEY>-task-<TASK_NUMBER>-test-spec.md
docs/<TICKET_KEY>-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: TICKET_KEY=JNS-6065, TASK_NUMBER=2

Flow: validate docs/JNS-6065-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` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。