Environment Prompts
Prompts for validating environment configuration, checking for typos, and ensuring completeness.
Prompts
| # | Prompt | Purpose |
|---|---|---|
| 01 | Validate Env Completeness | Check .env.example has all env vars |
| 02 | Check Env Typos | Guard against env file typos and tracked secrets |
FAQ
What env check commands are available?
| Command | Purpose |
|---|---|
bun run env:check-example | Verify .env.example contains all process.env.* references found in code |
bun run env:check-local | Validate .env.local has all required vars from .env.example |
bun run env:check-typos | Detect common variable name typos and accidentally tracked env files |
All three run in CI via bun run ci. They are $0 cost and take ~15 seconds each.