Manual Install

Install the Keeper Agent Kit by cloning the repo and copying skill files. Works in air-gapped environments and with any agent that reads SKILL.md files.

This guide covers manual installation by cloning the GitHub repo. Use this method if you're in an air-gapped environment, don't have Node.js, or need full control over what gets installed. For faster setup, see all the available installation methods we support for AI Agents.


Step 1: Clone the Repo

git clone https://github.com/Keeper-Security/keeper-agent-kit
cd keeper-agent-kit

Step 2: Copy Skills to Your Agent

Each agent reads skills from a different directory. Find your agent below and copy the files there.

Agent
Skills Path

Claude Code (global)

~/.claude/skills/

Claude Code (project)

./.claude/skills/

Cursor (global)

~/.cursor/skills/

Cursor (project)

./.cursor/skills/

Codex

~/.codex/skills/

GitHub Copilot

~/.github/skills/

VS Code (Copilot Chat)

./.github/skills/

OpenCode

~/.opencode/skills/

Gemini CLI

~/.gemini/skills/

Example: Claude Code (global install)

mkdir -p ~/.claude/skills
cp -r plugins/*/skills/* ~/.claude/skills/

Example: Claude Code (project-level, shared with your team)

Then commit .claude/skills/ to your repo so collaborators get the same skills.

Example: Cursor

Step 3: Verify

After copying, restart your agent session. Then test with a prompt like:

"How do I list my KSM profiles?"

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

In Claude Code, you can also check /pluginInstalled tab.


Installing Individual Skills

If you only need one skill, copy just that folder:


Multi-Agent Setup

If you use more than one agent, you can install to all of them from the same clone:

Or use symlinks so updates apply everywhere:


Updating

Pull the latest from GitHub and re-copy:


Uninstall

Delete the skill directories from your agent's skills folder:

Repeat for any other agents where you installed them.

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

Last updated

Was this helpful?