env-sync

A command guide for managing configuration values and secrets across development, test, staging, and production environments. Environment variables are settings supplied outside the application, while secrets are sensitive values such as passwords and keys.

In plain words
What is it for?
Use it to sync or compare .env files, validate configuration, create .env.example templates, rotate secrets, document variables, and set up Docker or other development environments.
Why use it?
It helps keep environments consistent and reveals missing or invalid settings without manually comparing files.

Command

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/rafaelkamimura/claude-tools/env-sync
Clone the repo
git clone --depth 1 https://github.com/rafaelkamimura/claude-tools
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,596 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.02596
Opus 5 $0.00000 $0.01298
Sonnet 5 $0.00000 $0.00519
Haiku 4.5 $0.00000 $0.00260

Measured 2d ago against content hash 1b536fef915c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

env-sync scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

commands/env-sync.md · 502 lines

How it starts

The opening of the file, as written. The whole thing — 502 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Environment Manager

Synchronizes environment variables across environments, validates configurations, manages secrets, and sets up development environments.

Purpose

  • Sync .env files across environments
  • Validate environment variables
  • Generate environment documentation
  • Secret rotation management
  • Docker/container environment setup

Workflow

Phase 1: Environment Selection

  1. STOP → "Select environment operation:"

    1. Sync environments - Copy variables between environments
    2. Validate config - Check for missing/invalid variables
    3. Generate template - Create .env.example
    4. Rotate secrets - Update sensitive values
    5. Setup new environment - Initialize from template
    6. Compare environments - Diff between environments
    
    Choose operation (1-6):
    
  2. Environment Options

    • STOP → "Include secret values? (y/n):"
    • STOP → "Validate against schema? (y/n):"
    • STOP → "Backup current config? (y/n):"

Phase 2: Environment Discovery

  1. Find Environment Files

    # Locate all env files
    find . -name ".env*" -type f | grep -v node_modules
    
    # Common patterns
    .env
    .env.local
    .env.development
    .env.staging
    .env.production
    .env.test
    
  2. Parse Environment Variables

    const dotenv = require('dotenv');
    const fs = require('fs');
    
    function parseEnvFile(filepath) {
      const content = fs.readFileSync(filepath, 'utf8');
      return dotenv.parse(content);
    }
    

Phase 3: Environment Validation

Schema Definition
// env.schema.json
{
  "required": [
    "NODE_ENV",
    "PORT",
    "DATABASE_URL",
    "JWT_SECRET"
  ],
  "properties": {
    "NODE_ENV": {
      "type": "string",
      "enum": ["development", "staging", "production"]
    },
    "PORT": {
      "type": "number",
      "minimum": 1000,
      "maximum": 65535
    },
    "DATABASE_URL": {
      "type": "string",
      "pattern": "^(postgres|mysql|mongodb)://.*"
    },
    "JWT_SECRET": {
      "type": "string",
      "minLength": 32
    }
  }
}

Read the full file on GitHub · 502 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 502 lines · 0 tokens per session scan A 1b536fef915c

Subscribe to this mod's changes

env-sync is a command published in the GitHub repository rafaelkamimura/claude-tools (10 stars, last pushed 7mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,596 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.