From claude-code-status
Show cached Jira open issue details, diagnose errors, guide authentication, and optionally force a fresh fetch. Use when status line shows jira count or error.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-code-status:jira-checkThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Show Jira open issue details from cache.
Show Jira open issue details from cache.
! for Jira and you want to diagnose the error.CLAUDE_PLUGIN_DATA="${CLAUDE_PLUGIN_DATA:-$HOME/.claude/plugins/data/claude-code-status-claude-code-status}"
cat "$CLAUDE_PLUGIN_DATA/cache/jira.json"
Parse the JSON. The items array contains the detailed issue list.
status is ok — display the itemsThe items array contains objects with:
| Field | Example |
|---|---|
title | 시스템 알림과 SMS 알림 통합 |
link | https://yourorg.atlassian.net/browse/WEB-434 |
meta.key | WEB-434 |
meta.priority | Medium |
meta.status | 진행 중 |
Present as a numbered list or table. Include the link for each issue.
status is error — show error causeerrorKind | Likely cause | Recommended fix |
|---|---|---|
auth | Not logged in to Jira | Run acli jira auth login --web |
dependency | acli CLI not installed | Install from https://acli.atlassian.com |
rate_limit | Jira API quota exceeded | Wait a few minutes, then retry |
transient | Temporary network error | Force refresh |
CLAUDE_PLUGIN_DATA="${CLAUDE_PLUGIN_DATA:-$HOME/.claude/plugins/data/claude-code-status-claude-code-status}"
rm -f "$CLAUDE_PLUGIN_DATA/locks/jira.lock"
node "$CLAUDE_PLUGIN_DATA/runtime/dist/collect.js" --service jira --force 2>&1
cat "$CLAUDE_PLUGIN_DATA/cache/jira.json"
Then display the updated items.
Jira 미완료 이슈: 4건 (last updated: 2026-03-25T04:26:46Z)
1. WEB-434 시스템 알림과 SMS 알림 통합 Priority: Medium Status: 진행 중
https://yourorg.atlassian.net/browse/WEB-434
2. WEB-287 기기 복귀 시 알림 Priority: Medium Status: 해야 할 일
https://yourorg.atlassian.net/browse/WEB-287
assignee = currentUser() AND statusCategory != Donenpx claudepluginhub seojaewan/claude-code-status --plugin claude-code-statusLists Jira issues using jirac CLI by project key, assignee, or custom JQL, defaulting to current user's assigned issues. Invoke for quick terminal queries.
Manages Jira Cloud issues via jira CLI with JSON output: create, view, update, search issues, fetch hierarchies, manage sprints.
Views Jira issues, generates branch names from tickets, creates tickets, and transitions status via Atlassian MCP. Activates on ticket key mentions or /jira command.