Environment Prompts

Prompts for validating environment configuration, checking for typos, and ensuring completeness.

Prompts

#PromptPurpose
01Validate Env CompletenessCheck .env.example has all env vars
02Check Env TyposGuard against env file typos and tracked secrets

FAQ

What env check commands are available?

CommandPurpose
bun run env:check-exampleVerify .env.example contains all process.env.* references found in code
bun run env:check-localValidate .env.local has all required vars from .env.example
bun run env:check-typosDetect 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.