HeroPrompt
Back to docs

Guides

Install a persona pack

Get all of a role's skills and commands at once

Install a persona pack

A persona pack gives you a role's full kit — skills + slash commands — in one command. This guide walks the full flow.

Pick a pack

bash
heroprompt pack list

Shows every available pack with its skill and command counts. Or browse them visually at /packs.

To preview what a pack contains before installing:

bash
heroprompt pack info developer

Install

bash
heroprompt pack install developer

Output you should see:

text
✓ Installed developer (v1.0.0): 6 skills, 10 commands.
ℹ Restart your Claude Code session to load the new skills/commands.

If you already have a pack installed under the same id, the CLI refuses to overwrite. Pass --force to replace it.

Verify

Check what landed locally:

bash
ls ~/.claude/skills/heroprompt-developer
ls ~/.claude/commands/heroprompt-developer

Open one of the SKILL.md files — you'll see YAML frontmatter at the top (name, description) followed by the workflow body.

Open a new Claude Code session and type / — the new slash commands appear in the picker.

Switch packs

You can have multiple packs installed at once. Add a second one:

bash
heroprompt pack install qa

To remove one:

bash
heroprompt pack uninstall qa

The CLI deletes ~/.claude/skills/heroprompt-qa and ~/.claude/commands/heroprompt-qa and records the uninstall on the server.

Keep packs up to date

Packs are versioned. Run:

bash
heroprompt pack sync

The CLI checks every pack you have installed against the latest server version. Up-to-date packs are skipped; stale ones get re-rendered.

You can also see "Update available" badges on /dashboard/packs.