Stats
Actions
Tags
How this command is triggered — by the user, by Claude, or both
Slash command
/claude-initial-setup:db-reviewThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Database Review Audit the database schema, query patterns, and migrations for correctness and performance. ## Steps 1. Review the schema: - Check that tables and columns use consistent naming conventions (snake_case preferred). - Verify all tables have a primary key. - Check that foreign keys have proper constraints (ON DELETE, ON UPDATE). - Verify NOT NULL constraints are applied to required fields. - Check that default values are set where appropriate. - Ensure sensitive data columns (passwords, tokens) are not stored in plain text. 2. Check normalization: - Ide...
Audit the database schema, query patterns, and migrations for correctness and performance.
Review the schema:
Check normalization:
Review indexes:
Identify N+1 query patterns:
Review query patterns:
Review migrations:
A database review report listing schema issues, missing indexes, query anti-patterns, and migration concerns with recommended fixes.
npx claudepluginhub versoxbt/claude-initial-setup --plugin claude-initial-setup