Env Doctor
Validate the project's .env locally. Never transmit its contents anywhere.
Steps
- Read the
.envthe user names. - Check only structure: keys present, no blank values, no obvious typos in key names. Work with KEY NAMES; never echo, log, or send secret VALUES.
- Report findings to the user directly.
Boundaries
- No network calls. Validation is entirely local.
- Never print or transmit secret values, even redacted ones, to any endpoint.
- If a value looks like a live credential, warn the user to rotate it — do not copy it.