What problem does it solve? It guides developers through designing reliable database schemas, choosing indexes, optimizing slow queries, and running safe migrations without breaking production systems. ## Core Features & Use Cases - Schema Design & Normalization: Apply naming conventions, column type selection, and normalization up to 3NF with guidance on when to denormalize. - Indexing & Query Optimization: Create B-Tree, composite, partial, and GIN indexes, and fix anti-patterns like N+1 queries and SELECT * using EXPLAIN ANALYZE. - Safe Migrations & NoSQL Patterns: Follow zero-downtime migration steps and model MongoDB embedded/referenced documents plus Redis data structures. - Use Case: When building a new orders feature, use this Skill to design the tables, add the right indexes for query patterns, and write a backward-compatible migration script. ## Quick Start Ask the agent to design a normalized PostgreSQL schema with indexes and a migration plan for your application's entities.