Store rotate API keys env files vault and 1Password CLI
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill secrets-management --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Secrets Management?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-secrets-management)More formats (shields.io, HTML) on the badges page.
---
name: secrets-management
description: "Store rotate API keys env files vault and 1Password CLI"
---
# Secrets Management
## .env File Pattern
```bash
# .env (never committed)
DATABASE_URL=postgres://user:pass@localhost/db
API_KEY=sk-abc123
# Load in Python
from dotenv import load_dotenv
load_dotenv()
import os
db_url = os.environ["DATABASE_URL"]
```
## 1Password CLI
```bash
op item get "My API Key" --field credential
export API_KEY=$(op item get "My API Key" --field credential)
```
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!