/env-validate
Validate environment configuration against the template and runtime requirements.
$ npx -y skills add rohitg00/awesome-claude-code-toolkit --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/env-validate
Context preview
What this command does when you run it.
Validate environment configuration against the template and runtime requirements.
Command definition
env-validate.mdValidate environment configuration against the template and runtime requirements.
Steps
1. Read `.env.example` to get the expected variable list. 2. Read `.env` (or the active environment) to get actual values. 3. Check for missing variables:
- Required variables without values.
- Variables in `.env.example` not present in `.env`.
4. Check for extra variables:
- Variables in `.env` not documented in `.env.example`.
5. Validate variable formats:
- URLs: Valid URL format with expected scheme.
- Ports: Numeric, in valid range (1-65535).
- Booleans: `true`/`false`, not `yes`/`no` or `1`/`0`.
- Emails: Valid email format.
6. Check for common issues:
- Trailing whitespace in values.
- Unquoted values with special characters.
- Duplicate variable definitions.
7. Verify connectivity for database URLs and API endpoints if `--live` flag is set.
Format
Environment Validation: <environment>
Missing (required):
- DATABASE_URL: No value set
Missing (optional):
- LOG_LEVEL: Using default "info"
Format issues:
- PORT: "abc" is not a valid port number
Extra (undocumented):
- LEGACY_MODE: Not in .env.example
Status: <valid/invalid>
Rules
- Fail on any missing required variable.
- Warn on undocumented variables (may be leftover from old code).
- Do not print actual secret values in validation output.
- Support multiple environment files (.env.development, .env.production).
- Exit with non-zero code if validation fails (for CI integration).
Read more
Validate environment configuration against the template and runtime requirements.
Steps
1. Read `.env.example` to get the expected variable list. 2. Read `.env` (or the active environment) to get actual values. 3. Check for missing variables:
- Required variables without values.
- Variables in `.env.example` not present in `.env`.
4. Check for extra variables:
- Variables in `.env` not documented in `.env.example`.
5. Validate variable formats:
- URLs: Valid URL format with expected scheme.
- Ports: Numeric, in valid range (1-65535).
- Booleans: `true`/`false`, not `yes`/`no` or `1`/`0`.
- Emails: Valid email format.
6. Check for common issues:
- Trailing whitespace in values.
- Unquoted values with special characters.
- Duplicate variable definitions.
7. Verify connectivity for database URLs and API endpoints if `--live` flag is set.
Format
Environment Validation: <environment> Missing (required): - DATABASE_URL: No value set Missing (optional): - LOG_LEVEL: Using default "info" Format issues: - PORT: "abc" is not a valid port number Extra (undocumented): - LEGACY_MODE: Not in .env.example Status: <valid/invalid>
Rules
- Fail on any missing required variable.
- Warn on undocumented variables (may be leftover from old code).
- Do not print actual secret values in validation output.
- Support multiple environment files (.env.development, .env.production).
- Exit with non-zero code if validation fails (for CI integration).
The most comprehensive toolkit for Claude Code -- 135 agents, 35 curated skills (+400,000 via SkillKit), 42 commands, 176+ plugins, 20 hooks, 15 rules, 7 templates, 15 MCP configs, 26 companion apps, 53 ecosystem entries, and more.
Repo: rohitg00/awesome-claude-code-toolkit
Other commands on rohitg00-claude-code-toolkit.
- /adr
Write an Architecture Decision Record documenting a significant technical decision.
Open command - /design-review
Conduct a structured design review of a module, feature, or system component.
Open command - /diagram
Generate Mermaid diagrams from codebase analysis or description.
Open command - /migrate
Plan and execute a framework or library migration incrementally.
Open command - /plan
Create a structured implementation plan for the requested feature or change.
Open command - /refactor
Perform a systematic refactoring of the specified code area.
Open command

