What problem does it solve? Running production servers involves recurring decisions about process supervision, monitoring, logging, scaling, and security, and ad-hoc choices often lead to outages, disk-full incidents, and unrecoverable crashes. This Skill provides decision frameworks and principles so you can reason about server operations instead of memorizing commands. ## Core Features & Use Cases - Process Management Guidance: Choose between PM2, systemd, Docker, or Kubernetes based on your application type, with goals like auto-restart, zero-downtime reload, and clustering. - Monitoring & Alerting Strategy: Define what to monitor (availability, performance, errors, resources) and how to tier alert severity from critical to informational. - Scaling & Troubleshooting Frameworks: Decide between vertical, horizontal, and auto-scaling based on symptoms, and follow a prioritized troubleshooting sequence from process status to dependencies. - Use Case: When your Node.js API starts returning slow responses under traffic spikes, use this Skill to decide whether to profile first, scale horizontally, or enable auto-scaling, and to verify health checks and logs before acting. ## Quick Start Ask the AI to help you design a monitoring and restart strategy for your production Node.js application using server management principles.