Development
# Run all tests (fast parallel runner)bun test:all
# Run tests with native bun test runner (accepts bun test arguments)bun test:native
# Lint and format the codebasebun lint
# Type-checkbun typecheck
# Full check (lint + typecheck + test)bun checkDevelopment HTTP Proxy
Section titled “Development HTTP Proxy”To avoid rate limiting during development, you can use the built-in HTTP caching proxy:
# Start the proxy server (default port 3128)bun proxy
# Run CLI commands through the proxyDEV_PROXY=3128 bun cli install batThe proxy caches all HTTP responses locally, ignoring server cache headers. This is useful when repeatedly testing installations against GitHub or other APIs. See packages/http-proxy/README.md for full documentation.