What problem does it solve? Adding a new entity to the Delfrance ERP normally means hand-writing list, create, and edit pages plus their e2e tests and CI wiring. This Skill turns a single Zod schema into the full CRUD surface, eliminating duplicated boilerplate and the recurring test failures that come with it. ## Core Features & Use Cases - Schema-to-UI generation: Derives columns, inputs, labels, and validation for TableView (list) and ObjectView (create/edit) directly from a Zod schema with .describe() labels and enum .meta({ labels }). - Complete page recipe: Covers the collection handle via defineCollection, list/create/edit pages, sidebar navigation entry, and permission gating with BigInt permission bits. - E2e and CI conventions: Defines the spec naming pattern (<x>.cadastros.e2e.spec.ts / <x>.vendas.e2e.spec.ts), seeding helpers, UI-driver helpers, and documents that no new CI workflow is needed. - Use Case: When asked to "create the suppliers registration screen", follow the recipe to add the schema, collection, three pages, nav entry, and a seeded e2e spec modeled on the canonical clientes example. ## Quick Start Ask the assistant to create a new CRUD screen for a Firestore collection, for example: "Create the suppliers registration screen with a TableView list and ObjectView form following the schema-driven CRUD pattern."