secrets
Installation
SKILL.md
Secrets Management
Core Rules
- NEVER hardcode secrets, API keys, OAuth2 client IDs/secrets, tokens, passwords, or credentials in source code
- ALWAYS store secrets in
.envfiles (or platform-native equivalents likelocal.properties,.xcconfig) - ALWAYS load secrets from environment variables at runtime
- ALWAYS add
.envto.gitignorebefore first commit - ALWAYS provide a
.env.exampledocumenting required variables (with empty values)