database-schema-designer

Installation
Summary

Production-ready SQL and NoSQL schemas with normalization, indexing, and migration strategies built in.

  • Generates complete schemas from natural language descriptions, covering entities, relationships, constraints, and indexes tailored to SQL or NoSQL databases
  • Provides normalization guidance (1NF through 3NF), foreign key strategies with ON DELETE rules, and composite index planning based on access patterns
  • Includes anti-patterns reference (FLOAT for money, missing FK indexes, non-reversible migrations) and verification checklist for schema quality
  • Supports zero-downtime migration patterns, denormalization for read-heavy workloads, and performance optimization via EXPLAIN analysis and query pattern matching
SKILL.md

Database Schema Designer

Design production-ready database schemas with best practices built-in.


Quick Start

Just describe your data model:

design a schema for an e-commerce platform with users, products, orders

You'll get a complete SQL schema like:

CREATE TABLE users (
  id BIGINT AUTO_INCREMENT PRIMARY KEY,
Related skills

More from softaworks/agent-toolkit

Installs
3.7K
GitHub Stars
1.8K
First Seen
Jan 20, 2026