Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ Use the Task tool with these specialized subagents for appropriate tasks:
- **ALWAYS use Playwright MCP tools** (`mcp__playwright__*`) for browser testing
- Test against: `http://localhost:3000` (frontend), `http://localhost:8001` (API)

## Code Guidelines
- Always document non-obvious logic changes with comments
- Why it matters: Future maintainers (including future-you) need to understand intent behind non-obvious code
- What counts: Complex algorithms, surprising workarounds, non-standard patterns, subtle invariants
- What doesn't: Well-named functions/variables that speak for themselves

## Stack
- **Frontend**: Vue 3 + Composition API + Vite (port 3000)
- **Backend**: Python FastAPI (port 8001)
Expand Down
Loading