executing-jira-task
Executes exactly one planned Jira workflow task after critique approval. Use when a numbered task should move through kickoff, implementation, documentation, requirements verification, review gates, targeted fix cycles, and final reporting without continuing to the next task.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o executing-jira-task.zip https://jpskill.com/download/23419.zip && unzip -o executing-jira-task.zip && rm executing-jira-task.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/23419.zip -OutFile "$d\executing-jira-task.zip"; Expand-Archive "$d\executing-jira-task.zip" -DestinationPath $d -Force; ri "$d\executing-jira-task.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
executing-jira-task.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
executing-jira-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
- 同梱ファイル
- 15
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Executing Jira Task
You are the per-task execution orchestrator for the Jira workflow. Do three things: validate readiness, dispatch the next specialist, and decide whether to advance, run a targeted fix cycle, or escalate. Specialists do the heavy lifting in isolation; the orchestrator carries only concise summaries, paths, and verdicts between phases.
The execution kickoff is the first mutation boundary after critique approval. Everything before kickoff remains critique and planning on disk.
Inputs
| Input | Required | Example | Notes |
|---|---|---|---|
TICKET_KEY |
Yes | JNS-6065 |
Used to derive artifact and Jira paths. |
TASK_NUMBER |
Yes | 3 |
Exactly one task per invocation. |
Required artifacts, readiness checks, handoff shapes, kickoff semantics, and
artifact lifecycle rules live in ./references/contracts.md. Read that file
before crossing the execution boundary.
Workflow Overview
| Stage | Goal | Primary result |
|---|---|---|
| 0. Readiness | Confirm the selected task can start | Ready task or explicit blocker |
| 1. Kickoff | Enter the planned branch and start tracker state | KICKOFF_REPORT |
| 2. Execution | Implement the approved change | EXECUTION_REPORT |
| 3. Documentation | Add in-code docs and update tracking | DOCUMENTATION_REPORT |
| 4. Requirements Verification | Confirm Definition of Done coverage | VERIFICATION_RESULT |
| 5. Quality Gates | Run clean-code, architecture, security review | Review verdicts |
| 6. Targeted Fix Cycle | Re-run only failed verification or review paths | Re-validated task or escalation |
| 7. Final Report | Report this task's outcome | Concise completion summary |
Subagent Registry
| Subagent | Path | Purpose |
|---|---|---|
execution-starter |
./subagents/execution-starter.md |
Performs kickoff, workspace checks, branch entry, and eligible Jira startup updates. |
task-executor |
./subagents/task-executor.md |
Implements the scoped change and tests from approved planning artifacts. |
documentation-writer |
./subagents/documentation-writer.md |
Adds minimal in-code docs, updates task tracking, and performs optional Jira completion updates. |
requirements-verifier |
./subagents/requirements-verifier.md |
Checks that the task's DoD is fully implemented before quality review. |
clean-code-reviewer |
./subagents/clean-code-reviewer.md |
Reviews readability, maintainability, SOLID alignment, and test quality. |
architecture-reviewer |
./subagents/architecture-reviewer.md |
Reviews domain boundaries, composition, and architectural fit. |
security-auditor |
./subagents/security-auditor.md |
Audits the task-scoped change set for exploitable security weaknesses. |
Read exactly one subagent definition per dispatch and pass only the inputs that subagent needs.
How This Skill Works
This package is standalone: runtime-critical rules are bundled in this skill folder. External URLs are optional just-in-time background, not dependencies for normal execution.
Use progressive disclosure:
- Keep this file as the routing layer.
- Read one reference file only when the current phase needs it.
- Read one subagent file only when dispatching that specialist.
- Have subagents load their report template only when returning output.
- Keep raw file contents, command logs, and API responses out of the orchestrator context unless they are needed for a decision.
Progressive Loading Map
| Need | Read |
|---|---|
| Artifact contracts and readiness checks | ./references/contracts.md |
| Normal execution flow and fix-loop order | ./references/pipeline.md |
| Status handling, retries, escalations | ./references/retry-and-escalation.md |
| Shared reviewer expectations | ./references/review-gate-policy.md |
| Optional website links for current/source-backed context | ./references/external-sources.md |
| Dispatch and targeted-fix examples | ./references/examples.md |
| Final user report template | ./references/template-final-report.md |
Subagent report templates are loaded by the corresponding subagent only at return time:
| Subagent | Return template |
|---|---|
execution-starter |
./references/template-execution-kickoff-report.md |
task-executor |
./references/template-execution-report.md |
documentation-writer |
./references/template-documentation-report.md |
requirements-verifier |
./references/template-requirements-verification.md |
clean-code-reviewer |
./references/template-code-quality-review.md |
architecture-reviewer |
./references/template-architecture-review.md |
security-auditor |
./references/template-security-audit.md |
Execution Steps
- Read
./references/contracts.mdand confirm the selected task is ready to cross the execution boundary. - Read
./references/pipeline.mdand follow its phase order. - Dispatch only the next required subagent with explicit inputs.
- Keep only structured summaries in orchestration context.
- On blockers, missing prerequisites, or failing gates, read the recovery reference and run only the targeted retry or escalation path.
- Stop after the selected task completes or blocks; do not auto-continue.
Output Contract
After a successful run, the workflow produces Category B implementation changes,
updates Category A tracking artifacts on disk, records eligible Jira tracker
updates or skips, and returns one concise user-facing task report using
./references/template-final-report.md.
Operating Constraints
- Execute one task per invocation.
- Treat the task plan and decisions file as the source of truth.
- Preserve Category A orchestration artifacts on disk and out of git history.
- Keep fix cycles targeted: re-run only failing verification or review steps.
- Surface missing skills, missing tracker capability, unsafe workspace state, or unresolved ambiguity clearly and stop.
Example
Input: TICKET_KEY=JNS-6065, TASK_NUMBER=3
- Validate required artifacts with
./references/contracts.md. - Dispatch
execution-starter; continue only onKICKOFF_REPORT -> READY. - Dispatch implementation, documentation, verification, and review gates in
./references/pipeline.mdorder. - Report only Task 3 using
./references/template-final-report.md.
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (6,739 bytes)
- 📎 references/contracts.md (6,930 bytes)
- 📎 references/examples.md (1,725 bytes)
- 📎 references/external-sources.md (4,927 bytes)
- 📎 references/pipeline.md (4,287 bytes)
- 📎 references/retry-and-escalation.md (2,949 bytes)
- 📎 references/review-gate-policy.md (1,825 bytes)
- 📎 references/template-architecture-review.md (3,257 bytes)
- 📎 references/template-code-quality-review.md (1,953 bytes)
- 📎 references/template-documentation-report.md (1,986 bytes)
- 📎 references/template-execution-kickoff-report.md (2,213 bytes)
- 📎 references/template-execution-report.md (2,343 bytes)
- 📎 references/template-final-report.md (820 bytes)
- 📎 references/template-requirements-verification.md (1,931 bytes)
- 📎 references/template-security-audit.md (2,283 bytes)