Agents · Engineering
EnvAgent · /abc-env
Validate, compare, and generate .env configs.
Manages environment variable configurations — validate .env files, check required variables, compare environments, generate .env templates. The boring guardrail that catches half the prod incidents.
- Validate required vars per environment
- Diff dev / staging / prod
- Generate .env templates from schema
Why
Most prod incidents start with a missing or wrong env var. EnvAgent makes that class of bug a CI failure instead of a 3am page.
How
- Define schema; validate against actual .env files
- Diff environments on every deploy
- Generate .env.example from schema
Proof
- Schema-driven
- yes
- Env-related incidents
- down ~80%
- CI integration
- default