From send-secret
This skill should be used when the user asks to "share a secret", "send secret", "share credentials", "share password", "share securely", "encrypted sharing", "one-time secret link", "self-destructing message", "secure file transfer", or mentions "send-secret" without specifying file/clipboard/receive. Routes to the appropriate specialized skill based on context.
How this skill is triggered — by the user, by Claude, or both
Slash command
/send-secret:send-secretThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
send-secret enables zero-trust, one-time encrypted sharing. Secrets are encrypted locally with AES-256-GCM and served via temporary Cloudflare tunnels. The decryption key stays in the URL fragment (never sent to servers).
send-secret enables zero-trust, one-time encrypted sharing. Secrets are encrypted locally with AES-256-GCM and served via temporary Cloudflare tunnels. The decryption key stays in the URL fragment (never sent to servers).
| Scenario | Skill to Use |
|---|---|
| User has a file path | send-secret-file |
| User has content in clipboard | send-secret-clipboard (macOS) |
| User has a trycloudflare URL | receive-secret |
| User just says "share a secret" | Ask what they want to share |
→ Use send-secret-file skill
Example triggers:
→ Use send-secret-clipboard skill (macOS only)
Example triggers:
→ Use receive-secret skill
URL pattern: https://*.trycloudflare.com/s/*#key=*
Example triggers:
→ Ask for clarification
Example response: "I can help you share secrets securely. What would you like to share?
Critical for all send-secret operations:
-o.gitignorepbpaste |# Send a file
npx send-secret <filepath>
# Send clipboard (macOS)
pbpaste | npx send-secret
# Receive to file
npx send-secret -r "<url>" -o ./filename.txt
# Options
-n <count> # Allow multiple views
-t <seconds> # Auto-expire timeout
-o <file> # Output path for receiving
npx send-secret ./api-keys.envnpx send-secret -r "<url>" -o ./credentials.txt.gitignorepbpaste | npx send-secret -t 120npx claudepluginhub b-open-io/claude-plugins --plugin send-secretSecures Claude Code sessions with nopeek CLI: loads .env secrets without exposing values, stores keys, redacts cloud CLI outputs to prevent API key leaks. Useful for secret and credential safety.
Provides secure environment variable management to prevent secrets exposure in Claude sessions, terminals, logs, or git commits.
Guides managing every phase of a secret's lifecycle: generation, distribution, rotation, and revocation. Useful for designing credential retrieval, rotation policies, or responding to exposures.