Plan and review MySQL/InnoDB schema, indexing, query tuning, transactions, and operations. Use when creating or modifying MySQL tables, indexes, or queries; diagnosing slow/locking behavior; planning migrations; or troubleshooting replication and connection issues. Load when using a MySQL database.
Overall
score
93%
Does it follow best practices?
Evaluation — 94%
↑ 1.04xAgent success when using this skill
Validation for skill structure
Use this skill to make safe, measurable MySQL/InnoDB changes.
EXPLAIN, EXPLAIN ANALYZE, lock/connection metrics, and production-safe rollout steps).BIGINT UNSIGNED AUTO_INCREMENT) for write-heavy OLTP tables.utf8mb4 / utf8mb4_0900_ai_ci. Prefer NOT NULL, DATETIME over TIMESTAMP.ENUM. Normalize to 3NF; denormalize only for measured hot paths.References:
performance_schema — drop indexes with count_read = 0.References:
MAXVALUE catch-all.References:
EXPLAIN — red flags: type: ALL, Using filesort, Using temporary.OFFSET. Avoid functions on indexed columns in WHERE.UNION ALL over UNION when dedup unnecessary.References:
REPEATABLE READ (gap locks). Use READ COMMITTED for high contention.SELECT ... FOR UPDATE sparingly.References:
ALGORITHM=INPLACE) when possible; test on replicas first.max_connections exhaustion under load.References:
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.