Help us improve
Share bugs, ideas, or general feedback.
From database-engineering
B-tree indexes, composite indexes, covering indexes, UNIQUE indexes, and index trade-offs.
npx claudepluginhub sethdford/claude-skills --plugin engineer-database-engineeringHow this skill is triggered — by the user, by Claude, or both
Slash command
/database-engineering:index-designThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Strategic indexing for query performance without write overhead.
Analyzes PostgreSQL and MySQL index usage to detect missing indexes causing sequential scans, unused indexes, and recommend optimal configurations for query performance.
Provides SQL Server index design and optimization strategies for clustered, nonclustered, columnstore, filtered, and covering indexes plus maintenance and fragmentation.
Guides creation of multi-column SQL indexes using leftmost prefix and ESR (Equality, Sort, Range) rules for faster queries on column combinations.
Share bugs, ideas, or general feedback.
Strategic indexing for query performance without write overhead.
You are deciding which indexes to create. Index every query path, but don't overdo it.