Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Unified Keeper Security toolkit: vault secrets (KSM), enterprise admin (Commander), CLI setup, plus the official Keeper docs MCP. Works in Claude Code and Cowork.
npx claudepluginhub patrickking67/keeper-securityManage Keeper Vault, enterprise administration, PAM, and privileged access using Keeper Commander CLI (keeper). Use when the user needs to manage vault records interactively, run enterprise admin tasks (user/team/role management, SSO config, device approvals, compliance reporting), manage KSM Applications and Client Devices, configure password rotation, launch remote sessions (SSH, RDP, database), import/export data, or perform any administrative operation on Keeper. Also use when the user mentions 'keeper commander', 'keeper shell', 'keeper admin', asks about managing users/teams/roles/nodes in Keeper, needs to create KSM applications, or wants to automate Keeper admin tasks. If the user only needs to retrieve or inject secrets for an application, use the keeper-secrets skill instead.
Retrieve, inject, and manage secrets from Keeper Vault using KSM CLI (ksm). Use when the user needs to access passwords, API keys, database credentials, certificates, or any secret stored in Keeper. Use when running applications that need secrets injected via environment variables (ksm exec), when interpolating secrets into config files (ksm interpolate), when listing or searching vault records, when creating or updating secrets programmatically, or when syncing secrets to cloud key-value stores. Also use when the user mentions 'keeper', 'ksm', 'keeper secrets', 'keeper vault', 'keeper notation', 'keeper://', or asks about retrieving credentials for CI/CD, Docker, Kubernetes, or any DevOps pipeline. Prefer this skill over hardcoding credentials. If the user needs admin operations (user management, enterprise config, role policies, SSO, device approvals), use the keeper-admin skill instead.
Install and configure Keeper CLI tools (KSM CLI and Commander) for the Keeper Security agent kit. Use when the user needs to install keeper-secrets-manager-cli (ksm) or keepercommander (keeper), set up authentication, initialize profiles, configure persistent login, or troubleshoot Keeper CLI connectivity. Also use when the user says 'install keeper', 'setup keeper', 'configure keeper cli', or asks how to get started with Keeper's command line tools.
External network access
Connects to servers outside your machine
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Upstash Context7 MCP server for up-to-date documentation lookup. Pull version-specific documentation and code examples directly from source repositories into your LLM context.
Develop, test, build, and deploy Godot 4.x games with Claude Code. Includes GdUnit4 testing, web/desktop exports, CI/CD pipelines, and deployment to Vercel/GitHub Pages/itch.io.
The most comprehensive Claude Code plugin — 36 agents, 142 skills, 68 legacy command shims, and production-ready hooks for TDD, security scanning, code review, and continuous learning
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Reliable automation, in-depth debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer
Producer companion for Ableton Live. Review tracks, brainstorm, write MIDI, design sounds, dial in mixes, prep stems and releases, browse your library, and drive Live directly. Wired into Ableton, Splice, Spotify, Google Drive, Gmail, Google Calendar, and Canva.
A unified Claude plugin for Keeper Security. Bundles the three Keeper CLI skills (keeper-secrets, keeper-admin, keeper-setup) and wires up the official Keeper documentation MCP server so Claude can answer questions straight from docs.keeper.io.
Works in both Claude Code and Claude Cowork.
| Component | Type | Purpose |
|---|---|---|
keeper-secrets | Skill | Retrieve and inject secrets from Keeper Vault via the KSM CLI (ksm). Use for application credentials, CI/CD injection, keeper:// notation. |
keeper-admin | Skill | Enterprise administration, PAM, and privileged access via Keeper Commander (keeper). User/team/role management, SSO, password rotation, KSM applications. |
keeper-setup | Skill | Install and configure the Keeper CLI tools (KSM CLI and Commander). Authentication, profile setup, persistent login. |
keeper-docs | MCP server | Live HTTP MCP for docs.keeper.io. Lets Claude search the official Keeper docs. |
# From the plugins folder
git clone https://github.com/patrickking67/keeper-plugin ~/.claude/plugins/keeper
Or symlink an existing clone:
ln -s ~/Development/keeper-plugin ~/.claude/plugins/keeper
Restart Claude Code. Verify the docs MCP with /mcp.
Drop the packaged keeper.plugin file into Cowork — it'll appear as a rich preview with an install button. To rebuild the package:
cd ~/Development/keeper-plugin
zip -r /tmp/keeper.plugin . -x "*.DS_Store" -x ".git/*"
Once installed, the three skills auto-trigger based on what you ask:
| Ask Claude... | Triggers |
|---|---|
"Install the Keeper CLI" / "set up ksm" | keeper-setup |
| "Get the prod DB password from Keeper" / "run my app with secrets injected" | keeper-secrets |
| "Create a KSM application" / "add a user to the SSO team" / "rotate this credential" | keeper-admin |
| Any question about Keeper features, configuration, or APIs | keeper-docs MCP |
You can also invoke skills directly:
/keeper:keeper-secrets/keeper:keeper-admin/keeper:keeper-setupThe skills shell out to two Keeper CLI tools. If they're not installed yet, ask Claude to "install Keeper CLI" and keeper-setup will walk through it.
ksm) — pip install keeper-secrets-manager-clikeeper) — pip install keepercommanderAuthentication is per-tool (KSM uses one-time tokens; Commander uses interactive login or persistent device approval). The keeper-setup skill covers both.
The keeper-docs MCP server is hosted by Keeper at https://docs.keeper.io/en/~gitbook/mcp. No authentication required — it serves the public documentation. Tools become available as mcp__plugin_keeper_keeper-docs__*.
keeper-plugin/
├── .claude-plugin/
│ └── plugin.json
├── .mcp.json
├── skills/
│ ├── keeper-admin/
│ ├── keeper-secrets/
│ └── keeper-setup/
├── LICENSE
└── README.md
MIT. See LICENSE.
The bundled skills originate from the keeper-security plugin family and are redistributed here under the same terms.