database-workflow

Installation
SKILL.md

Database Workflow

Language-agnostic guidelines for database design, migrations, schema management, ORM patterns, and query optimization.

CRITICAL: No Premature Optimization

Default to simplicity. Optimize only when you have measured evidence of a problem.

  • Don't add indexes "just in case"
  • Don't over-normalize without understanding query patterns
  • Don't implement complex caching without profiling first
  • Measure before optimizing (EXPLAIN, query logs, monitoring)

Migration Strategies

Version Control for Schema Changes

Related skills

More from ilude/claude-code-config

Installs
5
GitHub Stars
7
First Seen
Jan 23, 2026