Autousers
terminal

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

Personal install: ~/.claude/skills/autousers/

To install at project scope instead (so only this repo sees the Skill):

npx -y @autousers/mcp install-skill --project

Project install: ./.claude/skills/autousers/

infoAdd --force to overwrite an existing install. Add --target=<dir> to install into a custom directory (useful for non-Claude-Code hosts that follow the same skills-directory convention).

Verify the install

  1. Quit and restart Claude Code so the Skill is picked up at startup
  2. Start a new session in any project
  3. Try a prompt: 'Create a side-by-side eval comparing https://example.com and https://example.org'
  4. Claude should call autousers_list first, present persona candidates, then call evaluations_create with dryRun: true to preview cost
check_circleIf Claude jumps straight to evaluations_create without showing you the dryRun preview, the Skill is not loaded. Re-run the install command and restart Claude Code.

Update the Skill

npx -y @autousers/mcp@latest install-skill --force

Pulls 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/autousers

Personal scope

rm -rf ./.claude/skills/autousers

Project scope

Was this article helpful?