Pull Requests
How to open a PR, what to expect in review, and the merge process.
PR process
- 1Fork and branch
Fork the repo. Create a branch: git checkout -b feat/your-feature-name
- 2Make your changes
Keep PRs focused — one concern per PR. Small PRs get reviewed faster.
- 3Test your changes
Run validators, build the CLI, verify the UI. Include test steps in your PR description.
- 4Open the PR
Open against main. Include: what changed, why, how to test, and screenshots for UI changes.
- 5Respond to review
Maintainers will review within a few days. PRs with no response for 14 days may be closed.
- 6Merge
Once approved, a maintainer will squash-merge your PR.
Checklist
- My branch is up to date with main
- I followed the commit convention
- I ran the linter for my language
- Validators pass for passing and failing states
- I included screenshots for UI changes
- The PR description explains what and why
