vinext was born from an experiment in pushing AI to its limits. Almost every line of code in this repo was written by AI, and every pull request is both created and reviewed by AI agents. We welcome human contributions, but if you want to have a good time in this repo, you're going to want to use AI.
We use OpenCode with Claude Opus 4.6, set to max thinking. This is the same setup that built the project.
- Run the test suite.
pnpm testruns Vitest.pnpm run test:e2eruns Playwright. - Add tests for new functionality. Unit tests go in
tests/*.test.ts. Browser-level tests go intests/e2e/. - Run the linter and type checker.
pnpm run lint(oxlint) andpnpm run typecheck(tsgo). - Read
AGENTS.md. It has the architecture context, key gotchas, and development workflow that will save you (and your AI) time.
When you open a PR, tag one of our AI reviewers in a comment:
/bonk— AI code review using Claude Opus 4.6/bigbonk— Same model, max thinking mode. Use this for complex or large PRs.
The reviewer will leave comments on your PR. You can respond to its comments and it will follow up.
For browser-level debugging (verifying rendered output, client-side navigation, hydration behavior), we recommend agent-browser. Unit tests miss a lot of subtle browser issues. agent-browser has been effective at catching them throughout this project.
Check the open issues. Issues labeled post-launch are known gaps we're planning to address. If you're looking to contribute, those are a good place to start.
See AGENTS.md for the full project structure, key files, architecture patterns, and development workflow.