Please ensure your PR title follows Conventional Commits format:
feat: <description>- New features → MINOR version bump (1.1.0 → 1.2.0)fix: <description>- Bug fixes → PATCH version bump (1.1.0 → 1.1.1)perf: <description>- Performance improvements → PATCH version bump (1.1.0 → 1.1.1)
For breaking changes, use any commit type above with BREAKING CHANGE: in the commit body or ! after the type:
feat!: <description>→ MAJOR version bump (1.1.0 → 2.0.0)fix!: <description>→ MAJOR version bump (1.1.0 → 2.0.0)
build: <description>- Build system changeschore: <description>- Maintenance tasksci: <description>- CI/CD changesdocs: <description>- Documentation onlyrefactor: <description>- Code refactoring (no functional changes)style: <description>- Code style/formatting changestest: <description>- Test additions/changes
Docker builds are independent of versioning and trigger based on:
Automatic: When PRs modify relevant files:
- Python files (
*.py),requirements*.txt,pyproject.toml - Docker files (
Dockerfile,docker-compose.yml,.dockerignore)
Manual: Add the docker-build label to force builds for any PR.
Please provide a clear and concise description of what this PR does.
- List the specific changes made
- Include any breaking changes
- Note any dependencies added/removed
Please review our Testing Guide before submitting.
# Activate virtual environment first
source venv/bin/activate
# Run comprehensive code quality checks (recommended)
./code_quality_checks.sh
# If you made tool changes, also run simulator tests
python communication_simulator_test.py- All linting passes (ruff, black, isort)
- All unit tests pass
- For new features: Unit tests added in
tests/ - For tool changes: Simulator tests added in
simulator_tests/ - For bug fixes: Tests added to prevent regression
- Simulator tests pass (if applicable)
- Manual testing completed with realistic scenarios
Fixes #(issue number)
- PR title follows the format guidelines above
- Activated venv and ran code quality checks:
source venv/bin/activate && ./code_quality_checks.sh - Self-review completed
- Tests added for ALL changes (see Testing section above)
- Documentation updated as needed
- All unit tests passing
- Relevant simulator tests passing (if tool changes)
- Ready for review
Any additional information that reviewers should know.