← Back to list

jira-cli
by xdg
Plugins for Claude Code
⭐ 8🍴 0📅 Jan 20, 2026
SKILL.md
name: jira-cli description: Manage Jira issues via command line - read issues, query by filters, create/update issues, add comments, and close issues after work completion.
jira-cli: Command-Line Jira Management
Use jira-cli when interacting with Jira. Assume jira-cli already installed/configured.
Project flag: Always use -p PROJ to specify project explicitly (don't rely on defaults)
When to Use
Use for: Reading issues, querying (status/priority/assignee filters), creating/updating issues, adding comments, closing after work complete
Ask user for web UI: Attachments/images, visual board operations (can't do from CLI)
Core Pattern: Work on Issue
jira issue view -p PROJ PROJ-123 # Read requirements
jira issue assign PROJ-123 $(jira me) # Assign to user
# ... implement ...
jira issue comment add PROJ-123 "Fixed in $(git rev-parse --short HEAD)"
jira issue move PROJ-123 "Done" # Close when complete
Efficient Extraction
Extract only needed fields to minimize context usage:
# Get specific fields only
jira issue view -p PROJ PROJ-123 --raw | jq -r '.fields.status.name'
# List keys for iteration
jira issue list -p PROJ --plain --no-headers --columns KEY
When to Load Detailed Guide
Load jira-cli reference guide for:
- Command syntax and flags
- Query patterns and JQL filtering
- Output format options
- User intent → command mapping
- Git integration patterns
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon