Reference
Common Workflows
| Goal | Command(s) |
|---|---|
| Install a skill for your tool | agr add <handle> |
| Run a skill once | agrx <handle> |
| Team sync | Add to agr.toml, then agr sync |
| Configure tool targets | agr config set tools claude codex |
| Interactive guided setup | agr onboard |
| Create a new skill | agr init <name> |
| Migrate old rules/commands | agrx kasperjunge/migrate-to-skills |
Global Options
--quiet,-q— Suppress non-error output (works with all commands)--version,-v— Show version and exit
CLI Commands
agr add
Install skills from GitHub or local paths. Skills are installed into your tool's
skills folder (e.g. .claude/skills/, .codex/skills/, .cursor/skills/,
.opencode/skill/, .github/skills/, .agent/skills/).
Arguments:
handle— Skill handle (user/skilloruser/repo/skill) or local path (./path)
Options:
--overwrite,-o— Replace existing skills--source <name>— Use a specific source fromagr.toml--global,-g— Install globally using~/.agr/agr.tomland tool global directories
Examples:
agr add anthropics/skills/frontend-design
agr add -g anthropics/skills/frontend-design
agr add kasperjunge/commit kasperjunge/pr
agr add ./my-skill
agr add anthropics/skills/pdf --overwrite
agr add anthropics/skills/pdf --source github
agr remove
Uninstall skills.
Options:
--global,-g— Remove from global skills directory
Examples:
agr remove anthropics/skills/frontend-design
agr remove -g anthropics/skills/frontend-design
agr remove kasperjunge/commit
agr remove ./my-skill
agr sync
Install all dependencies from agr.toml.
Installs any skills listed in agr.toml that aren't already installed.
agr list
Show all skills and their installation status.
Displays skills from agr.toml and whether they're installed.
agr init
Create agr.toml or a skill scaffold.
agr init creates agr.toml and auto-detects which tools you use from repo
signals (.claude/, CLAUDE.md, .cursor/, .cursorrules, etc.). It does not
discover or add skills — use agr onboard for interactive setup with skill
discovery and migration.
Options:
--tools— Comma-separated tool list (e.g.,claude,codex,opencode)--default-tool— Default tool foragrxand instruction sync--sync-instructions/--no-sync-instructions— Sync instruction files onagr sync--canonical-instructions— Canonical instruction file (AGENTS.mdorCLAUDE.md)
Examples:
agr init # Creates agr.toml in current directory
agr init my-skill # Creates my-skill/SKILL.md
agr init --tools claude,codex,opencode --default-tool claude
agr init --sync-instructions --canonical-instructions CLAUDE.md
agr onboard
Interactive guided setup. Walks you through tool selection, skill discovery,
migration from tool folders into ./skills/, and configuration.
Options:
--no-migrate— Skip migration offer for skills in tool folders
Examples:
agr config
Manage agr.toml configuration.
agr config show # View formatted config
agr config path # Print agr.toml path
agr config edit # Open in $EDITOR
agr config get <key> # Read a config value
agr config set <key> <values> # Write scalar or replace list
agr config add <key> <values> # Append to list
agr config remove <key> <values> # Remove from list
agr config unset <key> # Clear to default
Valid keys: tools, default_tool, default_source, sync_instructions, canonical_instructions, sources
Options (on all subcommands):
--global,-g— Operate on~/.agr/agr.tomlinstead of local
Options (on add only):
--type— Source type (when key issources)--url— Source URL (when key issources)
Examples:
agr config set tools claude codex opencode
agr config set default_tool claude
agr config add tools cursor
agr config remove tools cursor
agr config set sync_instructions true
agr config set canonical_instructions CLAUDE.md
agr config add sources my-source --type git --url "https://git.example.com/{owner}/{repo}.git"
agr config unset default_tool
Deprecated aliases
agr config tools list/add/set/remove and agr config default-tool set/unset still work but print deprecation warnings. Use the unified commands above instead.
agrx
Run a skill temporarily without adding to agr.toml.
Downloads the skill, runs it with the selected tool, and cleans up afterwards.
Options:
--tool,-t— Tool CLI to use (claude, cursor, codex, opencode, copilot, antigravity). Overridesdefault_toolfrom config.--interactive,-i— Run skill, then continue in interactive mode--prompt,-p— Prompt to pass to the skill--global,-g— Install to the global tool skills directory instead of the repo-local one--source <name>— Use a specific source fromagr.toml
Examples:
agrx anthropics/skills/pdf
agrx anthropics/skills/pdf -p "Extract tables from report.pdf"
agrx kasperjunge/commit -i
agrx kasperjunge/commit --source github
agr.toml Format
default_source = "github"
tools = ["claude", "codex", "opencode"]
default_tool = "claude"
sync_instructions = true
canonical_instructions = "CLAUDE.md"
dependencies = [
{handle = "anthropics/skills/frontend-design", type = "skill"},
{handle = "kasperjunge/commit", type = "skill"},
{path = "./local-skill", type = "skill"},
]
[[source]]
name = "github"
type = "git"
url = "https://github.com/{owner}/{repo}.git"
Each dependency has:
handle— Remote handlepath— Local pathsource— Optional source name for remote handlestype— Currently alwaysskill
Note: dependencies must appear before any [[source]] blocks in agr.toml.
Top-Level Keys
default_source— Name of the default[[source]]for remote installstools— List of tools to sync instructions/skills todefault_tool— Default tool used byagrxsync_instructions— Sync instruction files onagr synccanonical_instructions— Canonical instruction file (AGENTS.mdorCLAUDE.md)
Troubleshooting
Skill not found
Check that the skill exists in the repository. agr searches:
resources/skills/{name}/SKILL.mdskills/{name}/SKILL.md{name}/SKILL.md
Skill already exists
Use --overwrite:
Repository not found
Check:
- Username and repo name are correct
- Repository is public
- Default branch is
main
Git not installed
Remote installs require git to be available on your system.
Not in a git repository
agrx requires a git repository (or use --global):
Network errors
Ensure the repository is public and you have internet access.