Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 984 Bytes

File metadata and controls

30 lines (20 loc) · 984 Bytes

Cal.com Development Guide for AI Agents

📖 Complete documentation is in the .agents/ directory.

Quick Reference

Essential Commands

  • yarn dev - Start development server
  • yarn build - Build all packages
  • yarn lint:fix - Lint and fix code
  • yarn type-check - TypeScript checking
  • yarn test <filename> -- --integrationTestsOnly - Run integration tests
  • yarn e2e <filename> --grep "<testName>" - Run specific E2E test

Tool Preferences

Search Tools Priority

Use tools in this order of preference:

  1. ast-grep - For AST-based code searches (if available)
  2. rg (ripgrep) - For fast text searches
  3. grep - As fallback for text searches

📚 Detailed Documentation