What problem does it solve? Building production backend services requires coordinating API design, database connections, authentication, caching, and event-driven messaging, and this Skill provides proven implementation patterns for each of these concerns. ## Core Features & Use Cases - API Design: REST endpoints with FastAPI, GraphQL with Strawberry, and OpenAPI 3.1 specifications with JWT authentication. - Database Integration: PostgreSQL via SQLAlchemy with connection pooling, MongoDB via Motor, and Redis caching with automatic invalidation. - Microservices Patterns: Event-driven architecture with RabbitMQ/aio-pika, service discovery with Consul, and circuit breakers for external calls. - Use Case: When building a user management service, apply the repository pattern with Redis caching, JWT authentication middleware, and health check endpoints to get a working async FastAPI service. ## Quick Start Ask the assistant to create a FastAPI endpoint with JWT authentication and PostgreSQL connection pooling for a user management service.