What problem does it solve? Serving Litestar applications in production requires choosing and tuning an ASGI server, and the default uvicorn setup lacks native HTTP/2, higher throughput, and lower memory usage. This Skill guides the integration of the Granian Rust-based ASGI server into Litestar apps through the first-party GranianPlugin, covering worker tuning, threading modes, backpressure, SSL, and structured access logging. ## Core Features & Use Cases - Zero-config plugin integration: Add GranianPlugin to the Litestar plugins list so the standard litestar run CLI launches Granian instead of uvicorn with no other code changes. - Production tuning guidance: Configure workers, threads, threading-mode runtime, HTTP auto-negotiation, backpressure bounds, and JSON access logs through litestar run flags. - SSL and deployment patterns: Terminate TLS directly with Granian ssl-certificate and ssl-keyfile flags or document a reverse proxy setup. - Use Case: Deploying an 8-core production Litestar service with HTTP/2, bounded backpressure, and structured access logs using a single litestar run command. ## Quick Start Add GranianPlugin to my Litestar app's plugins list and show me the production litestar run command tuned for an 8-core host with SSL enabled.