entity-driven-ui
Installation
SKILL.md
Entity-Driven UI with MUI
Build fully dynamic CRUD interfaces from entity metadata — one schema drives DataGrid columns, FormEngine forms, validation, access control, and wizard flows.
Entity Metadata Model
The foundation: a single TypeScript schema that drives everything.
// entity-metadata.ts
type DataType = 'string' | 'number' | 'boolean' | 'date' | 'enum' | 'json';