jira

Manage Jira issues, sprints, and transitions through the jira CLI.

9|Updated Jul 17, 2026
One-click install
npx skills add https://github.com/Yassimba/loom --skill jira-yassimba
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: jira
Source: https://github.com/Yassimba/loom/tree/main/skills/jira
Command: npx skills add https://github.com/Yassimba/loom --skill jira-yassimba

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? It removes the need to switch to the Jira web UI by letting you view, create, update, transition, and comment on Jira issues directly from your coding agent using the jira CLI. ## Core Features & Use Cases - Issue Management: View, list, create, assign, and transition issues using natural language or issue keys like PROJ-123. - Sprint and Link Operations: Check the active sprint, add issues to sprints, and link issues with relationships like Blocks or Epic-Story. - Safe Modification Workflow: Fetches current issue state before changes, shows diffs for approval, and avoids irreversible edits without confirmation. - Use Case: Ask your agent to "create a bug ticket for the login failure and assign it to me", and it drafts the ticket, reviews it with you, then creates it via jira issue create. ## Quick Start Ask your agent to show the details of Jira issue PROJ-123 and list all tickets currently assigned to you.

Frequently Asked Questions about jira

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a Jira ticket from the command line?

Use `jira issue create` with flags like -t for type, -s for summary, and -b for description. For multi-line descriptions, write the content to a file in /tmp first and pass it with $(cat /tmp/file), since the CLI mishandles raw multi-line strings.

How do I transition a Jira issue to Done using jira-cli?

Run `jira issue move ISSUE-KEY "Done"` to transition an issue. Always fetch the issue first, because workflows may require intermediate states and transition names like Done or Closed vary by project.

Does the jira CLI support JQL queries?

Yes, jira-cli supports raw JQL through `jira issue list -q"your query"`. You can also combine simpler filters like status, assignee, priority, labels, and created date without writing full JQL.

Why does jira issue create fail with --no-input?

The --no-input flag fails silently when required project fields are missing. Check the project's required fields first and supply them via flags or --custom key=value pairs before using non-interactive mode.

What are the limitations of editing Jira issues via CLI?

Jira has no undo for description edits, so the original content must be shown before replacing it. Bulk modifications also trigger notifications to watchers, so each change requires explicit approval.