A Next.js template with an AI-powered development workflow using specialized skills for Requirements, Architecture, Frontend, Backend, QA, and Deployment.
- Framework: Next.js 16 (App Router), TypeScript
- Styling: Tailwind CSS + shadcn/ui (copy-paste components)
- Backend: Supabase (PostgreSQL + Auth + Storage) - optional
- Deployment: Vercel
- Validation: Zod + react-hook-form
- State: React useState / Context API
src/
app/ Pages (Next.js App Router)
components/
ui/ shadcn/ui components (NEVER recreate these)
hooks/ Custom React hooks
lib/ Utilities (supabase.ts, utils.ts)
features/ Feature specifications (PROJ-X-name.md)
INDEX.md Feature status overview
docs/
PRD.md Product Requirements Document
production/ Production guides (Sentry, security, performance)
/requirements- Create feature spec from idea/architecture- Design tech architecture (PM-friendly, no code)/frontend- Build UI components (shadcn/ui first!)/backend- Build APIs, database, RLS policies/qa- Test against acceptance criteria + security audit/deploy- Deploy to Vercel + production-ready checks
All features tracked in features/INDEX.md. Every skill reads it at start and updates it when done. Feature specs live in features/PROJ-X-name.md.
- Feature IDs: PROJ-1, PROJ-2, etc. (sequential)
- Commits:
feat(PROJ-X): description,fix(PROJ-X): description - Single Responsibility: One feature per spec file
- shadcn/ui first: NEVER create custom versions of installed shadcn components
- Human-in-the-loop: All workflows have user approval checkpoints
npm run dev # Development server (localhost:3000)
npm run build # Production build
npm run lint # ESLint
npm run start # Production server@docs/PRD.md
@features/INDEX.md