Scaffold a complete full-stack feature — API route, DB query, TypeScript types, and frontend component — in one shot. Use when the user says "add a [feature]", "I need a [thing] page", or "scaffold [X]" and wants everything wired up fast.
npx @senso-ai/shipables install KeyanVakil/speed-scaffoldBuild an entire feature end-to-end without going back and forth.
Define the data shape first. Match existing type conventions in the project.
Query or mutation function using the project's ORM/client (Drizzle, Prisma, etc.). Match existing patterns exactly — don't introduce new abstractions.
Wire the DB function into the API. Include input validation if the project already does it. Don't add a validation library if there isn't one.
A working component that calls the API and renders the result. Use the project's existing UI primitives (shadcn, Tailwind, etc.) — don't import new component libraries.
Show exactly where to import/register the new route or component if it's not auto-discovered.