jiralisted
Install: claude install-skill toh995/dotfiles
# Jira Ticket Fetcher
Fetch Jira ticket details via CLI. Returns clean, flat JSON.
## Usage
~/.claude/skills/jira/scripts/jira-tool get <ISSUE-KEY>
## Output Fields
| Field | Type | Example |
|---|---|---|
| key | string | "SOX-1234" |
| summary | string | "Fix login redirect loop" |
| type | string | "Bug", "Story", "Task", "Epic" |
| status | string | "To Do", "In Progress", "Done" |
| priority | string | "Highest", "High", "Medium", "Low" |
| assignee | string \| null | "Jane Dev" (null if unassigned) |
| labels | string[] | ["auth", "p1"] |
| description | string | Plain text (Jira wiki markup) |
| links | array | [{relation, key, summary, status, priority}] — empty if none |
| children | array | [{key, summary, type, status, priority, assignee}] — empty if none |
## Setup & Troubleshooting
See `references/setup.md` for config file format, API token setup, and error codes.