Minimal workflow for external contributors.
See the Quick Start for prerequisites and initial setup.
After cloning, run bun install to install dependencies and activate the pre-push hook:
bun installThe hook runs bun run verify before every push. To format code manually: bun run format.
- Create a branch from
main. - Make focused changes.
- Run targeted checks while iterating:
bun run test:unit # unit tests
bun run test:int # integration tests
bun run test:tui # visual regression tests
bun run test:perf # performance baselines- Before opening a PR, run full validation:
bun run verify- Keep PRs small and scoped to one intent.
- Update canonical docs when behavior or contracts change.
- Include tests for meaningful regression risk.