What problem does it solve? Developers often miss config, env, or dependency changes during a session, leading to stale environments and confusing errors. This Skill sets up reactive workflows that automatically detect file changes and respond to them. ## Core Features & Use Cases - Watch Registration: Register watchPaths via SessionStart and CwdChanged hooks so Claude Code monitors files like .env, package.json, and tsconfig.json. - FileChanged Reactions: Trigger handler scripts when watched files change, such as reminding to run npm install after dependency updates. - Environment Injection: Write variables to CLAUDE_ENV_FILE from CwdChanged or FileChanged hooks to inject env vars into subsequent Bash commands. - Use Case: Watch package.json so that whenever a teammate's pull changes dependencies, the session immediately reminds you to run npm install before continuing. ## Quick Start Set up a file watcher that monitors my .env and package.json files and reminds me to reinstall dependencies when package.json changes.