Install
openclaw skills install @mohitagw15856/entity-relationship-diagramTurn a data model into an entity-relationship (ER) diagram. Use when asked to design a schema, model data, show how tables/entities relate, or diagram a database. Produces a ready-to-render Mermaid ER diagram (renders live, exportable as PNG/SVG) plus key attributes, cardinality, and design notes.
openclaw skills install @mohitagw15856/entity-relationship-diagramBefore you write a migration, it pays to see the data model: the entities, their key fields, and how they relate (one-to-many, many-to-many). This skill turns a described domain into a clean Mermaid ER diagram with proper cardinality notation and the attributes that matter.
Ask for these only if they aren't already provided:
One line on the scope of the model.
Cardinality key — ||--o{ = one-to-many, }o--o{ = many-to-many, ||--|| = one-to-one.
Design notes — normalization choices, where a join table is needed, indexes worth adding, anything deferred.
erDiagram. Relationship line: A ||--o{ B : label.|| (exactly one), o{ (zero-or-many), |{ (one-or-many), o| (zero-or-one).ENTITY { type name PK } — mark keys with PK / FK.Data modeling (entity-relationship modeling, crow's-foot notation, normalization), expressed as renderable Mermaid.