Skip to content
Development
Command

/env-validate

Validate environment configuration against the template and runtime requirements.

From plugin
rohitg00-claude-code-toolkit
2.5k199 skills138 agents199 commands
Install
$ npx -y skills add rohitg00/awesome-claude-code-toolkit --agent claude-code

How 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.md

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).
Read more
Ships withrohitg00-claude-code-toolkit

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.

Get the whole plugin