What problem does it solve? Adding a new data type to the admin panel requires touching seven or more files across the database, backend, and frontend, and missing any one of them breaks the stack. This Skill walks through every layer in order so the new entity compiles and works end to end. ## Core Features & Use Cases - Full-stack scaffolding: Generates the D1 SQL table, TypeScript domain type, row mapper, CRUD functions, Zod validation schema, API routes, admin API client, TanStack Query hooks, and admin page. - Convention enforcement: Encodes project patterns such as snake_case columns, JSON arrays stored as TEXT, UPSERT with ON CONFLICT, optimistic delete with rollback, and mandatory prerender = false on API routes. - Use Case: You want to add a certifications section to your portfolio admin. Invoke the Skill with the entity name and it produces the schema, types, endpoints, hooks, and page following the same patterns as projects and experience. ## Quick Start Ask the assistant to add a new admin entity named certifications using the add-admin-entity skill.