AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Jira Cli

skill-mgiovani-cc-arsenal-jira-cli · by mgiovani

Run raw ankitpokhrel/jira-cli commands directly against Jira Cloud or on-prem — issue/epic/sprint CRUD, JQL-style filtering, and scripting/CI automation (bulk assign, auto-label, sprint add). Invoke explicitly via /jira-cli, or when the user wants literal `jira` CLI syntax, a filter the curated skills don't expose, or a bash/CI script that drives jira-cli. Manual-invocation skill — does not auto-…

No reviews yet
0 installs
43 views
0.0% view→install

Install

$ agentstack add skill-mgiovani-cc-arsenal-jira-cli

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-mgiovani-cc-arsenal-jira-cli)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Jira Cli? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Jira CLI

Command reference and scripting patterns for jira-cli, the command-line tool for managing Jira issues, epics, and sprints without the web UI.

Prerequisites

These references assume jira on PATH is ankitpokhrel/jira-cli — a different tool can claim the same binary name. Before trusting any command below, run jira version once per session and confirm the output looks like this project (e.g. jira version 1.x.x with a Homepage: https://github.com/ankitpokhrel/jira-cli line). If it doesn't, stop and check which jira instead of guessing at flags.

For AI use, always add --plain (and usually --no-headers) to get parseable text output instead of the interactive table.

When to Use This Skill

Manual slash-command skill (/jira-cli) — it does not auto-trigger on mentions of "jira" or "ticket". Invoke it directly for raw jira CLI commands (issues, epics, sprints) or scripting/automation. On tools that don't read Claude-Code frontmatter, disable-model-invocation is ignored — the /jira-cli phrasing itself is the manual-invocation signal there too.

Essential Commands

Curated top-7 for the most common operations. For anything else — filters, epic/sprint management, releases, output formats — load [references/commands.md](./references/commands.md); don't try to recall the rest from memory.

# List recent issues (always use --plain for AI)
jira issue list --plain

# View issue details
jira issue view ISSUE-1 --plain

# Create an issue
jira issue create -tBug -s"Bug title" -yHigh -b"Description" --no-input

# Assign issue to yourself
jira issue assign ISSUE-1 $(jira me)

# Move issue to "In Progress"
jira issue move ISSUE-1 "In Progress"

# Add comment
jira issue comment add ISSUE-1 --comment "My comment"

# Add worklog
jira issue worklog add ISSUE-1 "2h" --comment "Implementation work"

Worked Examples

Confirm the CLI flavor before anything else:

$ jira version
jira version 1.5.1
Homepage: https://github.com/ankitpokhrel/jira-cli

A different jira version output (or a "command not found") means stop and resolve which jira before running any command from this skill.

Parse --plain output for scripting — columns are tab-separated, headers are on unless suppressed:

$ jira issue list -a$(jira me) -s"In Progress" --plain --no-headers --columns key,summary
PROJ-123	Fix login redirect loop
PROJ-124	Add rate limiting to API
jira issue list -a$(jira me) -s"In Progress" --plain --no-headers --columns key,summary | \
  while IFS=$'\t' read -r key summary; do echo "Working: $key - $summary"; done

Create non-interactively and capture the new key from the URL jira-cli prints:

$ jira issue create -tBug -s"Login redirect loop" -yHigh --no-input
Issue created
https://your-domain.atlassian.net/browse/PROJ-125
key=$(jira issue create -tBug -s"Login redirect loop" -yHigh --no-input | grep -oE '[A-Z]+-[0-9]+$')

Bulk sprint add sourced from a live filter, not a hardcoded list:

jira sprint add SPRINT_ID $(jira issue list -s"Ready for Dev" --plain --columns key --no-headers | tr '\n' ' ')

How to Use This Skill

Load reference files on demand — don't pull all three into context for a single command.

1. Comprehensive Commands Reference

Load: [references/commands.md](./references/commands.md)

Detailed syntax for issue management (list, create, edit, assign, move, view, link, clone, delete, comments, worklog), epic management, sprint management, releases, and output-format options.

2. Common Workflow Examples

Load: [references/workflows.md](./references/workflows.md)

Multi-command patterns: sprint planning, code review handoff, bug triage, epic tracking, incident response, backlog grooming, cross-team coordination.

3. Scripting and Automation

Load: [references/scripting.md](./references/scripting.md)

Raw bash automation that isn't already a curated skill: bulk assignment, auto-labeling, CSV export, velocity/metrics calculation, CI/CD hooks (GitHub Actions, GitLab CI, Jenkins), error handling and rate-limiting patterns. For a formatted standup report or sprint status readout, use jira-daily instead of hand-rolling one here — those scripts were removed from this file for that reason.

Resources

  • GitHub: https://github.com/ankitpokhrel/jira-cli
  • Installation Guide: https://github.com/ankitpokhrel/jira-cli/wiki/Installation
  • FAQs: https://github.com/ankitpokhrel/jira-cli/discussions/categories/faqs

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.