Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 495 Bytes

File metadata and controls

34 lines (23 loc) · 495 Bytes

Development

Running Tests

# Run all tests
npm test

# Run specific test file
npm test src/agents/cluster-detector.test.ts

# Run tests in watch mode
npm run test:watch

# Run tests with coverage
npm run test:coverage

Building

# Compile TypeScript
npm run build

# Type check without emit
npx tsc --noEmit

# Clean and rebuild
rm -rf dist/ && npm run build

Project Structure

See FILE-STRUCTURE.md for the complete source code layout.