> designing-database-schemas
This skill enables Claude to design and visualize database schemas. It leverages normalization guidance (1NF through BCNF), relationship mapping, and ERD generation to create efficient and well-structured databases. Use this skill when the user requests to "design a database schema", "create a database model", "generate an ERD", "normalize a database", or needs help with "database design best practices". The skill is triggered by terms like "database schema", "ERD diagram", "database normalizati
curl "https://skillshub.wtf/jeremylongshore/claude-code-plugins-plus-skills/database-schema-designer?format=md"Overview
This skill assists in designing robust and normalized database schemas. It provides guidance on normalization principles, helps map relationships between entities, generates ERD diagrams for visualization, and ultimately produces SQL CREATE statements.
How It Works
- Schema Definition: Claude analyzes the user's request to understand the application's data requirements.
- Normalization & Relationship Mapping: Claude applies normalization principles (1NF to BCNF) and defines relationships between entities (one-to-one, one-to-many, many-to-many).
- ERD Generation: Claude generates a Mermaid diagram representing the Entity-Relationship Diagram.
- SQL Generation: Claude creates SQL CREATE statements for the tables, columns, indexes, and constraints.
When to Use This Skill
This skill activates when you need to:
- Design a new database schema from scratch.
- Normalize an existing database schema.
- Generate an ERD diagram for a database.
- Create SQL CREATE statements for a database.
Examples
Example 1: Designing a Social Media Database
User request: "Design a database schema for a social media application with users, posts, and comments."
The skill will:
- Design tables for users, posts, and comments, including relevant attributes (e.g., user_id, username, post_id, content, timestamp).
- Define relationships between the tables (e.g., one user can have many posts, one post can have many comments).
- Generate an ERD diagram visualizing the relationships.
- Create SQL CREATE TABLE statements for the tables, including primary keys, foreign keys, and indexes.
Example 2: Normalizing an E-commerce Database
User request: "Normalize a database schema for an e-commerce application with customers, orders, and products."
The skill will:
- Analyze the existing schema for normalization violations.
- Decompose tables to eliminate redundancy and improve data integrity.
- Create new tables and relationships to achieve a normalized schema (e.g., separating product details into a separate table).
- Generate SQL CREATE TABLE statements for the new tables and ALTER TABLE statements to modify existing tables.
Best Practices
- Normalization: Always aim for at least 3NF to minimize data redundancy and improve data integrity. Consider BCNF for more complex scenarios.
- Indexing: Add indexes to frequently queried columns to improve query performance.
- Relationship Integrity: Use foreign keys to enforce referential integrity and prevent orphaned records.
Integration
This skill can be integrated with other Claude Code plugins, such as a SQL execution plugin, to automatically create the database schema in a database server. It can also work with a documentation plugin to generate documentation for the database schema.
> related_skills --same-repo
> agent-context-loader
PROACTIVE AUTO-LOADING: Automatically detects and loads AGENTS.md files from the current working directory when starting a session or changing directories. This skill ensures agent-specific instructions are incorporated into Claude Code's context alongside CLAUDE.md, enabling specialized agent behaviors. Triggers automatically when Claude detects it's working in a directory, when starting a new session, or when explicitly requested to "load agent context" or "check for AGENTS.md file".
> Google Cloud Agent SDK Master
Automatic activation for ALL Google Cloud Agent Development Kit (ADK) and Agent Starter Pack operations - multi-agent systems, containerized deployment, RAG agents, and production orchestration. **TRIGGER PHRASES:** - "adk", "agent development kit", "agent starter pack", "multi-agent", "build agent" - "cloud run agent", "gke deployment", "agent engine", "containerized agent" - "rag agent", "react agent", "agent orchestration", "agent templates" **AUTO-INVOKES FOR:** - Agent creation and scaffold
> Vertex AI Media Master
Automatic activation for ALL Google Vertex AI multimodal operations - video processing, audio generation, image creation, and marketing campaigns. **TRIGGER PHRASES:** - "vertex ai", "gemini multimodal", "process video", "generate audio", "create images", "marketing campaign" - "imagen", "video understanding", "multimodal", "content generation", "media assets" **AUTO-INVOKES FOR:** - Video processing and understanding (up to 6 hours) - Audio generation and transcription - Image generation with I
> yaml-master
PROACTIVE YAML INTELLIGENCE: Automatically activates when working with YAML files, configuration management, CI/CD pipelines, Kubernetes manifests, Docker Compose, or any YAML-based workflows. Provides intelligent validation, schema inference, linting, format conversion (JSON/TOML/XML), and structural transformations with deep understanding of YAML specifications and common anti-patterns.