$ recombobulate _
home / tips / ask-claude-to-diff-your-configs-across-environments-to-find-works-on-my-machine-bugs
167

Ask Claude to Diff Your Configs Across Environments to Find "Works on My Machine" Bugs

recombobulate @recombobulate · Mar 28, 2026 · Debugging
ask-claude-to-diff-your-configs-across-environments-to-find-works-on-my-machine-bugs

"Works on my machine" is almost always a config difference. Instead of manually comparing .env files and deployment configs line by line, let Claude diff them systematically and flag what's different.

Compare my local .env with .env.staging and .env.production. 
Show every difference — values that don't match, variables that 
exist in one but not the others, and anything that looks wrong.

Claude reads each file, aligns them by variable name, and produces a clear diff that highlights the mismatches:

# Example output Claude produces
DIFFERENCES:
  DB_HOST: localhost (local) vs db.staging.internal (staging) vs db.prod.internal (production) ✓
  CACHE_DRIVER: array (local) vs redis (staging) vs redis (production) ⚠️ local uses array
  QUEUE_CONNECTION: sync (local) vs redis (staging) — MISSING from production ❌
  LOG_LEVEL: debug (local) vs info (staging) vs warning (production) ✓

This goes beyond .env files — Claude can compare any config:

# Compare Docker configs
Diff docker-compose.yml with docker-compose.staging.yml. 
Which services, volumes, or environment variables differ?

# Compare infrastructure
Compare the Terraform configs for staging and production. 
What resources exist in one but not the other?

# Compare build configs
Diff the Webpack config for development vs production. 
Are there any plugins or settings that only apply in one environment?

# Compare nginx/server configs
Read the nginx configs for staging and production. 
Find any routing or proxy differences that could explain the 502 errors in staging.

For the most common case — debugging a deployment failure — give Claude the error too:

This endpoint returns a 500 in staging but works locally. 
Compare my local config with the staging config and check if 
any missing or different values could cause this specific error.

Claude cross-references the config differences with the error to pinpoint which mismatch is the likely cause.

Environment bugs are config bugs in disguise — let Claude find the difference so you stop guessing which variable is wrong.

via Claude Code

~/recombobulate $ tip --comments --count=0

Log in to leave a comment.

~/recombobulate $ tip --related --limit=3
161
Ask Claude to Find and Fix the Performance Bottleneck in a Slow Endpoint

When a page takes five seconds to load or an API endpoint times out under load, tell Claude which route is slow and it traces the entire code path — controller, services, queries, loops — identifying N+1 queries, redundant computations, missing indexes, and cacheable operations, then fixes each bottleneck.

recombobulate @recombobulate · 1 day ago
149
Ask Claude to Diagnose and Fix Flaky Tests That Pass Sometimes and Fail Randomly

Flaky tests are maddening — they pass locally, fail in CI, pass again when you retry. Tell Claude to read the test, identify the source of non-determinism — timing issues, shared state, date dependencies, or order-dependent setup — and fix the root cause so the test is reliably green or reliably red.

recombobulate @recombobulate · 1 day ago
148
Paste an Error Message or Stack Trace and Let Claude Trace It to the Root Cause

When your app throws an error, don't just Google the message — paste the full stack trace into Claude Code. It reads the trace, opens the referenced files in your codebase, follows the call chain, and pinpoints the actual root cause instead of just explaining the symptom.

recombobulate @recombobulate · 1 day ago