schema-builder
Database schema designer. Design table structures, generate SQL DDL, migration scripts, seed data, ER diagrams, optimization reports, NoSQL schemas, and schema diffs. Commands: design, sql, migrate, seed, erd, optimize, nosql, compare. Use for database design, table structure, SQL generation.
Works with
---
name: schema-builder
description: Database schema designer. Design table structures, generate SQL DDL, migration scripts, seed data, ER diagrams, optimization reports, NoSQL schemas, and schema diffs. Commands: design, sql, migrate, seed, erd, optimize, nosql, compare. Use for database design, table structure, SQL generation.
license: MIT
---
# ποΈ Schema Builder
From requirement to complete database structure in one step.
## Usage
```bash
bash scripts/schema.sh <command> <table_name> [options]
```
## Command Matrix
```
ββββββββββββ¬βββββββββββββββββββββββββββββββ¬ββββββββββββββββ
β Command β Description β Output β
ββββββββββββΌβββββββββββββββββββββββββββββββΌββββββββββββββββ€
β design β Design schema from name β Field layout β
β sql β Generate CREATE TABLE DDL β SQL statement β
β migrate β Generate migration script β Migration β
β seed β Generate test/seed data β INSERT stmts β
β erd β ASCII ER diagram β Relationship β
β optimize β Index & perf recommendations β Report β
β nosql β MongoDB schema β JSON schema β
β compare β Diff two schemas β Diff report β
ββββββββββββ΄βββββββββββββββββββββββββββββββ΄ββββββββββββββββ
```
## Typical Flow
```
design β sql β migrate β seed
β
optimize
β
erd
```
1. `design users` β plan fields and relations
2. `sql users` β generate executable SQL
3. `migrate users` β versioned migration
4. `seed users` β populate test data
5. `optimize users` β check index suggestions
## Supported Databases
- Relational: MySQL, PostgreSQL, SQLite
- NoSQL: MongoDB, Redis (via `nosql` command)More Database skills
prisma-mongodb-upgrade
prisma/skills
Decision and migration guide for Prisma ORM MongoDB projects on v6, which have no upgrade path to v7. Use when a MongoDB project asks about upgrading Prisma, when "upgrade to prisma 7" comes up in a project with provider = "mongodb", or when evaluating a move to Prisma Next. Triggers on "upgrade prisma mongodb", "prisma 7 mongodb", "mongodb prisma migration", "prisma next mongodb".
azure-upgrade
microsoft/azure-skills
Assess and upgrade Azure workloads between plans, tiers, or SKUs, or modernize Azure SDK dependencies in source code. WHEN: upgrade Consumption to Flex Consumption, upgrade Azure Functions plan, change hosting plan, function app SKU, migrate App Service to Container Apps, modernize legacy Azure Java SDKs (com.microsoft.azure to com.azure), migrate Azure Cache for Redis (ACR/ACRE) to Azure Managed Redis (AMR).
azure-cost-optimization
microsoft/azure-skills
Identify Azure cost savings from usage and spending data. USE FOR: optimize Azure costs, reduce Azure spending/expenses, analyze Azure costs, find cost savings, generate cost optimization report, identify orphaned resources to delete, rightsize VMs, reduce waste, optimize Redis costs, optimize storage costs, AKS cost analysis add-on, namespace cost, cost spike, anomaly, budget alert, AKS cost visibility. DO NOT USE FOR: deploying resources (use azure-deploy), general Azure diagnostics (use azure-diagnostics), security issues (use azure-security)

