Documentation
README
What This Skill Does
Uses jira (jira-cli) to interact with Jira projects — listing issues, creating tickets, moving issues through workflow transitions, and managing sprints.
CLI Tool: jira
List & View Issues
jira issue list # List issues assigned to you
jira issue list --project MYPROJ # Filter by project
jira issue list --status "In Progress" # Filter by status
jira issue list --type Bug # Filter by issue type
jira issue view MYPROJ-123 # View issue details
Create Issues
jira issue create \
--project MYPROJ \
--type Bug \
--summary "Login page throws 500 error" \
--body "Steps to reproduce: ..." \
--priority High \
--label backend
Transitions
This is the opening of the README. Read the full README on GitHub.