fullstack-workflow
Installation
SKILL.md
Fullstack Workflow
Complete guide for building features from API to UI, combining GET API routes, data fetching, form handling, and server actions.
Overview
When building a new feature, follow this pattern:
- GET API Route - For fetching data
- Server Action - For mutations (create/update/delete)
- Data Fetching - Using SWR on the client
- Form Handling - Using React Hook Form with Zod validation
1. GET API Route
For fetching data. Always wrap with withAuth or withEmailAccount: