ipeakySecure API key management for OpenClaw. Store, list, test, and delete API keys without exposing them in chat history. Keys are stored directly in openclaw.json via gateway config.patch β fully native integration. Use when a user needs to provide, manage, or test API keys (e.g., OpenAI, ElevenLabs, Anthropic, Brave, or any service). Triggers on phrases like "add API key", "store my key", "manage keys", "test my key", "set up API key", or when a skill requires an API key that isn't configured.
Install via ClawdBot CLI:
clawdbot install christiancattaneo/ipeakyKeys are stored directly in OpenClaw's native config (openclaw.json) via gateway config.patch.
This means every skill that declares primaryEnv automatically picks up the key β zero manual wiring.
| Service | Config Path | primaryEnv |
|---------|------------|------------|
| OpenAI | skills.entries.openai-whisper-api.apiKey | OPENAI_API_KEY |
| ElevenLabs | skills.entries.sag.apiKey | ELEVENLABS_API_KEY |
| Brave Search | tools.web.search.apiKey | BRAVE_API_KEY |
| Gemini | skills.entries.nano-banana-pro.apiKey | GEMINI_API_KEY |
| Google Places | skills.entries.goplaces.apiKey | GOOGLE_PLACES_API_KEY |
| Notion | skills.entries.notion.apiKey | NOTION_API_KEY |
| ElevenLabs Talk | talk.apiKey | (direct) |
| Custom skill | skills.entries. | (per skill) |
| Custom env | skills.entries. | (arbitrary) |
Important: Some keys serve multiple skills. OpenAI key is used by openai-whisper-api,
openai-image-gen, etc. ElevenLabs key is used by sag and talk. When storing, set ALL
relevant config paths for that key.
Step 1: Launch the secure input popup. On macOS:
bash {baseDir}/scripts/secure_input_mac.sh KEY_NAME
Step 2: Once you have the key value (from stdout of the script), store it via gateway config.patch.
Example for OpenAI:
gateway config.patch with raw: {"skills":{"entries":{"openai-whisper-api":{"apiKey":"THE_KEY"},"openai-image-gen":{"apiKey":"THE_KEY"}}}}
Example for ElevenLabs:
gateway config.patch with raw: {"skills":{"entries":{"sag":{"apiKey":"THE_KEY"}}},"talk":{"apiKey":"THE_KEY"}}
Example for Brave Search:
gateway config.patch with raw: {"tools":{"web":{"search":{"apiKey":"THE_KEY"}}}}
Critical rules:
reason field of config.patchRead from the live config using gateway config.get. Show masked values only (first 4 chars + ****).
Parse the config JSON and find all apiKey fields, display their config path and masked value.
Test endpoints:
curl -s -H "Authorization: Bearer $KEY" https://api.openai.com/v1/models | headcurl -s -H "xi-api-key: $KEY" https://api.elevenlabs.io/v1/usercurl -s -H "x-api-key: $KEY" -H "anthropic-version: 2023-06-01" https://api.anthropic.com/v1/messages -d '{"model":"claude-3-haiku-20240307","max_tokens":1,"messages":[{"role":"user","content":"hi"}]}'curl -s -H "X-Subscription-Token: $KEY" "https://api.search.brave.com/res/v1/web/search?q=test&count=1"Source the key from the config (via gateway config.get), test it, report result. Never show the key.
Use gateway config.patch to set the key value to an empty string or remove the entry.
source commands neededAI Usage Analysis
Analysis is being generated⦠refresh in a few seconds.
Transform AI agents from task-followers into proactive partners that anticipate needs and continuously improve. Now with WAL Protocol, Working Buffer, Autonomous Crons, and battle-tested patterns. Part of the Hal Stack π¦
Use the ClawdHub CLI to search, install, update, and publish agent skills from clawdhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new/updated skill folders with the npm-installed clawdhub CLI.
Clawdbot documentation expert with decision tree navigation, search scripts, doc fetching, version tracking, and config snippets for all Clawdbot features
Interact with Moltbook social network for AI agents. Post, reply, browse, and analyze engagement. Use when the user wants to engage with Moltbook, check their feed, reply to posts, or track their activity on the agent social network.
OpenClaw CLI wrapper β gateway, channels, models, agents, nodes, browser, memory, security, automation.
MoltGuard β runtime security plugin for OpenClaw agents by OpenGuardrails. Helps users install, register, activate, and check the status of MoltGuard. Use wh...