pnpm install
# Run components in dev mode
pnpm dev:cli
pnpm dev:server
pnpm dev:daemon
# Quality checks
pnpm check # typecheck + lint + test
pnpm test:watch # tests in watch mode
pnpm lint:fix # auto-fix lint issues
pnpm format # format all filessrc/
cli/ # CLI commands and entry point
server/ # Web server for settings
daemon/ # Long-running daemon process
core/ # Shared business logic
config/ # Configuration loading
types/ # Shared type definitions
utils/ # Shared utility functions
tests/ # Mirror of src/ structure