| name | jira |
| description | Jira issue management using jira-cli. Search, create, view, comment, and transition issues with JQL queries. Use when working with Jira tickets, Atlassian issues, sprint planning, or issue workflows. |
| compatibility | Requires jira-cli (https://github.com/ankitpokhrel/jira-cli) installed and authenticated via jira init. |
Manage Jira issues using `jira` CLI — search, create, view, comment, and transition issues without leaving the terminal.
<quick_start>
For simple queries, use jira directly. See cli-reference.md.
jira issue list --plain
jira issue view PROJ-123 --comments 5 --plain
jira issue create -pPROJ -tTask -s"Summary" --no-input <<< "Description"
jira issue move PROJ-123 "In Progress" --no-input
echo "Comment" | jira issue comment add PROJ-123 --no-input
jira issue assign PROJ-123 "Jane Smith"
</quick_start>
<reference_guides>