Deterministic secret storage for guppi skills. Use when you need to store, retrieve, or manage API tokens and secrets across guppi skills.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add aibot88/sec_skill_store --skill locker --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Locker?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/aibot88-locker)More formats (shields.io, HTML) on the badges page.
---
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"
---
# Locker — Secret storage for guppi skills
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.
## Setup
```bash
guppi-locker init
```
## Commands
### `guppi-locker get SERVICE KEY`
Retrieve a secret. Prints the value to stdout.
```bash
token=$(guppi-locker get courier handoffs)
```
### `guppi-locker set SERVICE KEY [--value VALUE] [--force]`
Store a secret. Prompts interactively if `--value` is omitted.
```bash
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 confirmation
### `guppi-locker delete SERVICE KEY`
Remove a secret.
### `guppi-locker list [SERVICE]`
List secrets (never prints values).
```bash
guppi-locker list # all secrets
guppi-locker list courier # secrets for courier only
```
### `guppi-locker init`
First-time setup. Generates a master encryption key, stores it in the OS keychain, and creates the encrypted secrets file.
## Skill Management
```bash
guppi-locker skill install # Register with guppi-cli
guppi-locker skill show # Display SKILL.md contents
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!