# 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# Compile TypeScript
npm run build
# Type check without emit
npx tsc --noEmit
# Clean and rebuild
rm -rf dist/ && npm run buildSee FILE-STRUCTURE.md for the complete source code layout.