skills/jira/SKILL.md
Search Jira issues with JQL or free text, and read Jira issue details with comments using the external jira-cli (`jira`) command. Use when the user asks to find Jira tickets, inspect issue details, review comments, or run Jira queries.
npx skillsauth add adampoit/ai jiraInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Search Jira issues and read issue details with jira.
jira issue list --jql 'text ~ "workflow runner failure"' --paginate 0:10 --raw
Search with free text:
jira issue list "build failure" --paginate 0:10 --raw
Search with explicit JQL:
jira issue list --jql "project = PROJ AND statusCategory != Done ORDER BY updated DESC" --paginate 0:10 --raw
Common options:
--jql: Raw JQL query--paginate 0:10: Offset/limit style pagination--raw: JSON output for deterministic parsingRead one issue with comments:
jira issue view PROJ-1234 --comments 20 --raw
Read plain text output (non-JSON):
jira issue view PROJ-1234 --comments 5 --plain
Prefer read-only commands in this skill:
jira issue list ...jira issue view ...Avoid mutating commands unless the user explicitly requests edits (for example jira issue create, jira issue edit, jira issue delete, jira issue move, jira issue assign, jira issue comment add).
Use --raw whenever machine-readable output is needed.
tools
Use tmux instead of background bash for long-running, interactive, inspectable, or user-attachable terminal processes. Use for development servers, watch-mode tests, REPLs, debuggers, interactive CLIs, log tailing, and commands that may run indefinitely or need later input/inspection.
tools
Use Jujutsu (`jj`) for version control operations including status, history, diffs, commits, rebases, splits, squashes, and Git interop. Use when a repository is initialized for jj or the user asks for jj/Jujutsu workflows.
tools
Manage tasks with the `task` (Taskwarrior) CLI. Use when the user asks to review tasks, get task summaries, add work items, or complete tasks.
business
Search Slack messages and read Slack threads. Use when the user asks to search Slack, find messages, look up conversations, read thread replies, or retrieve Slack content. Triggers on requests involving Slack message lookup, conversation history, or thread reading.