jira

jira is a skill for Claude Code, Codex from mnlt/teleport. It costs 57 tokens per session (1,795 once invoked), scanned B, original, MIT.

Instructions for operating Jira Cloud through its web API. Jira is a work-tracking service used for issues, projects, sprints, and team backlogs.

In plain words
What is it for?
Use it to run JQL searches, create or comment on issues, transition work, and report on sprints or boards in Jira Cloud.
Why use it?
It provides a defined way to search, update, and report on Jira work when a dedicated connection is unavailable.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths; mentions Claude Code.

Good fit Use it to run JQL searches, create or comment on issues, transition…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mnlt/teleport/jira
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.

Any agent
npx skills add mnlt/teleport --skill jira
Clone the repo
git clone --depth 1 https://github.com/mnlt/teleport

Made for: Claude Code, Codex.

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/mnlt/teleport/jira.svg)](https://agentmods.dev/skills/mnlt/teleport/jira)
Your own site
<a href="https://agentmods.dev/skills/mnlt/teleport/jira"><img src="https://agentmods.dev/badge/skills/mnlt/teleport/jira.svg" alt="Measured on agentmods" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,795 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00057 $0.01795
Opus 5 $0.00028 $0.00898
Sonnet 5 $0.00011 $0.00359
Haiku 4.5 $0.00006 $0.00179

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

Security

Grade B, and why

jira scanned grade B with 2 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

**Do NOT suggest editing `~/.claude/settings.local.json` manually.** The `teleport-setup add-key` command handles that safely with backup, validation, and masked input. Stop execution until the user has run the command a

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -sL -X POST -H "Authorization: $AUTH" -H "Content-Type: application/json" \
skills/jira/SKILL.md · 123 lines

How it starts

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

Jira (Atlassian Cloud)

Direct REST access to Jira Cloud — no MCP server required. Good for triaging backlogs, bulk status updates, sprint/board reporting, creating issues from logs.

Usage

  • Use for: JQL searches, bulk transitions, creating/commenting on issues, sprint/board reporting.
  • Skip for: Personal TODOs, teams on Linear/GitHub Issues, read-only link sharing, Server/Data Center Jira (Cloud only).

Credentials check

for v in JIRA_EMAIL JIRA_API_TOKEN JIRA_BASE_URL; do
  eval "val=\${$v}"
  [ -n "$val" ] && echo "$v: PRESENT" || echo "$v: MISSING"
done

Never echo the variable values directly (e.g. echo "$JIRA_API_TOKEN") — they would appear in the conversation transcript. Use only the boolean pattern above.

If any required env var is MISSING, respond to the user with EXACTLY this message (do NOT paraphrase, do NOT suggest manual JSON edits):

I need your Jira credentials. Run this in another terminal — it'll guide you through all three values safely (masked input for the secret):

teleport-setup add-key jira

Then restart Claude Code (/exit, then claude) and ask me again.

Do NOT suggest editing ~/.claude/settings.local.json manually. The teleport-setup add-key command handles that safely with backup, validation, and masked input. Stop execution until the user has run the command and restarted.

API

  • Base URL: $JIRA_BASE_URL/rest/api/3 — per-workspace (e.g. https://acme.atlassian.net/rest/api/3).
  • Auth is Basic, NOT Bearer. AUTH="Basic $(printf '%s' "$JIRA_EMAIL:$JIRA_API_TOKEN" | base64)". Bearer $TOKEN → 401.
  • Headers: Accept: application/json always; Content-Type: application/json on writes.
  • v3 requires ADF for rich-text fields (description, comment, environment); v2 accepts plain strings — escape hatch.
  • Rate limits: cost-based, not req/min (tier-1 pool 65,000 pts/hr). Watch X-RateLimit-NearLimit; on 429 honor Retry-After.

Endpoints

Resource Method · Path
Issues GET/POST/PUT/DELETE /rest/api/3/issue[/{idOrKey}]
JQL search POST /rest/api/3/search/jql (old /search deprecated)
Transitions GET/POST /rest/api/3/issue/{idOrKey}/transitions
Comments GET/POST /rest/api/3/issue/{idOrKey}/comment[/{id}] (ADF body)
Projects GET /rest/api/3/project[/{idOrKey}]
Boards/Sprints GET /rest/agile/1.0/board[/{id}/sprint]
Users GET /rest/api/3/myself, /rest/api/3/user?accountId=...
Fields GET /rest/api/3/field (resolve customfield_* → friendly name)
Attachments POST /rest/api/3/issue/{idOrKey}/attachments (multipart + XSRF header)

Read the full file on GitHub · 123 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 · 123 lines · 57 tokens per session scan B 29ca4aa8e0d7

Subscribe to this mod's changes

jira is a skill published in the GitHub repository mnlt/teleport (8 stars, last pushed 4mo ago), licensed MIT. It adds 57 tokens to every session and 1,795 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 2 findings (reads agent configuration directories, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.