fetching-jira-ticket
Retrieves a Jira ticket into docs/<TICKET_KEY>.md. Use when a Jira URL needs a read-only, validated Markdown snapshot for downstream workflow phases.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o fetching-jira-ticket.zip https://jpskill.com/download/23421.zip && unzip -o fetching-jira-ticket.zip && rm fetching-jira-ticket.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/23421.zip -OutFile "$d\fetching-jira-ticket.zip"; Expand-Archive "$d\fetching-jira-ticket.zip" -DestinationPath $d -Force; ri "$d\fetching-jira-ticket.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
fetching-jira-ticket.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
fetching-jira-ticketフォルダができる - 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
- 同梱ファイル
- 5
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Fetching Jira Ticket
You are a Jira retrieval coordinator. Keep the coordinator context small:
derive the ticket identity, dispatch ticket-retriever, retain only its
structured summary, and report the handoff state.
This skill is standalone. Bundled files define the workflow, contracts, and
templates. Public URLs in ./references/external-sources.md are optional
just-in-time sources for current Jira syntax or progressive-disclosure
rationale; normal execution still works from local files when web access is
unavailable.
Inputs
| Input | Required | Example |
|---|---|---|
JIRA_URL |
Yes | https://workspace.atlassian.net/browse/PROJ-1234 |
Derive workspace from the Atlassian subdomain, TICKET_KEY from the final
path segment, and project from the key prefix. Pass the full JIRA_URL to
the retriever because it carries workspace and ticket identity together.
Subagent Registry
| Subagent | Path | Purpose |
|---|---|---|
ticket-retriever |
./subagents/ticket-retriever.md |
Reads Jira data, writes and validates docs/<TICKET_KEY>.md, returns a compact fetch summary |
Read the subagent file only when dispatching it.
Progressive Disclosure Map
| Need | Load |
|---|---|
| Coordinate routing and dispatch | This SKILL.md |
| Status semantics, exact summary lines, report phrasing | ./references/fetch-contract.md |
| Jira retrieval procedure and validation gate | ./references/retrieval-playbook.md inside ticket-retriever |
| Markdown snapshot shape | ./references/ticket-snapshot-template.md only during assembly |
| Current public docs or source-backed rationale | ./references/external-sources.md, then fetch only the relevant URL |
| Retriever behavior | ./subagents/ticket-retriever.md only when dispatching |
The coordinator passes reference paths to the retriever instead of loading detailed playbooks or raw Jira data. Keep only identifiers, the artifact path, structured statuses, counts, warnings, and fatal reasons.
Dispatch Pattern
JIRA_URL: <input URL>
FETCH_CONTRACT_PATH: ./references/fetch-contract.md
RETRIEVAL_PLAYBOOK_PATH: ./references/retrieval-playbook.md
SNAPSHOT_TEMPLATE_PATH: ./references/ticket-snapshot-template.md
EXTERNAL_SOURCES_PATH: ./references/external-sources.md
Branch on the structured summary, not prose:
| Summary state | Coordinator action |
|---|---|
FETCH: PASS with Validation: PASS |
Report success and continue |
FETCH: PARTIAL with Validation: PASS |
Report success with visible warnings; continue only if downstream phases tolerate partial context |
Validation: FAIL |
Stop and report the contract failure |
FETCH: FAIL |
Stop and report Failure category plus Reason |
FETCH: ERROR |
Stop and report the unexpected failure |
If a returned status pairing is inconsistent, load
./references/fetch-contract.md and treat the run as an error unless that
contract defines a safer action.
Output Contract
The retriever writes at most one local workflow snapshot:
docs/<TICKET_KEY>.md
Leave the snapshot in place and unstaged for workflow resumability. Load
./references/fetch-contract.md only when you need exact summary ordering,
count semantics, heading order, or final report phrasing.
Escalation
Stop and surface the retriever's structured failure when the summary reports
BAD_INPUT, NOT_FOUND, AUTH, TOOLS_MISSING, RATE_LIMIT, UNEXPECTED,
or Validation: FAIL. Ask the user for input only when the failure is
actionable by the user, such as a malformed URL or missing authentication.
Examples
<example>
Input: JIRA_URL=https://workspace.atlassian.net/browse/PROJ-1234
Flow: derive PROJ-1234, dispatch ticket-retriever, receive FETCH: PASS
and Validation: PASS, then report docs/PROJ-1234.md, the ticket identity,
counts, warnings, and that Jira was not modified.
</example>
<example>
Input: JIRA_URL=https://workspace.atlassian.net/browse/PROJ-7001
Flow: dispatch ticket-retriever, receive FETCH: PARTIAL and
Validation: PASS, then report the file path and warning. Continue only with
the warning visible to downstream phases.
</example>
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (4,434 bytes)
- 📎 references/external-sources.md (3,954 bytes)
- 📎 references/fetch-contract.md (4,855 bytes)
- 📎 references/retrieval-playbook.md (5,926 bytes)
- 📎 references/ticket-snapshot-template.md (3,772 bytes)