jira

jira is a command for Claude Code from HigorAlves/orc. It costs 54 tokens per session (2,143 once invoked), scanned A, original, MIT.

A Jira ticket manager that creates, views, links, and organizes tickets, while attaching a ticket key to the current coding session. Jira is a tool for tracking software work.

In plain words
What is it for?
Use it to create tickets or subtasks, connect existing tickets, view ticket details, or bind and unbind a ticket from the current session.
Why use it?
It keeps the work session and its Jira ticket connected, so later status checks, resumes, and shipping steps know which ticket belongs to the work.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

Part of the orc plugin — 80 skills, 30 commands, 14 agents, 5 hooks shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/higoralves/orc/jira
Clone the repo
git clone --depth 1 https://github.com/HigorAlves/orc

Made for: Claude Code.

Or install orc, the plugin that ships this one along with the rest of its 80 skills, 30 commands, 14 agents, 5 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for jira

README.md
[![agentmods](https://agentmods.dev/badge/commands/higoralves/orc/jira.svg)](https://agentmods.dev/commands/higoralves/orc/jira)
Your own site
<a href="https://agentmods.dev/commands/higoralves/orc/jira"><img src="https://agentmods.dev/badge/commands/higoralves/orc/jira.svg" alt="Measured on agentmods" height="20"></a>
Per session 54 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,143 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00054 $0.02143
Opus 5 $0.00027 $0.01071
Sonnet 5 $0.00011 $0.00429
Haiku 4.5 $0.00005 $0.00214

Measured 6d ago against content hash 6995d2a4ca93, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

jira scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

orc/commands/jira.md · 183 lines

How it starts

The opening of the file, as written. The whole thing — 183 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/orc:jira

Single entry point for Jira operations from inside an orc session. Wraps acli (the supported Atlassian CLI) and integrates with .orc/ state so a ticket key, once bound, follows the work through /orc:status, /orc:resume, and /orc:ship.

For building a whole Epic→Story→Task hierarchy from a feature brief or PRD (micro-PRD epic, templated children, concurrency-sliced tasks), use /orc:jira-breakdown — it composes this command's primitives per the orc:jira-hierarchy contract.

Always invoke orc:jira-cli before running any acli command — it's the reference for flags, auth, and pitfalls.

Verbs

Verb What it does Touches .orc/?
create Create a top-level ticket optionally auto-binds the new key
subtask Create a sub-task under a parent optionally auto-binds the new key
link Link two existing tickets (Jira-side relationship) no
bind <KEY> Attach <KEY> to the current orc session yes (writes jiraTicket)
unbind Remove the bound ticket from the current session yes (clears jiraTicket)
view [KEY] Show a ticket; defaults to current session's bound key no
transition [KEY] --to "<status>" Move a ticket to a new status no
search --jql "<query>" List tickets matching JQL no

Workflow

Phase 0 — Preflight

  1. Invoke orc:jira-cli. Read it; the rest of this command assumes you know the acli flag conventions documented there.
  2. Run acli jira auth status. If it exits non-zero, surface the auth-login hint from the skill and stop. Never try to invoke a mutating acli command without confirming auth first.

Phase 1 — Dispatch on verb

Parse the first positional arg. If missing, surface AskUserQuestion with the eight verbs above. If the verb isn't recognized, surface the same prompt.

Then jump to the matching section below.

Verb: create

acli jira workitem create \
  --summary "<summary>" \
  --project "<KEY>" \
  --type "<Task|Story|Bug|Epic>" \
  [--assignee "@me|email"] \
  [--description "<text>"] \
  [--label "<a,b>"] \
  --json

Read the full file on GitHub · 183 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 183 lines · 54 tokens per session scan A 6995d2a4ca93

Subscribe to this mod's changes

jira is a command published in the GitHub repository HigorAlves/orc (6 stars, last pushed 10d ago), licensed MIT. It adds 54 tokens to every session and 2,143 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.