jira-cli

Featured

Interact with Jira from the command line to create, list, view, edit, and transition issues, manage sprints and epics, and perform common Jira workflows. Use when the user asks about Jira tasks, tickets, issues, sprints, or needs to manage project work items.

AI & Automation 522 stars 80 forks Updated 3 weeks ago CC0-1.0

Install

View on GitHub

Quality Score: 92/100

Stars 20%
91
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Jira CLI Interact with Atlassian Jira from the command line using [jira-cli](https://github.com/ankitpokhrel/jira-cli). ## When to Use - User asks to create, view, edit, or search Jira issues/tickets - User needs to transition issues through workflow states (To Do → In Progress → Done) - User wants to manage sprints, epics, or boards - User needs to assign issues, add comments, or log work time - User asks about their current tasks or sprint progress ## Prerequisites 1. Install jira-cli: `brew install ankitpokhrel/jira-cli/jira-cli` (macOS) or download from [releases](https://github.com/ankitpokhrel/jira-cli/releases) 2. Set API token: `export JIRA_API_TOKEN="your-token"` 3. Initialize: `jira init` and follow prompts ## Issue Commands ### List Issues ```bash # List issues in current project jira issue list # List my assigned issues jira issue list -a$(jira me) # List issues by status jira issue list -s"In Progress" # List high priority issues jira issue list -yHigh # List issues with multiple filters jira issue list -a$(jira me) -s"To Do" -yHigh --created week # List issues with raw JQL jira issue list -q "project = PROJ AND status = 'In Progress'" # Plain text output for scripting jira issue list --plain --columns key,summary,status --no-headers ``` ### Create Issues ```bash # Interactive issue creation jira issue create # Create with all options specified jira issue create -tBug -s"Login button not working" -b"Description here" -yHigh --no-input # Create...

Details

Author
Code-and-Sorts
Repository
Code-and-Sorts/awesome-copilot-agents
Created
1 years ago
Last Updated
3 weeks ago
Language
TypeScript
License
CC0-1.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category