A package manager for AI agents.
Install agent skills from GitHub with one command.
Install agr CLI:
uv tool install agrInstall your first skill:
agr add anthropics/skills/frontend-designThat's it. The skill is now available in your configured tool (Claude Code, Codex, Cursor, OpenCode, Copilot, or Antigravity).
agr installs agent skills from GitHub directly into your tool's skills folder
(.claude/skills/, .agents/skills/, .cursor/skills/, .opencode/skills/, .github/skills/, or .agent/skills/).
agrx runs skills instantly from your terminal — download, run, then clean up.
agr add anthropics/skills/frontend-design # Install a skill
agr add -g anthropics/skills/frontend-design # Install globally for your user
agr add anthropics/skills/pdf anthropics/skills/mcp-builder # Install multiple
agr add anthropics/skills/pdf --source github # Install from an explicit sourceRemote installs require git to be available on your system.
username/skill-name → From user's skills repo
username/repo/skill-name → From a specific repo
./path/to/skill → From local directory
Note: username/skill-name now defaults to a repo named skills. During a
deprecation period, agr will fall back to agent-resources (with a warning) if
the skill isn't found in skills.
Custom repo name? If your skills live in a repo named anything other than
skillsoragent-resources, the two-part handle will fail. Use the three-part format:agr add username/my-custom-repo/skill-name
agrx anthropics/skills/pdf # Run a skill instantly
agrx anthropics/skills/pdf -p "Extract tables from report.pdf" # With a prompt
agrx anthropics/skills/skill-creator -i # Run, then continue chatting
agrx anthropics/skills/pdf --tool cursor # Use a specific toolYour dependencies are tracked in agr.toml:
dependencies = [
{handle = "anthropics/skills/frontend-design", type = "skill"},
{handle = "anthropics/skills/brand-guidelines", type = "skill"},
]Teammates run:
agr syncagr init my-skillCreates my-skill/SKILL.md:
---
name: my-skill
description: What this skill does.
---
# My Skill
Instructions for the agent.If you're adding it to this repo, place it under ./skills/.
Test it locally:
agr add ./skills/my-skillShare it:
# Push to GitHub, then others can:
agr add your-username/my-skillagr init # Create agr.toml (auto-detects tools)
agr onboard # Interactive guided setupagr init creates agr.toml and detects which tools you use from repo signals (.claude/, CLAUDE.md, .cursor/, etc.).
agr onboard walks you through tool selection, skill discovery, migration, and configuration interactively.
| Command | Description |
|---|---|
agr add <handle> |
Install a skill |
agr add -g <handle> |
Install a skill globally |
agr remove <handle> |
Uninstall a skill |
agr remove -g <handle> |
Uninstall a global skill |
agr sync |
Install all from agr.toml |
agr sync -g |
Sync global dependencies |
agr list |
Show installed skills |
agr list -g |
Show global skills |
agr init |
Create agr.toml |
agr init <name> |
Create a new skill |
agr onboard |
Interactive guided setup |
agr config <cmd> <key> |
Manage agr.toml (show, get, set, add, remove, unset, edit, path) |
agrx <handle> |
Run skill temporarily |
# Go development — @dsjacobsen
agr add dsjacobsen/golang-pro
# Drupal development — @madsnorgaard
agr add madsnorgaard/drupal-agent-resources/drupal-expert
agr add madsnorgaard/drupal-agent-resources/drupal-security
agr add madsnorgaard/drupal-agent-resources/drupal-migration
agr add madsnorgaard/drupal-agent-resources/ddev-expert
agr add madsnorgaard/drupal-agent-resources/docker-localBuilt something? Share it here.
agr uses a slightly different handle format than npx skills:
| What you want | npx skills | agr |
|---|---|---|
| Skill from a repo | npx skills add owner/repo |
agr add owner/repo/skill-name |
| Skill from user's default repo | — | agr add owner/skill-name |
The key difference: agr handles always point to a specific skill, not a
repo to scan. Use the three-part format owner/repo/skill-name when the skill
lives in a non-default repo.
If you use a two-part handle and the skill isn't found, agr will check if a
matching repository exists and suggest the correct handles.