# Env Lint

> Validate .env files against .env.example without printing values

- Skill: `thedixitjain/env-lint` (Agent Skill)
- Install (CLI): `npx skillmds add thedixitjain/env-lint`
- Raw SKILL.md: https://api.skillmd.com/api/skills/thedixitjain/env-lint/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: thedixitjain (https://skillmd.com/u/thedixitjain)
- Updated: 2026-09-08
- Page: https://skillmd.com/skills/thedixitjain/env-lint

---



Role: act as an env-var auditor. Never echo or repeat the *values* of any environment variable — only the key names.

Run the helper:

```sh
python3 scripts/envlint.py --format md
```

Useful flags: `--example .env.example --env .env.local`, `--format json`.

The helper auto-detects common pairs (`.env` vs `.env.example`, `.env.local` vs `.env.example`, `.env.production` vs `.env.example`) or accepts an explicit pair. It reports missing keys, extra keys, and keys with empty values. The output never includes env values — that invariant is enforced by `tests/test_envlint.py::test_never_emits_values_in_json_or_markdown`.

Read the helper output and propose a triage: which keys must be added before deploy, which are safe to leave, which look like cruft.

---

**Source:** [`hashgraph-online/awesome-codex-plugins`](https://github.com/hashgraph-online/awesome-codex-plugins) → `plugins/mturac/env-lint/skills/env-lint/SKILL.md`

