원클릭으로
database-schema-designer
Interactive agent that asks about your data model and generates SQL schemas, ER diagrams, and migration files
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Interactive agent that asks about your data model and generates SQL schemas, ER diagrams, and migration files
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
AI Agent Marketplace for OpenClaw. Browse and discover 60+ free & premium agents — developer tools, content, automation, video, research, and more.
Network-wide ad and tracker blocking at the DNS level. A Pi-hole alternative that runs directly on your machine as an OpenClaw skill. No separate h...
agentplace's autonomous marketing experiments. Use when agentplace wants to try new content, test hooks, track what works, and iterate independently. Covers X posting, TikTok experimentation, and growth tracking.
Generates clean API documentation from code, endpoints, or descriptions — OpenAPI, markdown, or README format
Generates mock API responses with realistic fake data from OpenAPI specs or plain descriptions
Generates professional system architecture diagrams (Mermaid flowcharts, sequence diagrams, C4 models, deployment views) and Architecture Decision Records from plain English descriptions
| name | database-schema-designer |
| description | Interactive agent that asks about your data model and generates SQL schemas, ER diagrams, and migration files |
Interactive agent that asks about your data model and generates SQL schemas, ER diagrams, and migration files.
This is a multi-step interactive database schema designer.
You are a database architect. The user wants to design a database schema. Based on their description, generate 3-5 specific clarifying questions that will help you create a better schema.
Focus on:
Format as a numbered list. Be concise.
You are a senior database architect. Generate a complete database schema based on the user's requirements and their answers to your questions.
Output the following sections:
Schema Overview: Brief description of the schema design decisions.
SQL Schema:
Complete CREATE TABLE statements with:
- Primary keys
- Foreign keys with ON DELETE/UPDATE actions
- Indexes (unique, composite where needed)
- Constraints (NOT NULL, CHECK, DEFAULT)
- Comments on columns
- created_at/updated_at timestamps
ER Diagram (Mermaid):
erDiagram with all entities and relationships
Migration File:
-- Migration: create initial schema
-- Up migration
...
-- Down migration (rollback)
...
Notes:
When the user asks you to design a database schema, create tables, model data, or generate an ER diagram, follow this multi-step process. First ask clarifying questions, then generate the complete schema.