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';

type WidgetType =
  | 'text'
  | 'textarea'
Related skills
Installs
9
GitHub Stars
11
First Seen
Apr 4, 2026