jira

jira is a skill for Claude Code, Codex from eobarretooo/ClawLite. It costs 21 tokens per session (630 once invoked), scanned A, original, MIT.

A connection to Jira, a project-management system where teams track bugs, tasks, and other work items.

In plain words
What is it for?
It helps read and search issues, create new ones, move them between statuses, and add comments through Jira's web API.
Why use it?
It lets a coding agent manage tracked work without requiring someone to copy details between the code workflow and Jira.

Skill for Claude CodeCodex

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/eobarretooo/clawlite/jira
Any agent
npx skills add eobarretooo/ClawLite --skill jira
Clone the repo
git clone --depth 1 https://github.com/eobarretooo/ClawLite

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/eobarretooo/clawlite/jira.svg)](https://agentmods.dev/skills/eobarretooo/clawlite/jira)
Your own site
<a href="https://agentmods.dev/skills/eobarretooo/clawlite/jira"><img src="https://agentmods.dev/badge/skills/eobarretooo/clawlite/jira.svg" alt="Measured on agentmods" height="20"></a>
Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 630 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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 $0.00021 $0.00630
Opus 5 $0.00010 $0.00315
Sonnet 5 $0.00004 $0.00126
Haiku 4.5 $0.00002 $0.00063

Measured 5d ago against content hash 55418f98346a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

jira scanned grade A with 1 finding 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 5d 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.

Makes network callslowCapability

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

curl -s -H "Authorization: Basic $AUTH" -H "Accept: application/json" \
clawlite/skills/jira/SKILL.md · 70 lines

What it actually says

Jira

Use this skill when the user wants to manage Jira issues, transitions, or comments.

Auth

Set:

AUTH=$(echo -n "$JIRA_EMAIL:$JIRA_API_TOKEN" | base64)
BASE="$JIRA_BASE_URL/rest/api/3"

Issues

# Get an issue
curl -s -H "Authorization: Basic $AUTH" -H "Accept: application/json" \
  "$BASE/issue/PROJ-123"

# Search with JQL
curl -s -H "Authorization: Basic $AUTH" -H "Accept: application/json" \
  "$BASE/search?jql=project=PROJ+AND+status='In Progress'&maxResults=20"

# Create an issue
curl -s -X POST -H "Authorization: Basic $AUTH" \
  -H "Content-Type: application/json" -H "Accept: application/json" \
  "$BASE/issue" \
  -d '{"fields":{"project":{"key":"PROJ"},"summary":"Issue title","issuetype":{"name":"Bug"},"description":{"type":"doc","version":1,"content":[{"type":"paragraph","content":[{"type":"text","text":"Description"}]}]}}}'

Transitions

# Get available transitions
curl -s -H "Authorization: Basic $AUTH" "$BASE/issue/PROJ-123/transitions"

# Perform a transition (e.g. move to Done)
curl -s -X POST -H "Authorization: Basic $AUTH" \
  -H "Content-Type: application/json" \
  "$BASE/issue/PROJ-123/transitions" \
  -d '{"transition":{"id":"31"}}'

Comments

# Add a comment
curl -s -X POST -H "Authorization: Basic $AUTH" \
  -H "Content-Type: application/json" \
  "$BASE/issue/PROJ-123/comment" \
  -d '{"body":{"type":"doc","version":1,"content":[{"type":"paragraph","content":[{"type":"text","text":"Comment text"}]}]}}'

Safety notes

  • Descriptions and comments use Atlassian Document Format (ADF), not plain text.
  • Fetch transitions before calling transition endpoint — IDs differ per project.
  • Never delete issues; use "Won't Do" or "Cancelled" transitions instead.
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. 5d ago First seen · 70 lines · 21 tokens per session scan A 55418f98346a

Subscribe to this mod's changes

jira is a skill published in the GitHub repository eobarretooo/ClawLite (49 stars, last pushed 2mo ago), licensed MIT. It adds 21 tokens to every session and 630 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

linear

Search, read, create, and update the user's Linear issues, projects, and comments through per-user OAuth.

yc-software/qm · 24 tokens

dispatch

Use when a task file exists in .hyperflow/tasks/ and workers need dispatching. Fans out parallel workers under per-batch Reviewers, runs a final integration review, and commits per sub-task. Endpoint of the auto-chain — no auto-deploy. Trigger with /hyperflow:dispatch, "run the plan", "execute the task", "build it"…

jeremylongshore/tons-of-skills-marketplace · 81 tokens

commonly

You are a member of a Commonly workspace — a shared space where humans and AI agents from any origin collaborate in pods (chat rooms with memory). Use this whenever you are connected to Commonly via the commonly MCP tools: to read what's happening, post, remember things across sessions, react, DM other agents, and…

Team-Commonly/commonly · 0 tokens

factory-mcp

Use the Warp Factory MCP to hand work to a software factory and collaborate with it — bundle local work and send it to the cloud, find factory tasks from a Slack thread / Linear ticket / description, and pull a task down to test or iterate locally and hand it back.

warpdotdev/warp · 58 tokens

clawdtributor

Clawtributor PRs here, last week or another window: discover conversation refs, recheck GitHub, rank by impact.

openclaw/openclaw · 30 tokens

bbs-relay-pickup

被唤醒时从 task API 发现 BBS 升级任务、CAS 占根、自判剩余、挂节点、执行、经回投写回.

inclusionAI/Avernet · 43 tokens