jira

jira is a skill for Claude Code from Dannykkh/skill-olympus. It costs 28 tokens per session (1,874 once invoked), scanned A, a copy of jira, MIT.

A workflow guide for working with Jira, a tool for tracking software tasks, bugs, and project work. It supports common actions such as viewing, creating, and updating Jira issues.

In plain words
What is it for?
Use it to work with Jira tickets, plan sprint or backlog work, and manage issues identified by their keys.
Why use it?
It gives developers a consistent way to manage issue details and project workflow without handling each Jira step manually.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the skill-olympus plugin — 95 skills, 6 commands, 42 agents 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 skills/dannykkh/skill-olympus/jira
Any agent
npx skills add Dannykkh/skill-olympus --skill jira
Clone the repo
git clone --depth 1 https://github.com/Dannykkh/skill-olympus

Made for: Claude Code.

Or install skill-olympus, the plugin that ships this one along with the rest of its 95 skills, 6 commands, 42 agents.

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/skills/dannykkh/skill-olympus/jira.svg)](https://agentmods.dev/skills/dannykkh/skill-olympus/jira)
Your own site
<a href="https://agentmods.dev/skills/dannykkh/skill-olympus/jira"><img src="https://agentmods.dev/badge/skills/dannykkh/skill-olympus/jira.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,874 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 91% copy Near-identical to another mod 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.00028 $0.01874
Opus 5 $0.00014 $0.00937
Sonnet 5 $0.00006 $0.00375
Haiku 4.5 $0.00003 $0.00187

Measured 2d ago against content hash 2db5d08bf345, 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 2d 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.

Origin

This is a copy

91% identical to jira — 32 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/jira/SKILL.md · 226 lines

How it starts

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

Jira

Natural language interaction with Jira. Supports multiple backends.

Setup (최초 1회)

이 스킬은 config.json에 설정이 필요합니다.

  1. config.json을 읽는다 (skills/jira/config.json 또는 현재 CLI의 글로벌 스킬 경로)
  2. 빈 필드가 있으면 현재 CLI의 질문 방식으로 사용자에게 질문한다
  3. 답변을 config.json에 저장한다
  4. 이후 실행 시에는 config.json에서 자동으로 읽는다
항목 설명 예시
jira_base_url Jira 인스턴스 URL https://mycompany.atlassian.net
default_project_key 기본 프로젝트 키 (이슈 생성 시 자동 사용) PROJ
default_assignee 기본 담당자 (본인 Jira 사용자명) john.doe
preferred_issue_types 주로 사용하는 이슈 타입 목록 ["Story", "Bug", "Task"]

Setup 로직:

config.json 읽기
  ├─ jira_base_url 비어있음? → "Jira 인스턴스 URL을 입력해주세요 (예: https://mycompany.atlassian.net)"
  ├─ default_project_key 비어있음? → "기본 프로젝트 키를 입력해주세요 (예: PROJ, 건너뛰려면 Enter)"
  ├─ default_assignee 비어있음? → "기본 담당자(본인 Jira 사용자명)를 입력해주세요 (건너뛰려면 Enter)"
  └─ 답변 수집 후 config.json에 저장 → 이후 자동 사용

모든 필드가 채워져 있으면 이 단계를 건너뜁니다.


Backend Detection

Run this check first to determine which backend to use:

1. Check if jira CLI is available:
   → Run: which jira
   → If found: USE CLI BACKEND

2. If no CLI, check for Atlassian MCP:
   → Look for mcp__atlassian__* tools
   → If available: USE MCP BACKEND

3. If neither available:
   → GUIDE USER TO SETUP
Backend When to Use Reference
CLI jira command available references/commands.md
MCP Atlassian MCP tools available references/mcp.md
None Neither available Guide to install CLI

Quick Reference (CLI)

Skip this section if using MCP backend.

Intent Command
View issue jira issue view ISSUE-KEY
List my issues jira issue list -a$(jira me)
My in-progress jira issue list -a$(jira me) -s"In Progress"
Create issue jira issue create -tType -s"Summary" -b"Description"
Move/transition jira issue move ISSUE-KEY "State"
Assign to me jira issue assign ISSUE-KEY $(jira me)
Unassign jira issue assign ISSUE-KEY x
Add comment jira issue comment add ISSUE-KEY -b"Comment text"
Open in browser jira open ISSUE-KEY
Current sprint jira sprint list --state active
Who am I jira me

Read the full file on GitHub · 226 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 2d ago First seen · 226 lines · 28 tokens per session scan A 2db5d08bf345

Subscribe to this mod's changes

jira is a skill published in the GitHub repository Dannykkh/skill-olympus (5 stars, last pushed 5d ago), licensed MIT. It adds 28 tokens to every session and 1,874 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 91% identical to jira, differing in 32 lines, and is treated as a copy.