What problem does it solve?
This skill streamlines the setup of a code repository on a new machine by performing an automated sequence: verify the Bun runtime, install dependencies, run tests, and persistently fix issues until every test passes. It reduces environment drift and manual debugging by making the setup deterministic and repeatable.
Core Features & Use Cases
- Environment validation: checks for Bun, verifies presence of a package.json with a test script, and ensures the system meets OS requirements.
- Dependency and test management: runs bun install and bun run test, retrying with cleanup if needed to reach a green state.
- Green-loop automation: iteratively analyzes failures, applies minimal fixes, and re-runs tests until all pass.
- Use Case: onboarding a new dev machine or CI agent where the environment is inconsistent, ensuring a fully green test suite with minimal manual intervention.
Quick Start
Use the Setup Wizard to verify Bun, install dependencies, run tests, and repeatedly fix issues until all tests pass.