Status: Early development. We believe this approach will match or exceed current state-of-the-art coding agents within 6-7 days.
- TDD-first planning: Tasks are broken into steps with tests defined upfront
- Full terminal experience: Prompt terminal commands
- Focused execution: Approved plans pin to screen, clearing context for implementation
- Install dependencies:
bun installbun run start# Run all tests
bun test
# Run only integration tests
bun test src/tests/integration
# Run specific test file
bun test src/tests/plan-tool.test.tsTests use Bun's built-in test runner. All test files follow the *.test.ts pattern.
Integration tests are located in src/tests/integration/ and cover end-to-end workflows like the TDD planning cycle.
AGPL-3.0