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.
npx agentmods add commands/higoralves/orc/jiragit clone --depth 1 https://github.com/HigorAlves/orcWrote 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.
[](https://agentmods.dev/commands/higoralves/orc/jira)<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>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.
| Model | Per session | Once 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 |
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.
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
- Invoke
orc:jira-cli. Read it; the rest of this command assumes you know theacliflag conventions documented there. - 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 mutatingaclicommand 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
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.
- 6d ago First seen · 183 lines · 54 tokens per session scan A 6995d2a4ca93
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.
Other commands, from other repositories
interview
Interview & refine a spec, task, or spec file in-depth.
tracker-sync
Project a flow spec to a tracker (Linear/GitHub/GitLab/Jira) and reconcile body/status/comments two-way — projection, not coordination. NOT plan-sync (/flow-next:sync).
audit
Audit .flow/memory/ entries against the current codebase — Keep / Update / Consolidate / Replace / Delete / Harden per entry.
make-pr
Render a cognitive-aid PR body from flow-next state and open via gh.
pilot
Single-tick autonomous build-loop conductor (one item, one stage per invocation; pipeline.chainStages==on chains make-pr after a fresh qa verdict); --backlog/--auto widens it to triage the whole open backlog.
strategy
Create or maintain STRATEGY.md — repo-root anchor for target problem, approach, users, key metrics, and tracks.