一键导入
locker
Deterministic secret storage for guppi skills. Use when you need to store, retrieve, or manage API tokens and secrets across guppi skills.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Deterministic secret storage for guppi skills. Use when you need to store, retrieve, or manage API tokens and secrets across guppi skills.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Rank movie showtimes by the user's format preferences and find the best contiguous seats by their saved seat preferences. Use when the user wants to find movie tickets/seats (currently Regal/regmovies.com). Booking is human-in-the-loop — usher proposes seats and a deep link; the user logs in and pays.
Analyze academic papers using the Feynman Technique. Use when you need to create a clear, structured explanation of an academic paper.
Manage experimental spike projects in a centralized, searchable location. Use when you need to create, find, or navigate to spike/experiment directories.
Cross-project task and idea tracker built on beads. Use when you need to capture ideas, tasks, reading lists, or track async work across projects.
Research historical events from local history sources (Chrome, terminal). Use when you need to find what happened, when it happened, or retrace activity.
Telegram-based messaging for Claude workflows. Use when you need to send or receive messages and files between Claude Desktop and Claude Code.
| name | locker |
| description | Deterministic secret storage for guppi skills. Use when you need to store, retrieve, or manage API tokens and secrets across guppi skills. |
| allowed-tools | Bash(guppi-locker:*) |
| version | 0.1.2 |
| author | Sam Dengler |
| license | MIT |
Provides a single, deterministic interface for storing and retrieving secrets. Secrets are encrypted locally using a master key stored in the OS keychain. Skills call guppi-locker get SERVICE KEY to retrieve secrets.
guppi-locker init
guppi-locker get SERVICE KEYRetrieve a secret. Prints the value to stdout.
token=$(guppi-locker get courier handoffs)
guppi-locker set SERVICE KEY [--value VALUE] [--force]Store a secret. Prompts interactively if --value is omitted.
guppi-locker set courier handoffs --value "token-value"
guppi-locker set courier handoffs # prompts for value
guppi-locker set courier handoffs --force # overwrite without confirmation
Options:
--value — secret value (prompts if omitted)--force — overwrite existing secret without confirmationguppi-locker delete SERVICE KEYRemove a secret.
guppi-locker list [SERVICE]List secrets (never prints values).
guppi-locker list # all secrets
guppi-locker list courier # secrets for courier only
guppi-locker initFirst-time setup. Generates a master encryption key, stores it in the OS keychain, and creates the encrypted secrets file.
guppi-locker skill install # Register with guppi-cli
guppi-locker skill show # Display SKILL.md contents