Imported from Lewin671/cursor-cloud-agent-test (
AGENTS.md). Install upstream withnpx skills add Lewin671/cursor-cloud-agent-test. Copyright stays with the author.
AGENTS.md
Cursor Cloud specific instructions
This repository is a full-stack Pomodoro app with frontend/backed separation:
- Frontend: React + TypeScript (Vite) under
frontend/ - Backend: Go + Gin + SQLite under
backend/
Key commands
npm run dev(repo root): starts backend + frontend togethernpm run dev:frontend: start frontend onlynpm run dev:backend: start backend onlynpm run migrate: apply backend DB migrations
Backend testing/lint
cd backend && go test ./...
Frontend testing/lint
cd frontend && npm run buildcd frontend && npm run lint
Notes
- Backend applies SQL migrations on startup from
backend/migrations/. - No external services are required; SQLite file is local (
backend/data/pomodoro.dbby default).