From env-sync
Audits and synchronizes environment variables across development, staging, and production, detecting missing, unused, or mismatched variables, and generates an updated .env.example.
How this command is triggered — by the user, by Claude, or both
Slash command
/env-sync:sync-envThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /sync-env - Sync Environment Variables Synchronize environment variables across development, staging, and production. ## Steps 1. Read the current .env file and .env.example for the project 2. Identify all environment variables used in the codebase (process.env, os.environ) 3. Compare variables across environments: development, staging, production 4. Identify missing variables in each environment 5. Identify variables present in code but missing from all .env files 6. Detect variables in .env files that are no longer used in code 7. Verify variable naming conventions are consistent (UP...
Synchronize environment variables across development, staging, and production.
2plugins reuse this command
First indexed Mar 30, 2026
npx claudepluginhub rohitg00/awesome-claude-code-toolkit --plugin env-sync/env-setupSets up and audits environment variables for a service across local, Railway, and AWS. Generates .env.example, validates required vars, flags missing ones. Supports local, railway, aws, audit modes.
/env-auditAudits environment variable usage across the codebase, detecting secrets at risk, missing or unused variables, inconsistencies across environments, and naming hygiene issues.
/env-validatorValidates .env files against schemas with type checking, required vars verification, format validation, security scans. Generates .env.example, checks missing vars, supports compare.