What problem does it solve? Running a Reflex app in production mode disables hot reload, so applying code changes requires manually finding and restarting the correct server process without accidentally killing browser connections. This Skill provides exact commands to compile, run, reload, and debug a Reflex app safely. ## Core Features & Use Cases - Compile Validation: Run reflex compile --dry to catch syntax, import, and component errors before starting the server. - Production Server Management: Start the app with reflex run --env prod --single-port while capturing all output to reflex.log. - Safe Process Reload: Locate the listening process by port using lsof -sTCP:LISTEN, send SIGINT/SIGTERM, and restart without killing browser sessions. - Use Case: After editing Reflex app code, ask the assistant to reload the running app; it reads the port from reflex.log, terminates only the server process, truncates the log, and restarts in production mode. ## Quick Start Reload my running Reflex app so it picks up the latest code changes.