kentoje/dotfiles · Archived

jira

View and interact with Jira tickets using the jira CLI. Use when the user asks to view a ticket, list assigned issues, check sprint status, search issues, add comments, or change ticket status via a Jira URL or key.

First seen Jan 24, 2026

Installation

$ npx skills add kentoje/dotfiles --skill jira

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from kentoje/dotfiles · top by installs.

npx skills add kentoje/dotfiles

Browse all from kentoje/dotfiles

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 2
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,522 B
  • docs SUMMARY.md 227 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 17 installs

SKILL.md

Jira CLI Skill

Interact with Jira tickets using the jira command-line tool.

Usage

Use this skill when the user:

  • Asks to view a Jira ticket
  • Wants to list issues assigned to them
  • Needs to check ticket status or details
  • Provides a Jira URL or ticket key (e.g., ADP-1234)

Common Commands

View a Ticket

jira issue view <TICKET_KEY>

Example: jira issue view ADP-6405

If given a Jira URL like https://aircall-product.atlassian.net/browse/ADP-6405, extract the ticket key (ADP-6405) and use the view command.

List My Issues

jira issue list -a$(jira me)

List Issues in a Sprint

jira sprint list --current
jira sprint list --current -a$(jira me)

Search Issues

jira issue list -q "project = ADP AND status = 'In Progress'"

Add a Comment

jira issue comment add <TICKET_KEY> -b "<COMMENT_BODY>"

Move Issue Status

jira issue move <TICKET_KEY> "<STATUS>"

Notes

  • Attachments referenced in tickets are not viewable via CLI - suggest opening the Jira URL directly
  • The CLI may truncate long descriptions - recommend viewing in browser for full context
  • Ticket keys are case-insensitive but conventionally uppercase (e.g., ADP-1234)