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 skills add mnlt/teleport --skill jiragit clone --depth 1 https://github.com/mnlt/teleportWrote 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/skills/mnlt/teleport/jira)<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>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.00057 | $0.01795 |
| Opus 5 | $0.00028 | $0.00898 |
| Sonnet 5 | $0.00011 | $0.00359 |
| Haiku 4.5 | $0.00006 | $0.00179 |
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" \ 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 jiraThen restart Claude Code (
/exit, thenclaude) 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/jsonalways;Content-Type: application/jsonon 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 honorRetry-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) |
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 · 123 lines · 57 tokens per session scan B 29ca4aa8e0d7
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.
Other skills, from other repositories
{{BUCKET}}-management
Skill "{{BUCKET}}-management" from damusix/atomic-claude, covering purpose, doc shape and frontmatter contract.
story
Track tickets, issues, and progress for your project. Load project context, manage sessions, guide setup.
story
Track tickets, issues, and progress for your project. Load project context, manage sessions, guide setup.
tour-de-controle
Orchestre une tâche complexe en trois temps avec Claude Code — PLANIFIER avec le modèle le plus puissant (Fable 5 / Opus), DÉLÉGUER l'exécution à des sous-agents calibrés lot par lot (Haiku / Sonnet / Opus selon la complexité) lancés en parallèle, puis VÉRIFIER chaque livrable de façon adversariale avec le modèle…
spec-driven-dev
A guide for planning software changes in specification documents before implementation. Spec-Driven Development means proposing, reviewing, implementing, verifying, and archiving a change in defined stages.
requirement-assistant
A guide for writing clear requirements, user stories, and feature specifications. A user story describes a need from a user's point of view and the reason it matters.