What problem does it solve? Teams routinely misconfigure autoscaling by defaulting to CPU-based triggers, symmetric scale-in/out behavior, and reactive-only policies, which causes flapping, cold-start latency, and silently capped capacity during traffic spikes. ## Core Features & Use Cases - Trigger Selection Guidance: Explains reactive, scheduled, and predictive trigger types and how to layer them so a baseline absorbs known demand while a reactive safety net handles the unexpected. - Signal and Topology Decisions: Maps workload types (HTTP APIs, queue consumers, latency-critical tiers, batch jobs) to the correct scaling signal, and clarifies when horizontal scaling beats vertical scaling. - Control Loop Stabilization: Covers cold-start mitigation with warm pools and provisioned concurrency, plus asymmetric scale-out-fast/scale-in-slow damping to prevent flapping, including Kubernetes HPA behavior settings. - Use Case: A platform engineer notices their queue-consumer service oscillates replicas every few minutes while backlog grows; this Skill helps them switch to backlog-per-consumer scaling with asymmetric stabilization windows. ## Quick Start Review my service's autoscaling configuration and recommend the right trigger type, scaling signal, and stabilization settings for each tier.