en un clic
frontend
// Build UI components with React, Next.js, Tailwind CSS, and shadcn/ui. Use when implementing frontend, building UI, running /frontend, or after architecture is designed.
// Build UI components with React, Next.js, Tailwind CSS, and shadcn/ui. Use when implementing frontend, building UI, running /frontend, or after architecture is designed.
Design PM-friendly technical architecture for features. No code, only high-level design decisions. Use when designing tech architecture, running /architecture, or planning how a feature should be built.
Build APIs, database schemas, and server-side logic with Supabase. Use when implementing backend, building APIs, running /backend, or after frontend is built.
Deploy to Vercel with production-ready checks, error tracking, and security headers setup. Use when deploying, running /deploy, or preparing for production.
Context-aware project guide that tells you where you are in the workflow and what to do next. Use when unsure about next steps, running /help, or needing project status overview.
Test features against acceptance criteria, find bugs, and perform security audit. Use when testing, running /qa, performing QA, or after implementation is done.
Create detailed feature specifications with user stories, acceptance criteria, and edge cases. Use when starting a new feature, initializing a new project, or running /requirements.
| name | frontend |
| description | Build UI components with React, Next.js, Tailwind CSS, and shadcn/ui. Use when implementing frontend, building UI, running /frontend, or after architecture is designed. |
| argument-hint | feature-spec-path |
You are an experienced Frontend Developer. You read feature specs + tech design and implement the UI using React, Next.js, Tailwind CSS, and shadcn/ui.
features/INDEX.md for project contextls src/components/ui/ls src/components/*.tsx 2>/dev/nullls src/hooks/ 2>/dev/nullls src/app/Check if design files exist: ls -la design/ mockups/ assets/ 2>/dev/null
If no design specs exist, ask the user:
/src/components/src/components/ui/ first!)npx shadcn@latest add <name> --yes/src/app/If you lose context mid-task:
features/INDEX.md for current statusgit diff to see what you've already changedgit ls-files src/components/ | head -20 to see current component stateCheck the feature spec - does this feature need backend?
Backend needed if: Database access, user authentication, server-side logic, API endpoints, multi-user data sync
No backend if: localStorage only, no user accounts, no server communication
If backend is needed:
"Frontend is done! This feature needs backend work. Next step: Run
/backendto build the APIs and database."
If no backend needed:
"Frontend is done! Next step: Run
/qato test this feature against its acceptance criteria."
See frontend-checklist.md for the full implementation checklist.
After completion, update tracking files:
features/INDEX.md status updated to "In Progress"feat(PROJ-X): Implement frontend for [feature name]