HeroPrompt
Back to docs

Getting Started

Quickstart

From zero to running prompts in Claude Code in 2 minutes

Quickstart

Get a working pack of skills and slash commands into Claude Code in five short steps. No prior setup beyond Python 3.8+ and Claude Code installed.

Install the CLI

bash
pipx install heroprompt-cli

If you don't have pipx: pip install --user heroprompt-cli works too. We recommend pipx so the CLI lands in its own virtualenv.

Authenticate

Sign up at heroprompt.store/signup, generate a token under Settings → CLI tokens, then run:

bash
heroprompt login --token <your-token>

You should see Logged in as your.email@example.com.

Install a pack

Pick the pack for your role and install it:

bash
heroprompt pack install developer

The CLI writes skills to __CODE_0__ and slash commands to __CODE_1__. Browse every available pack at /packs or see Persona Packs for the full lineup.

Use in Claude Code

Restart your Claude Code session. The new skills auto-activate based on what you're working on, and the slash commands appear when you type /. Try:

text
/commit

That's it — you have role-specific AI muscle wired into your agent.

Next steps