Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 1.13 KB

File metadata and controls

55 lines (38 loc) · 1.13 KB

CLAUDE.md

Project instructions for Claude Code. Place this file at the root of your repository.

Project Overview

Tech Stack

  • Language:
  • Framework:
  • Package manager:
  • Test runner:

Coding Standards

  • Use TypeScript strict mode
  • Prefer named exports over default exports
  • Write tests for all new functions
  • Keep functions under 50 lines

File Structure

src/
  components/   # React components
  lib/          # Utility functions
  app/          # Next.js App Router pages

Commands

npm run dev      # Start dev server
npm run build    # Production build
npm test         # Run tests
npm run lint     # Lint check

Rules

  • Do NOT modify files in src/generated/
  • Always run tests before committing
  • Use conventional commits (feat:, fix:, docs:, etc.)

Session Workflow

  1. Read this file first
  2. Check docs/tasks.md for current priorities
  3. Ask before making architectural changes