From env-sync
Audits and synchronizes environment variables across development, staging, and production environments. Detects missing, unused, and misnamed variables, then updates .env.example and syncs placeholders.
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.
npx claudepluginhub samuelj90/awesome-claude-code-toolkit --plugin env-sync/sync-envAudits and synchronizes environment variables across development, staging, and production environments. Detects missing, unused, and misnamed variables, then updates .env.example and syncs placeholders.
/env-setupAudits and sets up environment variables for a service across local, Railway, and AWS environments. Generates .env.example from discovered vars and flags missing ones per environment.
/envScaffolds .env files by scanning codebase for process.env usage, validates required variables, and manages secrets. Also supports validation and template generation 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 environment files against schemas — checks required variables, types, formats, and security, and also generates .env.example templates.