What problem does it solve? Adding a new data entity to a DaaS application normally requires hand-writing migrations, REST endpoints, list and form pages, TypeScript types, and tests. This Skill scaffolds the entire collection module in one pass while enforcing Buildpad component conventions and mandatory audit fields. ## Core Features & Use Cases - Full-stack scaffolding: Creates the Supabase migration, API routes (route.ts + [id]/route.ts), content pages (list + form), and API/page tests for a new collection. - Standard field groups: Automatically applies a decision tree for Group A audit fields (always), Group B workflow fields (state machines), and Group C scope fields (multi-tenancy), with copy-pasteable MCP JSON payloads. - Buildpad compliance enforcement: Mandates CollectionList and CollectionForm usage and includes a post-generation grep check that flags forbidden raw Mantine imports with a fix mapping table. - Use Case: A developer needs a new suppliers entity with approval workflow. The Skill generates the migration with audit and workflow fields, CRUD API routes, list/form pages using Buildpad components, and passing tests, then hands off to the create-workflow skill. ## Quick Start Ask the AI to create a new collection named suppliers with fields name:text, email:text, and active:boolean, including workflow support.