Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 690 Bytes

File metadata and controls

37 lines (25 loc) · 690 Bytes

Contributing

Thanks for contributing to CodeWithPhone Agent.

Development Setup

  1. Install Go 1.25+
  2. Clone repository
  3. Run:
make test
make build

Pull Request Rules

  • Keep changes focused and small.
  • Add or update tests for behavior changes.
  • Update docs when flags/config/behavior change.
  • Do not introduce breaking changes without discussion in an issue first.

Commit Sign-off (DCO)

By contributing, you agree that your contribution is licensed under Apache-2.0.

Each commit must include a Signed-off-by line:

Signed-off-by: Your Name <your.email@example.com>

You can add it automatically:

git commit -s -m "your message"