db-check

Solid

Validate database schema integrity and check for common issues

AI & Automation 67 stars 21 forks Updated 1 weeks ago MIT

Install

View on GitHub

Quality Score: 82/100

Stars 20%
61
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
51
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

Database health check for the current project: 1. Read the ORM schema file (e.g., `prisma/schema.prisma`, `drizzle/schema.ts`, SQLAlchemy models, ActiveRecord schema, Entity Framework DbContext, GORM structs, or equivalent) and analyze all models 2. **CRITICAL**: Check all database tables have ORM models (unmodeled tables may be dropped on schema sync, e.g. Prisma db push; know whether your ORM's sync command is destructive) 3. Check for missing indexes on foreign keys and frequently queried columns 4. Scan services for N+1 query patterns (missing eager loading / includes in queries) 5. Verify `undefined` vs `null` usage in all ORM create/update operations 6. Check raw SQL queries for injection vulnerabilities (parameterized queries required) 7. Verify referential integrity (cascade rules, orphan prevention) 8. Check for date handling issues (check CLAUDE.md for system-specific date formats) 9. Review migration history for risky operations Report findings with severity: CRITICAL / HIGH / MEDIUM / LOW.

Details

Author
faizkhairi
Repository
faizkhairi/claude-code-blueprint
Created
4 months ago
Last Updated
1 weeks ago
Language
Shell
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category