Secrets management
Curated, auditable, benchmark-ready Agent Skills library for Claude Code, Codex, OpenCode, Cursor, and more.
npx -y skills add shinzoxD/knackbox --skill secrets-managementAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 27 days oldThe repository was created 27 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Handle secrets safely in apps and infrastructure without committing credentials. Use whenever the user asks about API keys, secret managers, .env handling, rotation, CI secrets, or how to inject credentials at runtime.
The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.8 KB, as published. Nobody here has run it
Secrets Management
Secrets are credentials that grant power. Minimize sprawl, never commit them, prefer short-lived credentials, and plan rotation.
Principles
- No secrets in git, logs, client bundles, or screenshots.
- Inject at runtime from a secret manager or sealed CI store.
- Least privilege and per-environment secrets.
- Rotation and revocation paths tested.
- Prefer OIDC/workload identity over long-lived static keys when possible.
Workflow
- Inventory secret types (DB, API, TLS, signing).
- Choose storage (cloud SM, k8s secrets + encryption, CI OIDC).
- Access patterns for apps, humans, and automation.
- Local dev: .env gitignored + sample .env.example without values.
- Leak response: rotate, audit logs, invalidate.
Output format
## Secrets plan
### Inventory
…
### Storage & injection
…
### CI/CD
…
### Rotation
…
### Anti-patterns to remove
…
Rules
- Never ask the user to paste live production secrets into chat if avoidable; use placeholders.
- Distinguish public client IDs from private client secrets.
- Encrypt-at-rest is not enough if authz is wide open.
- Document break-glass carefully.
- Redact in examples always.
Edge cases
- Mobile apps: no long-lived master secrets in binaries.
- Webhooks: signing secrets rotation dual-key window.
- Multi-tenant: per-tenant secret isolation.