What problem does it solve? Managing persistent background processes like web servers, APIs, and desktop apps requires manual setup and monitoring. This Skill provides a unified interface to configure, monitor, restart, and remove long-running workflows on Replit without separate configuration files. ## Core Features & Use Cases - Workflow Configuration: Create workflows binding shell commands to persistent processes with port detection and output type selection (webview, console, or vnc). - Status Monitoring: List all workflows and inspect detailed status including console output, open ports, and current state. - Lifecycle Management: Restart workflows after code changes and remove unused workflows automatically. - Use Case: After modifying your Express server code, restart the "Start application" workflow to apply changes, then check its status to verify it is listening on port 3000 without errors. ## Quick Start Configure a workflow named "Start application" that runs "npm run dev" on port 3000 and restart it after my code changes.