What problem does it solve? Working with MariaDB involves subtle pitfalls like collation mismatches that silently disable indexes, implicit type conversions causing full table scans, and utf8/utf8mb4 confusion that truncates data. This Skill routes your database task to the right in-depth reference document and validates recommendations against the actual database state when MariaDB MCP tools are available. ## Core Features & Use Cases - Task-Based Routing: Directs schema design, indexing, query optimization, performance tuning, security, backup/replication, and migration questions to dedicated reference documents. - Hidden Gotcha Detection: Flags critical traps like collation mismatches on JOINs, implicit type conversions bypassing indexes, silent data truncation without strict mode, and AUTO_INCREMENT gaps. - Hibernate/QueryDSL Integration: Covers dialect selection, entity mapping, N+1 prevention, batch processing, HikariCP pooling, and QueryDSL patterns for Java applications. - Use Case: A developer notices a slow JOIN query. The Skill checks collation compatibility across joined columns, runs EXPLAIN ANALYZE via MariaDB MCP, and recommends a covering index following the equality-then-range column ordering rules. ## Quick Start Ask the assistant to review your MariaDB schema or diagnose a slow query, mentioning details like the table definitions, the query text, and your MariaDB version.