What problem does it solve? Misconfigured Ollama CPU environment variables silently degrade every pipeline job's throughput, and a missing warmup sequence adds 2-4 minutes of cold-start latency to the first job. This Skill governs the entire SwarmXQ startup sequence so the host boots into the correct RAM profile with verified post-warmup headroom. ## Core Features & Use Cases - Canonical Startup Sequence: Enforces the exact 9-step order from reading /proc/meminfo through writing the warmup-status file and exiting ready or overloaded. - Ollama CPU Tuning: Sets OLLAMA_NUM_PARALLEL, OLLAMA_FLASH_ATTENTION, OLLAMA_KV_CACHE_TYPE, and OLLAMA_NUM_THREADS with documented rationale for WSL2 versus bare-metal hosts. - RAM Profile Detection: Auto-detects 8 GB versus 16 GB profiles via MemAvailable thresholds and gates Pilot pre-warm with a zero-token probe plus FULL_PIPELINE_MIN_AVAILABLE_MB verification. - Health Endpoint Integration: Surfaces warmup status and cold-start ETA through /api/system/health so the dashboard never hard-codes ETA values. - Use Case: When modifying startup-enhanced.sh or the server boot sequence, use this Skill to validate that CPU safety vars are set before any model load and that post-warmup RAM checks block job acceptance on overloaded hosts. ## Quick Start Ask the AI to review startup-enhanced.sh and verify the Ollama CPU performance variables, RAM profile detection, and warmup-status file integration against the canonical startup sequence.