@@ -23,21 +23,34 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
2323│ │ │ ├── components/ # UI components
2424│ │ │ ├── features/ # Feature modules
2525│ │ │ ├── lib/ # Utilities
26- │ │ │ ├── routes/ # SvelteKit routes
27- │ │ │ └── icons/ # Icon components
28- │ │ └── src-tauri/ # Tauri config
29- │ ├── server/ # Elysia API server
30- │ │ └── src/
31- │ │ ├── db/ # Drizzle schema & queries
32- │ │ ├── domains/ # Business logic
33- │ │ └── middleware/ # Elysia middleware
26+ │ │ │ └── routes/ # SvelteKit routes
27+ │ │ └── src-tauri/ # Tauri config
28+ │ └── server/ # Elysia API server
29+ │ └── src/
30+ │ ├── db/ # Drizzle schema & queries
31+ │ ├── domains/ # Business logic
32+ │ ├── middleware/ # Elysia middleware
33+ │ ├── ws/ # WebSocket handlers
34+ │ └── lib/ # Server utilities
3435├── packages/
35- │ └── api-client/ # Shared API types
36+ │ └── api-client/ # Shared API client & types
37+ ├── e2e/ # Playwright E2E tests
38+ ├── scripts/ # Utility scripts (seed.ts)
3639├── docs/
3740│ └── skills/ # Agent skill docs
38- ├── tasks/ # Procfile for dev
39- ├── .env.sample # environment variable samples.
40- └── .env # all environment variables in here. pls don't read
41+ └── .env # Environment variables (don't read)
42+ ```
43+
44+ ## Commands
45+
46+ ``` sh
47+ bun tidy # Fix + check (run after writing code)
48+ bun run check # Lint + type check + format check
49+ bun run fix # Auto-fix lint + format
50+ bun db # Run drizzle-kit commands
51+ bun db:seed # Seed database
52+ bun test:e2e # Run Playwright E2E tests
53+ bun test:e2e:ui # Run E2E tests with UI
4154```
4255
4356## Import Aliases
0 commit comments