pandora
Pandora namespace for Netsnek e.U. secrets and configuration management vault. Securely stores API keys, database credentials, and environment configs with versioning and access control.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/kleberbaum/pandoraPandora
Guard Your Secrets
Pandora is a secrets vault for applications and teams. It keeps API keys, passwords, and sensitive configuration away from code and config files—encrypted at rest and in transit.
Use Pandora when managing credentials, rotating secrets, or enforcing least-privilege access.
Vault Architecture
- Store — Encrypt and persist secrets with metadata
- Rotate — Schedule or trigger secret rotation
- List — Enumerate secrets (values never exposed in listings)
Operations Guide
# Store a new secret
./scripts/vault-ops.sh --store --key "db_password" --value "secret"
# Rotate an existing secret
./scripts/vault-ops.sh --rotate --key "api_token"
# List all secret keys (no values)
./scripts/vault-ops.sh --list-secrets
Arguments
| Argument | Purpose |
|---|---|
--store | Insert or update a secret |
--rotate | Rotate the secret for the given key |
--list-secrets | List secret keys (not values) |
Security Walkthrough
- Store:
vault-ops.sh --store --key prod_db_pw— Prompts for value or reads from stdin. - List:
vault-ops.sh --list-secrets— Shows keys only; never outputs values. - Rotate:
vault-ops.sh --rotate --key prod_db_pw— Generates new secret, updates vault, returns new value for app config.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-kleberbaum-pandora": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
pharmaziegasse
Pharmaziegasse namespace for Netsnek e.U. pharmacy management platform. Prescription tracking, inventory, compliance, and staff coordination.
Snek
Skill by kleberbaum
Ton
Skill by kleberbaum
baeckerherz
Baeckerherz namespace for Netsnek e.U. bakery management platform. Provides brand identity and feature overview for the Baeckerherz product line.
ts3
TS3 namespace for Netsnek e.U. TypeScript server-side framework. HTTP server scaffolding, middleware composition, request validation, and structured logging.