# Claude

This guide covers installation through the Claude Code plugin marketplace. If you use a different agent, see all the available [installation methods](https://docs.keeper.io/en/keeperpam/secrets-manager/integrations/ai-agents/..#installation) we support for AI Agents.

***

### Step 1: Add the Marketplace

Open a Claude Code session and run:

```bash
/plugin marketplace add Keeper-Security/keeper-agent-kit
```

This registers the Keeper Agent Kit catalog with Claude Code. No skills are installed yet.

{% columns fullWidth="false" %}
{% column %}

<figure><img src="https://762006384-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MJXOXEifAmpyvNVL1to%2Fuploads%2FX0imyFRksWpbXrduFREN%2Fclaude-1.png?alt=media&#x26;token=192fc200-738f-4130-babb-6c2bb5215432" alt=""><figcaption></figcaption></figure>
{% endcolumn %}

{% column %}

<figure><img src="https://762006384-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MJXOXEifAmpyvNVL1to%2Fuploads%2F1ss0H6nh5O8nvFSuHkRL%2Fclaude-3.png?alt=media&#x26;token=c0783d30-6d06-4972-bb75-0ead67144d64" alt=""><figcaption><p>Successfully added</p></figcaption></figure>
{% endcolumn %}
{% endcolumns %}

### Step 2: Install Skills

Install the skills you need:

```bash
/plugin install keeper-secrets@keeper-security
/plugin install keeper-admin@keeper-security
/plugin install keeper-setup@keeper-security
```

Or browse the catalog first with `/plugin` → **Discover** tab, then select the ones you want.

{% columns fullWidth="false" %}
{% column %}

<div data-full-width="true"><figure><img src="https://762006384-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MJXOXEifAmpyvNVL1to%2Fuploads%2FUzRownrgai3rGtnQxBCA%2Fclaude-4.png?alt=media&#x26;token=c5445993-f166-4d34-82eb-97bf2e1ca0c8" alt=""><figcaption></figcaption></figure></div>
{% endcolumn %}

{% column %}

<figure><img src="https://762006384-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MJXOXEifAmpyvNVL1to%2Fuploads%2FkAc3Lw7aErW6952mKxKz%2Fclaude-5.png?alt=media&#x26;token=b4b99669-c040-4c1e-92a6-95913bafc2c1" alt=""><figcaption></figcaption></figure>
{% endcolumn %}
{% endcolumns %}

### Step 3: Verify

Run `/plugin` and go to the **Installed** tab. You should see the Keeper skills listed. Try a quick test:

> "How do I list my KSM profiles?"

If the agent responds with `ksm profile list`, the skills are working.

<div data-full-width="false"><figure><img src="https://762006384-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MJXOXEifAmpyvNVL1to%2Fuploads%2F6Do8Tso6tXyUYpujBY9L%2Fclaude-6.png?alt=media&#x26;token=4500ed02-1e8e-40bb-bcc0-a78d6ce64e0f" alt=""><figcaption></figcaption></figure></div>

***

### Choosing a Scope

When installing through the Claude Code UI, you'll be asked to pick a scope. Here's what each one means:

| Scope              | Who sees it            | Where it lives                       | When to use it                               |
| ------------------ | ---------------------- | ------------------------------------ | -------------------------------------------- |
| **User** (default) | You, in every project  | `~/.claude/skills/`                  | You use Keeper across multiple repos         |
| **Project**        | Everyone on the repo   | `.claude/skills/` (committed to git) | Your team should all have these skills       |
| **Local**          | You, in this repo only | `.claude/skills/` (not committed)    | Testing, or you only need Keeper in one repo |

If you install from the command line with `/plugin install`, skills default to **User** scope. To pick a different scope, use the interactive UI instead.

***

### Auto-Updates

Claude Code can automatically update marketplace plugins at startup. For the Keeper Agent Kit, auto-update is **off** by default since it's a third-party marketplace.

To turn it on:

1. Run `/plugin`
2. Go to the **Marketplaces** tab
3. Select the Keeper marketplace
4. Choose **Enable auto-update**

When updates are available, you'll see a prompt to run `/reload-plugins`.

***

### Uninstall

Remove individual skills:

```bash
/plugin uninstall keeper-secrets@keeper-security
/plugin uninstall keeper-admin@keeper-security
/plugin uninstall keeper-setup@keeper-security
```

To remove the marketplace catalog entirely:

```bash
/plugin marketplace remove Keeper-Security/keeper-agent-kit
```

This only removes the agent skills. The KSM CLI and Commander CLI stay installed on your machine.
