sops-age-secrets
Installation
SKILL.md
SOPS + age Secrets Management
Encrypt secrets in git with SOPS using age keys. Values are encrypted with AES256-GCM; keys are simple X25519 keypairs.
Quick Reference
| Task | Command |
|---|---|
| Generate age key | age-keygen -o keys.txt |
| Extract public key | age-keygen -y keys.txt |
| Encrypt file | sops encrypt file.yaml > file.enc.yaml |
| Decrypt file | sops decrypt file.enc.yaml |
| Edit encrypted file | sops edit file.enc.yaml |
| Update recipients | sops updatekeys -y file.enc.yaml |
| Rotate data key | sops rotate -i file.enc.yaml |
Initial Setup
1. Generate Keys
Related skills