A package manager for AI agents. Install agent skills from GitHub with a single command.
# Add to your Claude Code skills
git clone https://github.com/computerlovetech/agrLast scanned: 5/20/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-20T07:43:51.233Z",
"semgrepRan": false,
"npmAuditRan": true,
"pipAuditRan": true
}agr is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by computerlovetech. A package manager for AI agents. Install agent skills from GitHub with a single command. It has 446 GitHub stars.
Yes. agr passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/computerlovetech/agr" and add it to your Claude Code skills directory (see the Installation section above).
agr is primarily written in Python. It is open-source under computerlovetech on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh agr against similar tools.
No comments yet. Be the first to share your thoughts!
The package manager for AI agents.
For teams who want to manage agent skills like software packages — the way npm, PyPI, and uv manage code. Install skills from any Git repo into Claude Code, Cursor, Codex, and more, then share them across your team like real dependencies.
agr is for teams who want to manage their agent skills as seriously as they manage their code — the way npm, PyPI, and uv manage software packages.
Skills make AI agents better at your work. But today they're copied around by hand, drift between machines, and live in tool-specific folders. agr treats them like real dependencies: declared in one manifest, locked to a version, installed with one command, and identical for every teammate, on every machine, in every tool.
That brings the same wins you already get from a package manager for code:
agr.lock records the exact version of every skill, so a
skill that works today keeps working tomorrow — no silent upstream changes
breaking your agents. Upgrade on purpose, when you choose, with agr upgrade.agr add owner/repo/skill. No registry to set up, no files
to email around.agr sync,
and their agents are set up exactly like everyone else's — same skills, same
standards, day one.uv tool install agr
Five things. That's the whole tool.
agr add anthropics/skills/pdf
Handles are just a path into GitHub: owner/repo/skill. anthropics/skills/pdf
is the pdf/ directory inside
github.com/anthropics/skills. Any public
repo works — no registry, no publishing step.
agr add auto-creates agr.toml, detects which AI tools you use, and installs
the skill into each. Then invoke it in your tool:
| Tool | Invoke with |
|---|---|
| Claude Code | /pdf |
| Cursor | /pdf |
| OpenAI Codex | $pdf |
| OpenCode | pdf |
| GitHub Copilot | /pdf |
| Pi | /pdf |
Point at a directory on disk instead of a repo:
agr add ./skills/my-internal-skill
Great for skills you're still writing, or ones that never leave your codebase. They sync into every tool exactly like remote skills.
.claude/skills/, .cursor/skills/, … are build artifacts — like .venv/ or
node_modules/. Add them to .gitignore. Commit agr.toml and
agr.lock instead:
tools = ["claude", "cursor"]
dependencies = [
{handle = "anthropics/skills/pdf", type = "skill"},
{handle = "anthropics/skills/frontend-design", type = "skill"},
{path = "./skills/my-internal-skill", type = "skill"},
]
A new teammate clones the repo and runs:
agr sync # like `npm install`, but for AI agents
Now everyone has the same skills, the same standards, in every tool.
agr upgrade # all skills
agr upgrade pdf # just one
Re-fetches skills at their latest upstream version and updates agr.lock.
agrx anthropics/skills/pdf
Downloads and runs a skill once, then throws it away — nothing added to
agr.toml, nothing left behind.
| Command | What it does |
|---|---|
agr add <handle|path> |
Install a skill and add it to agr.toml |
agr remove <handle> |
Uninstall a skill |
agr sync |
Install everything in agr.toml |
agr upgrade [handle...] |
Re-fetch skills at their latest version |
agr list |
Show installed skills |
agrx <handle> |
Run a skill once, without installing |
Add -g to add, remove, sync, or list to manage global skills,
available across all your projects.
agr add dsjacobsen/agent-resources/golang-pro # Go — @dsjacobsen
agr add maragudk/skills/collaboration # Workflow — @maragudk
agr add madsnorgaard/drupal-agent-resources/drupal-expert # Drupal — @madsnorgaard
Built something? Share it here.