Install the Skill in Claude Code
Install the Autousers Skill into Claude Code with one command.
Prerequisites
- Claude Code installed (https://code.claude.com)
- The @autousers/mcp MCP server already connected — see Connect Claude Code to MCP if you have not done this yet
- An ak_live_* API key minted at https://app.autousers.ai/settings/api-keys
Install in one command
The MCP package ships an install-skill subcommand that copies the Skill into your Claude Code skills directory. Run:
npx -y @autousers/mcp install-skillPersonal install: ~/.claude/skills/autousers/
To install at project scope instead (so only this repo sees the Skill):
npx -y @autousers/mcp install-skill --projectProject install: ./.claude/skills/autousers/
Verify the install
- Quit and restart Claude Code so the Skill is picked up at startup
- Start a new session in any project
- Try a prompt: 'Create a side-by-side eval comparing https://example.com and https://example.org'
- Claude should call autousers_list first, present persona candidates, then call evaluations_create with dryRun: true to preview cost
Update the Skill
npx -y @autousers/mcp@latest install-skill --forcePulls the latest @autousers/mcp and re-installs the Skill
Manual install (alternative)
If you prefer to bundle the Skill yourself, the source folder ships inside the npm package at node_modules/@autousers/mcp/skill/autousers/. Copy that directory to ~/.claude/skills/autousers/ — the install-skill subcommand does exactly this.
Uninstall
rm -rf ~/.claude/skills/autousersPersonal scope
rm -rf ./.claude/skills/autousersProject scope