From jira-skills
Read a Jira issue and return its key fields. Use when a user asks to inspect, view, or summarize a Jira work item.
How this skill is triggered — by the user, by Claude, or both
Slash command
/jira-skills:jira-readThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Read a Jira work item and present the important fields in a structured format.
Read a Jira work item and present the important fields in a structured format.
The skill uses the Jira REST API when JIRA_API_TOKEN is available and falls
back to the Atlassian CLI (acli) otherwise.
PROJECT-123$ARGUMENTS contains the Jira issue key, for example PROJECT-123.
Extract the issue key from $ARGUMENTS and validate that it looks like a Jira
issue identifier.
Check whether JIRA_API_TOKEN is set.
Require the following environment variables and fail with a clear message if any are missing:
JIRA_BASE_URLJIRA_EMAILJIRA_API_TOKENCall the Jira REST API v3:
GET {JIRA_BASE_URL}/rest/api/3/issue/{issueKey}?fields=summary,description,status,issuetype,priority,assignee,parent,subtasks
Use HTTP Basic auth with {JIRA_EMAIL}:{JIRA_API_TOKEN}.
Parse the response and display:
fields.summaryfields.issuetype.namefields.status.namefields.priority.name if presentfields.assignee.displayName, or Unassignedfields.parent if presenttext valuesfields.subtasks, including key, summary, and statusIf the API returns an error, report the HTTP status and response message.
Verify that acli is installed with acli --version.
If it is missing, stop and print:
acli is not installed. Install it with: npm install -g @atlassian/acli
Then authenticate with: acli configure
Run:
acli jira workitem view --id {issueKey}
Display the command output as returned. If the command fails, show the error output clearly.
Return a readable issue summary with labeled fields. On errors, include the HTTP status or command failure output and keep the failure reason explicit.
/jira-read PROJECT-123
show PROJECT-456
read MYTEAM-9
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub rogerbriggen/ai_skills --plugin jira-skills