environment-var-protector
Installation
SKILL.md
Environment Var Protector
This skill focuses on the 'secrets' hygiene of a project, ensuring no keys are leaked and all are stored correctly.
Instructions
- Identify sensitive keys (DB passwords, API tokens).
- Move secrets from code to
.envfiles or Secret Managers (AWS Secrets Manager, HashiCorp Vault). - Ensure
.envis always in.gitignore. - Implement different secrets for Development, Staging, and Production.
- Audit code history for previously accidentally committed secrets.
Examples
- "Audit this repo for any hardcoded API keys."
- "Configure GitHub Secrets for a secure CI/CD pipeline."