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/computerlovetech/agr/agr-clinpx skills add computerlovetech/agr --skill agr-cligit clone --depth 1 https://github.com/computerlovetech/agrWhat 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.00147 | $0.03060 |
| Opus 5 | $0.00073 | $0.01530 |
| Sonnet 5 | $0.00029 | $0.00612 |
| Haiku 4.5 | $0.00015 | $0.00306 |
Grade A, and why
agr-cli 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.
How it starts
The opening of the file, as written. The whole thing — 277 lines — stays where its author put it; the contents beside it link to each section on GitHub.
agr CLI
agr is the package manager for AI agent skills. It installs, shares, and syncs
SKILL.md folders across Claude Code, Cursor, Codex, OpenCode, GitHub Copilot,
and Pi. This skill helps you operate the agr CLI on the user's
behalf — set up new repos, install and sync skills, manage agr.toml /
agr.lock, and scaffold in-repo skills under skills/.
When to use
Use this skill when the user wants to:
- Install or remove a remote skill (
agr add anthropics/skills/pdf). - Sync
agr.tomlafter pulling teammates' changes (agr sync). - Upgrade an installed skill past its pinned commit (
agr upgrade). - Run a skill once without persisting it (
agrx ...) or invoke an installed one (agr run). - Scaffold a new skill (
agr init my-skill) — especially as in-repo skills underskills/. - Set up a repo from scratch to use agr (multi-tool config, instruction syncing, sources).
- Add a local in-repo skill to the project's dependency list.
- Inspect, edit, or troubleshoot
agr.toml/agr.lock/agr config. - Or whenever
agr.tomlis present and the user is doing resource-management work.
Do NOT use this skill for:
- Authoring the body of a SKILL.md. This skill scaffolds and registers; for
writing effective skill instructions, defer to the user or to a dedicated
authoring skill such as
anthropics/skills/skill-creator. - Iterating on an existing skill based on session feedback or a retrospective.
That's a separate workflow — listen, propose, edit, commit, re-install. If
the user has a dedicated debrief / improvement skill installed (e.g.
skill-debrief), use it; otherwise just do the workflow directly.
Prerequisites
Before running anything, verify agr is installed:
agr --version
If missing, the standard install is uv tool install agr. Do not install agr
without checking with the user first — they may prefer pipx, brew, or a
pinned version in CI.
Mental model — read first
- A skill is a folder containing a
SKILL.md. agr copies the whole folder into each configured AI tool's skills directory (.claude/skills/,.cursor/skills/,.opencode/skills/,.agents/skills/, etc.). - A handle identifies a remote skill:
user/skill(assumes a repo namedskills),user/repo/skill(any repo), or./local/path(on disk). agr.tomlis the manifest (hand-edited or written byagr add).agr.lockis the lockfile (auto-generated, pins commit SHAs and content hashes — never edit by hand).- Project-local vs global scope: every command takes
-gto operate on~/.agr/agr.tomland global tool dirs. agr synconly installs missing deps. To move past a pinned commit, useagr upgrade.- Resource types: skill (consumed by AI tools), ralph (autonomous
agent loop), package (a folder with its own
agr.toml, expanded transitively).agr addauto-detects the type.
What ships with it
8 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.
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.
- 2d ago First seen · 277 lines · 147 tokens per session scan A fcf1b053b4fa
agr-cli is a skill published in the GitHub repository computerlovetech/agr (452 stars, last pushed 20d ago), licensed MIT. It adds 147 tokens to every session and 3,060 once invoked, about $0.0007 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-08-30.
Other skills, from other repositories
agent-builder
Design and build AI agents for any domain. Use when users: (1) ask to "create an agent", "build an assistant", or "design an AI system" (2) want to understand agent architecture, agentic patterns, or autonomous AI (3) need help with capabilities, subagents, planning, or skill mechanisms (4) ask about Claude Code…
code-review
Perform thorough code reviews with security, performance, and maintainability analysis. Use when user asks to review code, check for bugs, or audit a codebase.
mcp-builder
Build MCP (Model Context Protocol) servers that give Claude new capabilities. Use when user wants to create an MCP server, add tools to Claude, or integrate external services.
Process PDF files - extract text, create PDFs, merge documents. Use when user asks to read PDF, create PDF, or work with PDF files.
plan
Write a short implementation plan or a longer execution plan before coding. Use when starting new work, when a ticket needs clearer boundaries, when a change spans multiple files or interfaces, or when a multi-hour task needs a living plan.
ai-news-research
You produce a daily AI news digest. Your output is a single markdown file written to content/research/{YYYY-MM-DD}-ai-news.md and committed to a branch.