Skip to content

First steps

This page gets you from zero to a working resource.

Install a skill

agr add skill kasperjunge/hello-world

This installs the skill into:

./
└── .claude/
    └── skills/
        └── hello-world/

Install a command or agent

agr add command kasperjunge/hello-world
agr add agent kasperjunge/hello-world

Commands install into:

./
└── .claude/
    ├── commands/
    │   └── hello-world.md
    └── agents/
        └── hello-world.md

Use your resource

Once installed, your agent can use the new skill automatically and you can run slash commands inside Claude Code. No additional configuration is required.

Common options

# Install globally instead of in the current repo
agr add skill kasperjunge/hello-world --global

# Overwrite an existing resource
agr add skill kasperjunge/hello-world --overwrite

Next steps