Project Development Playbook
Goal
Apply one consistent delivery workflow across backend and frontend tasks.
Workflow
- •Confirm scope and assumptions.
- •Choose implementation path (backend, frontend, full stack).
- •Implement minimal changes aligned with project conventions.
- •Run relevant verification commands.
- •Report what changed and what was verified.
Backend Defaults
- •Python 3.10+
- •
uvfor dependencies and execution - •
rufffor lint/format - •
pytestfor tests
For deeper backend architecture rules, use backend-engineering-playbook.
Frontend Defaults
Unless user specifies otherwise, use React + TypeScript + Vite + Tailwind.
For UI/UX work, start with:
bash
python3 .claude/skills/ui-ux-pro-max/scripts/search.py "<query>" --design-system -p "<project-name>"
Verification Checklist
Run what applies:
bash
uv run ruff check . uv run ruff format --check . uv run pytest npm --prefix frontend run lint npm --prefix frontend run typecheck npm --prefix frontend run test npm --prefix frontend run build