claude

claude is a skill for Claude Code, Codex from lobster-kit/mcp-server-lobstervault. It costs 0 tokens per session (866 once invoked), scanned A, original, MIT.

An encrypted secret-storage service for AI agents. It stores values such as API keys, database connection strings, tokens, and passwords so they can be used across sessions.

In plain words
What is it for?
Saving, retrieving, listing, deleting, injecting, and rotating credentials used by an agent.
Why use it?
It separates sensitive credentials from conversation text and source code. Agents can retrieve or load stored secrets when needed, while secret names can be listed without exposing their values.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Saving, retrieving, listing, deleting, injecting, and rotating credentials used by an agent.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lobster-kit/mcp-server-lobstervault/claude
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add lobster-kit/mcp-server-lobstervault --skill claude
Clone the repo
git clone --depth 1 https://github.com/lobster-kit/mcp-server-lobstervault

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for claude

README.md
[![agentmods](https://agentmods.dev/badge/skills/lobster-kit/mcp-server-lobstervault/claude/github.svg)](https://agentmods.dev/skills/lobster-kit/mcp-server-lobstervault/claude)
Your own site
<a href="https://agentmods.dev/skills/lobster-kit/mcp-server-lobstervault/claude"><img src="https://agentmods.dev/badge/skills/lobster-kit/mcp-server-lobstervault/claude/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for claude

Your own site · 80×15
<a href="https://agentmods.dev/skills/lobster-kit/mcp-server-lobstervault/claude"><img src="https://agentmods.dev/badge/skills/lobster-kit/mcp-server-lobstervault/claude.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 866 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.00866
Opus 5 $0.00000 $0.00433
Sonnet 5 $0.00000 $0.00173
Haiku 4.5 $0.00000 $0.00087

Measured 9d ago against content hash b44da98f92fa, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

claude scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/claude/SKILL.md · 87 lines

How it starts

The opening of the file, as written. The whole thing — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.

LobsterVault

LobsterVault is an encrypted secret storage service for AI agents. Use it to store API keys, database connection strings, tokens, and any sensitive values that need to persist across sessions.

MCP Tools

Tool When to use
set_secret Store a new secret or update an existing one
get_secret Retrieve a secret value by name
delete_secret Permanently delete a secret
list_secrets See all stored secret names (values never returned)
inject_secrets Load all secrets into process.env at session start
rotate_secret Re-encrypt a secret with a fresh key (Pro+)
share_secret Create a time-limited share link for a secret (Builder+)
list_shares List active share links on the account (Builder+)
revoke_share Revoke a share link immediately (Builder+)
get_shared_secret Retrieve a shared secret using a share token (no auth)
get_account View tier, usage, and limits

When to use LobsterVault

  • User needs to persist credentials between sessions (API keys, tokens, passwords)
  • A LobsterDB database was just created — store its connection string here
  • User asks you to "remember" an API key or "save" credentials
  • Agent-to-agent credential sharing within the same account

Core workflow

set_secret → get_secret (when needed)
inject_secrets (at the start of each session)

Naming conventions

  • Use SCREAMING_SNAKE_CASE for env-style secrets: OPENAI_API_KEY, STRIPE_SECRET
  • Use slash notation for namespaced secrets: prod/db-url, myapp/webhook-secret
  • Names are case-sensitive

Secret Sharing (Builder+)

Share a secret via a time-limited, read-only link. The recipient does not need an account.

Tool When to use
share_secret Create a share link (returns a lvs_ token)
list_shares List active (non-revoked, non-expired) share links
revoke_share Revoke a share link immediately
get_shared_secret Retrieve a secret using a share token (no auth required)

Read the full file on GitHub · 87 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 87 lines · 0 tokens per session scan A b44da98f92fa

Subscribe to this mod's changes

claude is a skill published in the GitHub repository lobster-kit/mcp-server-lobstervault (0 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 866 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

infisical-sync-skill

Expert knowledge for the Infisical Sync Hand — Infisical API reference, vault operations, error patterns, security guidance.

RightNow-AI/openfang · 31 tokens

secrets-management-expert

Store, distribute, rotate and revoke credentials without ever placing them in source: vaults, cloud secret managers, KMS envelope encryption and dynamic credentials. Use when the user mentions secrets, API keys, credentials, HashiCorp Vault, KMS, key rotation, a leaked or committed secret, .env files, sealed secrets…

personamanagmentlayer/pcl · 96 tokens

secrets-management

Performs a structured secrets management review against OWASP Secrets Management Cheat Sheet and NIST SP 800-57 Part 1 Rev 5 (Recommendation for Key Management). Auto-invoked when reviewing secret handling patterns, vault configurations, .env files, or credential rotation policies. Produces a secrets management…

UnitOneAI/SecuritySkills · 82 tokens

kilocode-secrets-chit

Map secrets stores into CHIT manifests without cleartext commits for PMOVES infrastructure on the KiloCode GLM lane. Use when syncing GitHub secrets, vault labels, or Supabase runtime values to CHIT manifests.

POWERFULMOVES/PMOVES.AI · 52 tokens

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

specflow-use

To connect Rosetta with Grid Dynamics SpecFlow MCP; only when SpecFlow is mentioned and the MCP is installed.

griddynamics/rosetta · 27 tokens