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 skills/fmind/dot/aclinpx skills add fmind/dot --skill acligit clone --depth 1 https://github.com/fmind/dotWrote 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/fmind/dot/acli)<a href="https://agentmods.dev/skills/fmind/dot/acli"><img src="https://agentmods.dev/badge/skills/fmind/dot/acli.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 | $0.00048 | $0.00733 |
| Opus 5 | $0.00024 | $0.00367 |
| Sonnet 5 | $0.00010 | $0.00147 |
| Haiku 4.5 | $0.00005 | $0.00073 |
Grade A, and why
acli 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 yesterday.
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 — 52 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Atlassian CLI
Use acli for Jira and Confluence Cloud from the shell. Atlassian publishes no skill for acli itself, so this skill owns authentication, bounded reads, and the write boundary.
Workflow
-
Resolve the account:
acli auth status, thenacli auth loginfor OAuth or an API token piped on stdin, never as an argument;acli auth switchselects the site when several are configured.acli jira auth login --site <site>.atlassian.net --email <email> --token < token.txt -
Bounded reads: JQL with a limit and explicit fields, JSON for anything a tool parses.
acli jira workitem search --jql 'project = TEAM AND status != Done' --fields key,summary,status --limit 50 --json acli jira workitem view TEAM-123 --fields summary,status,comment --json acli confluence page view --id <page-id> --body-format storage --json -
Write with authority: creation, edits, transitions, comments, assignments, and bulk operations need explicit confirmation of the exact keys and fields; prefer
--generate-jsonthen--from-jsonfor reproducible creations.acli jira workitem create --project TEAM --type Task --summary "<summary>" --json acli jira workitem transition --key TEAM-123 --status "In Progress" acli jira workitem comment create --key TEAM-123 --body "<text>" -
Verify by reading back:
view --jsonafter every mutation and compare the requested fields.
Gotchas
- Bulk flags:
--jqland--filterontransition,edit, orcommentact on every match; ontransitionandedit,--yesskips the prompt, not the authority rule. - Rovo Dev:
acli rovodevis Atlassian's coding agent, not configured here; it reads.agents/skillsand~/.agents/skills, so this catalog is available there without copies. - MCP:
atlassian/atlassian-mcp-serverpublishes skills for the Rovo MCP server (skills add atlassian/atlassian-mcp-server --list), configured per agent-mcp; none coversacli.
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.
- yesterday First seen · 52 lines · 48 tokens per session scan A b9189041e2cb
acli is a skill published in the GitHub repository fmind/dot (4 stars, last pushed today), licensed MIT. It adds 48 tokens to every session and 733 once invoked, about $0.0002 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-09-03.
Other skills, from other repositories
github-issues
Manage GitHub issues with gh: confirm repo and state, deduplicate, preserve evidence, and verify authorized creation, edits, labels, comments, or closure.
product-loop
Discovery, specification, launch, and learning for a product in one loop. Build-or-stop calls, MVP wedges, demand tests, customer interviews, PRDs, requirements, user journeys, acceptance, positioning, onboarding, rollout, pricing, pivots.
project-backlog
Turn audit findings into deduplicated, prioritized issue drafts with dependencies and explicit authorization before GitHub mutation.
go-stack
Build Go projects, libraries, CLIs, TUIs, web apps, or ADK agents with the standard package layout and pinned tooling.
python-stack
Build typed Python projects with uv, Ruff, ty, pytest, Litestar, and Typer. Use for packages, CLIs, web apps, tests, typing, or API verification.
k8s-local
Create and manage local Kubernetes clusters (k3d or kind) and deploy to them with kubectl, helm, helmfile, and skaffold. Use for local k8s cluster setup, dev loops, and debugging.