mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-25 12:05:06 +02:00
921 B
921 B
Claude Code Instructions
This file contains instructions for Claude Code when working on this repository.
Important: Read AGENTS.md First
Before making any code changes, read and follow the guidelines in AGENTS.md.
Key Requirements
- Always write tests - Every code change must include corresponding unit tests
- Run checks before committing - Use
pnpm typecheck && pnpm lint && pnpm format:check && pnpm test:run - Follow test conventions - See AGENTS.md for test file location patterns
Quick Reference
# Development
pnpm dev # Start development server
pnpm build # Build for production
# Quality checks
pnpm typecheck # TypeScript compilation check
pnpm lint # ESLint check
pnpm format:check # Prettier format check
pnpm test:run # Run all tests
pnpm test:coverage # Run tests with coverage report