Thanks for your interest in contributing! This project was extracted from the main Chapa monorepo specifically so the community can help improve it.
- Report bugs or suggest features via GitHub Issues
- Fix bugs or implement features via pull requests
- Improve documentation
- Share your experience with corporate proxy/TLS configurations
- Fixes for specific corporate proxy/TLS configurations
- Windows compatibility improvements
- Better error messages for edge cases
- Support for additional authentication methods
-
Fork and clone the repository:
git clone https://github.com/<your-username>/chapa-cli.git cd chapa-cli
-
Install dependencies:
pnpm install
-
Run tests to verify everything works:
pnpm test
-
Create a feature branch from
develop:git checkout develop git pull origin develop git checkout -b feat/your-feature
-
Make your changes and write tests.
-
Ensure all checks pass:
pnpm test # unit tests pnpm run typecheck # type checking pnpm run build # production build
-
Open a pull request targeting the
developbranch.
pnpm run build
node dist/index.js login --server http://localhost:3001
node dist/index.js merge --emu-handle your-emu --server http://localhost:3001
node dist/index.js insights --file path/to/report.html --server http://localhost:3001Use lowercase Conventional Commits:
feat: add proxy support
fix: handle expired tokens gracefully
docs: update contributing guide
chore: bump dependencies
test: add coverage for auth module
refactor: simplify GraphQL query builder
- Target the
developbranch (notmain) - Keep PRs focused — one feature or fix per PR
- Include tests for new functionality
- Update documentation if behavior changes
- Ensure CI passes before requesting review
This project follows the Contributor Covenant Code of Conduct. By participating, you are expected to uphold this code.
If you discover a security vulnerability, please follow the Security Policy instead of opening a public issue.