use-jira-cli
Installation
SKILL.md
Purpose
Use the Jira CLI (jira) to interact with Jira issues, sprints, epics, and projects directly from the command line. This enables fast issue management without leaving the terminal.
Prerequisites
- Jira CLI installed (
jiracommand available) - Configured with
jira init(API token set viaJIRA_API_TOKENenvironment variable)
Critical: Non-Interactive Mode Required
NEVER use interactive mode. Always use one of these approaches:
- For viewing/listing: Use
--plainor--rawflags--plain- Standard readable output (default choice)--raw- JSON output when structured data is needed for parsing
- For creating/editing: Use
--no-inputflag along with all required fields
Interactive mode requires user input and will hang. Always use these flags to ensure commands complete without prompts.