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.
From send-secretnpx claudepluginhub b-open-io/claude-plugins --plugin send-secretThis skill is limited to using the following tools:
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Implements structured self-debugging workflow for AI agent failures: capture errors, diagnose patterns like loops or context overflow, apply contained recoveries, and generate introspection reports.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
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 120