Skip to the content.

Contributing Guide

Thank you for your interest in contributing to the orchestration framework. This guide covers everything you need to know to get started, submit changes, and participate in the project.

How to Contribute

Contributing follows four steps:

  1. Find or create an issue. Check existing issues for something you want to work on, or open a new issue describing the change you want to make. Discuss the approach before writing code.

  2. Fork and branch. Fork the repository, create a feature branch, and implement your changes following the coding standards.

  3. Submit a pull request. Push your branch and open a pull request against main. Fill out the PR template completely and ensure all checks pass.

  4. Respond to review. Address feedback from the multi-AI review pipeline and human maintainers. Iterate until the change is approved.

Code Review Process

All pull requests go through a 4-phase multi-AI review pipeline before human review. This ensures consistent quality and catches issues that single-reviewer processes miss.

Phase 1: Automated Analysis

Static analysis, linting, and test execution run automatically when you open a PR. All checks must pass before the AI review begins.

Phase 2: Multi-Model Review

Three to six AI models independently review the code changes. Each model examines correctness, style adherence, security implications, and performance characteristics. The models used for review are always different from those used in Phase 3.

Phase 3: Meta-Review

A separate set of strong models (with zero overlap from Phase 2) synthesize the individual reviews. They identify consensus findings, resolve conflicting recommendations, and produce a unified review summary.

Phase 4: Human Review

A human maintainer reviews the PR alongside the AI-generated summary. The maintainer makes the final accept/reject decision. AI review informs but does not replace human judgment.

Branch Workflow

The project uses a simple branching model:

# Create a worktree for a new feature
git worktree add ../feature-new-scraper -b add-new-scraper

# Work in the worktree directory
cd ../feature-new-scraper

# Remove the worktree when done
git worktree remove ../feature-new-scraper

Do not create git tags. All versioning is handled by the maintainers.

Pull Request Guidelines

Every pull request must use the following template:

## Summary
- Brief description of what the change does
- Why this change is needed
- Any notable implementation decisions

## Test Plan
- [ ] Unit tests added or updated
- [ ] Integration tests pass locally
- [ ] Manual testing performed (describe steps)
- [ ] No regressions in existing functionality

Additional guidelines for pull requests:

Areas for Contribution

Contributions are welcome in the following areas:

Development Setup

# Clone the repository
git clone https://github.com/FlossWare/claude-orchestrator.git
cd claude-orchestrator

# Install Node.js dependencies
npm install

# Install Python dependencies
pip3 install -r requirements.txt

Verify your setup by running the test suite:

npm test

See the getting started guide for prerequisite details and first steps.

Communication

Be clear and constructive in all communication. Provide context, include reproduction steps for bugs, and explain the rationale behind feature requests.

Code of Conduct

All participants are expected to behave professionally and respectfully. Harassment, discrimination, and hostile behavior are not tolerated. Treat others the way you want to be treated. Maintainers reserve the right to remove anyone who violates these expectations.

License

Contributions are accepted under the same license as the project. By submitting a pull request, you agree that your contributions will be licensed under the project’s existing license terms. See the LICENSE file in the repository root for details.