What problem does it solve? Managing multiple long-running development processes (servers, watchers, codegen, docker) manually is error-prone: processes get orphaned, logs are scattered, and it's unclear what is actually running. This Skill provides a consistent way to supervise all dev processes through dev-pm (dev-process-manager) with correct, non-hanging commands. ## Core Features & Use Cases - Process lifecycle control: Start, stop, and restart individual scripts or groups defined in dev-pm.config.ts, with safe no-op behavior for already-running services. - Status and log inspection: Check which services are Running, Waiting, Backoff, or Stopped, and tail bounded log output to diagnose crashes and startup failures. - Use Case: A developer reports the API is not responding. You run dev-pm status, see the api script in Backoff, pull the last 300 log lines to find the crash cause, fix it, and restart the script. ## Quick Start Ask the AI to check which dev-pm services are currently running and show the recent logs for the one that is failing.