Note - up1/workshop-vibe-coding-202507 GitHub Wiki
1. Create PRD
2. Create your projects (Donβt Start from Scratch)
taskmaster/
βββ frontend/
β βββ src/
β β βββ components/
β β βββ pages/
β β βββ App.tsx
βββ backend/
β βββ src/
β β βββ routes/
β β βββ server.ts
βββ README.md
3. Let's start with Cursor IDE
taskmaster/
βββ .cursor/
β βββ rules/
β βββ frontend.mdc
β βββ backend.mdc
Tell Cursor to read more context
Go through all files in Instructions and use them as context.
Try to develop frontend
# 1
Development plan for frontend all user stories
in folder frontend
# 2
proceed with this plan
Tips
- Keep Rules Specific
- Separate frontend, backend, etc. Donβt cram everything into one file.
- Use Precise Scopes
- Apply rules only where needed, like .tsx for React or api/**/*.ts for backend.
- Test Early
- Generate a small code snippet first to check if Cursorβs following your rules.
- Update as Needed
- If your project changes, update your rules. Donβt let them rot.