Env Doctor
Diagnose .env file issues — missing variables, format errors, security risks, and misconfigurations.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/sa9saq/env-doctorEnv Doctor
Diagnose and fix .env file issues.
Instructions
-
Read files: Parse
.env(and.env.exampleif exists) -
Detect issues:
Severity Issue Example 🔴 Critical Secret committed to git .envnot in.gitignore🔴 Critical Missing required vars In .env.examplebut not.env🟡 Warning Duplicate keys DB_HOSTdefined twice🟡 Warning Empty values API_KEY=🟡 Warning Spaces around =DB_HOST = localhost(won't parse correctly)🔵 Info Extra keys In .envbut not.env.example🔵 Info Quoted booleans DEBUG="true"(should beDEBUG=true) -
Validation checks:
- URLs missing protocol (
example.com→https://example.com) - Port numbers out of range (0-65535)
- Unquoted values with spaces
- Trailing whitespace
- BOM characters at file start
- URLs missing protocol (
-
Cross-reference: If
.env.exampleexists, report missing and extra keys -
Git safety check:
# Is .env in .gitignore? grep -q "^\.env$" .gitignore 2>/dev/null && echo "✅ Protected" || echo "🔴 NOT in .gitignore!" # Was .env ever committed? git log --all --diff-filter=A -- .env 2>/dev/null -
Report format:
🩺 Env Doctor — .env Found 3 issues: 🔴 CRITICAL: .env not in .gitignore Fix: echo ".env" >> .gitignore 🟡 WARNING: Duplicate key DB_HOST (lines 4, 12) Fix: Remove duplicate on line 12 🔵 INFO: ANALYTICS_KEY in .env but not .env.example Fix: Add to .env.example (with empty value)
Security
- Never output actual secret values — mask as
sk-****...abc - Check if
.envis tracked by git — this is the #1 security risk - Flag production credentials that appear to be in a development
.env
Edge Cases
- No .env file: Check cwd; suggest
cp .env.example .env - Multi-line values: Handle values spanning lines (quoted with
\n) - Variable interpolation:
${VAR}references — check if referenced var exists
Requirements
- No dependencies — text file analysis
- No API keys needed
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-sa9saq-env-doctor": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
threat-model
Threat modeling and attack scenario design. Identify risks before they become vulnerabilities. STRIDE, attack trees, risk matrix.
Sns Auto Poster
Schedule and automate social media posts to X/Twitter with cron-based queue management.
security-review
Comprehensive security review for code, configs, and operations. OWASP, prompt injection, crypto security. Auto-triggers on security-related changes.
Process Monitor
Monitor system processes, identify top CPU/memory consumers, and alert on resource thresholds.
Readme Generator
Auto-generate comprehensive README.md files by analyzing project structure and configuration.