# Agent Resources

> A package manager for Claude Code resources.

## What This Is

Agent Resources (agr) is a CLI tool that lets developers install and create Claude Code skills,
commands, and subagents from GitHub.

## Quick Start

```bash
pip install agr
agr add username/skill-name
```

## Key Pages

- [Introduction](https://kasperjunge.github.io/agent-resources/site/) - Overview and quick start
- [Getting started](https://kasperjunge.github.io/agent-resources/site/getting-started/) - Install and first steps
- [Guides](https://kasperjunge.github.io/agent-resources/site/guides/) - Common workflows
- [Concepts](https://kasperjunge.github.io/agent-resources/site/concepts/) - Mental models and structure
- [Reference](https://kasperjunge.github.io/agent-resources/site/reference/) - CLI reference and troubleshooting

## Resource Types

| Type | Description |
|------|-------------|
| Skills | Capabilities your agent uses automatically |
| Commands | Slash commands like `/review` or `/deploy` |
| Agents | Specialized subagents to delegate tasks to |

## Common Commands

```bash
# Install from GitHub (auto-detects type)
agr add username/resource-name

# Install globally (all projects)
agr add username/resource-name --global

# Run temporarily without installing
agrx username/resource-name

# Initialize authoring structure
agr init

# Create resources
agr init skill my-skill
agr init command my-command
agr init agent my-agent

# Sync dependencies
agr sync
```

## Source Code

- GitHub: https://github.com/kasperjunge/agent-resources
- PyPI: https://pypi.org/project/agr/

## Contact

- GitHub Issues: https://github.com/kasperjunge/agent-resources/issues
- Author: Kasper Junge (@kasperjunge)

## License

MIT License
