What problem does it solve? Designing multi-entity relational schemas by hand is error-prone, and jumping straight to SQL often skips proper entity and relationship planning. This Skill provides a diagram-driven modeling path that turns business requirements into validated Mermaid classDiagram definitions and CloudBase data models. ## Core Features & Use Cases - Mermaid classDiagram Generation: Converts business entities into PascalCase classes with typed fields, required/unique constraints, and relationship cardinality. - CloudBase Model Management: Lists, inspects, and creates data models via manageDataModel and modifyDataModel tools. - Routing Guidance: Directs simple CREATE TABLE or CRUD tasks to direct SQL instead of over-modeling. - Use Case: When building an order system, model User and Order entities with their one-to-many relationship as a Mermaid diagram, validate field types and constraints, then create the CloudBase data model before writing any SQL. ## Quick Start Ask the AI to design a Mermaid classDiagram data model for your entities, for example a User and Order model with their relationship, and create it in CloudBase.