All articles
Company

Introducing MergeWatch

An open-source pull request reviewer that keeps the model, prompts, and final decision in your hands.

MergeWatch Team2 min readUpdated September 8, 2026

Software teams are writing more code, faster. Review capacity has not increased at the same rate. MergeWatch is our answer: an open-source reviewer that runs focused agents against every pull request, then gives a human reviewer a compact, prioritized view of the change.

The reviewer should be inspectable

Code review sits on a sensitive boundary. A useful system sees the code you are about to ship and influences what receives human attention. That system should not be a black box.

MergeWatch keeps the review pipeline in the open:

  • prompts and orchestration are source-available under AGPL v3;
  • teams choose the model provider;
  • self-hosted deployments keep code inside the operator's infrastructure;
  • the human reviewer retains merge authority.
# .mergewatch.yml
agents:
  - name: security
    focus: "Trust boundaries, injection, and secret exposure"
  - name: reliability
    focus: "Failure modes, retries, and resource cleanup"

Several narrow opinions beat one vague opinion

MergeWatch splits a review into specialist passes. A security pass asks different questions than an architecture pass. The results are deduplicated, ranked by confidence and severity, and returned as a single evolving review rather than a stream of noisy comments.

PrincipleWhat it means in practice
InspectablePrompts and orchestration are visible
PortableHosted or self-hosted, with your model
ProportionalFindings carry severity and confidence
Human-ledMergeWatch advises; maintainers decide

Automation earns trust by showing its work and respecting the boundary of what it can know.

Start with the source code, then read why code review is not CI.

Keep reading

Engineering·

Why We Stopped Saying "Safe to Merge"

Code review can assess a change, but that is not the same thing as proving a build is safe to merge.

MergeWatch Team · 2 min read
Engineering·

Code Review Is Not CI

Tests evaluate declared expectations; review looks for the expectation nobody thought to declare.

MergeWatch Team · 2 min read