# 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 skill 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
agr add skill username/skill-name
agr add command username/command-name
agr add agent username/agent-name

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

# Scaffold a new repo
agr init repo agent-resources
```

## 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
