A package manager for AI agents.
Install agent skills from GitHub with one command.
Note: Support for rules, subagents, and slash commands has been removed. Most AI coding agents are converging on skills as the standard format, so agr now focuses exclusively on skills. To convert your existing rules, commands, or subagents to skills, run:
agrx kasperjunge/migrate-to-skills agrx kasperjunge/migrate-to-skills -p "convert files in ./my-commands"
Install agr CLI:
pip install agrInstall your first skill:
agr add anthropics/skills/frontend-designThat's it. The skill is now available in Claude Code.
agr installs agent skills from GitHub directly into your .claude/skills/ folder.
agrx runs skills instantly from your terminal — one command, no setup.
agr add anthropics/skills/frontend-design # Install a skill
agr add anthropics/skills/pdf anthropics/skills/mcp-builder # Install multipleusername/skill-name → From user's agent-resources repo
username/repo/skill-name → From a specific repo
./path/to/skill → From local directory
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 chattingYour 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.Test it locally:
agr add ./my-skillShare it:
# Push to GitHub, then others can:
agr add your-username/my-skill| Command | Description |
|---|---|
agr add <handle> |
Install a skill |
agr remove <handle> |
Uninstall a skill |
agr sync |
Install all from agr.toml |
agr list |
Show installed skills |
agr init |
Create agr.toml |
agr init <name> |
Create a new skill |
agrx <handle> |
Run skill temporarily |
# Go development — @dsjacobsen
agr add dsjacobsen/golang-pro
# Drupal development — @madsnorgaard
agr add madsnorgaard/drupal-expertBuilt something? Share it here.