MCP Hub
Back to servers

review-flow

Automated AI code reviews powered by Claude Code — webhook-driven, real-time dashboard, MCP integration, smart queue with deduplication, multi-agent audits, and iterative follow-up reviews for GitLab MRs and GitHub PRs

Stars
6
Forks
1
Updated
Feb 12, 2026
Validated
Feb 14, 2026

Reviewflow

CI License: MIT Node.js TypeScript Documentation

Automated AI code reviews powered by Claude Code. Assign a reviewer on your merge request — Claude reviews the code, tracks progress in real time, and follows up when you push fixes.

Works with GitLab and GitHub out of the box.


How It Works

Developer pushes code
       │
       ▼
GitLab/GitHub webhook ──► Review server receives event
                                    │
                                    ▼
                          Queue deduplicates & schedules
                                    │
                                    ▼
                          Claude Code runs review skill
                                    │
                          ┌─────────┼─────────┐
                          ▼         ▼         ▼
                     Agent 1   Agent 2   Agent N
                   (Archi)    (Tests)   (Quality)
                          │         │         │
                          └─────────┼─────────┘
                                    ▼
                          MCP server reports progress
                                    │
                                    ▼
                          Dashboard shows live status
                                    │
                                    ▼
                          Review posted on MR/PR
                                    │
                                    ▼
                          Dev pushes fixes ──► Auto follow-up

Key Features

Multi-Agent Reviews

Each review runs a configurable set of specialized audit agents — Clean Architecture, SOLID, Testing, DDD, Code Quality, and more. Define your own agents per project to match your team's standards.

{
  "agents": [
    { "name": "clean-architecture", "displayName": "Clean Archi" },
    { "name": "security", "displayName": "Security" },
    { "name": "testing", "displayName": "Testing" }
  ]
}

MCP Integration

A built-in Model Context Protocol server gives Claude structured tools to report progress, manage review phases, and queue actions on discussion threads — replacing fragile text-marker parsing with typed tool calls.

MCP ToolPurpose
get_workflowRead current review state and agent list
start_agent / complete_agentTrack per-agent progress
set_phaseAdvance review phases
get_threadsFetch MR/PR discussion threads
add_actionQueue thread actions (resolve, reply, comment)

Smart Queue

Powered by p-queue with:

  • Concurrency control — limit parallel reviews (default: 2)
  • Deduplication — prevents duplicate reviews within a configurable time window
  • Graceful cancellation — abort running reviews via dashboard or API
  • Memory guard — auto-kills if RSS exceeds 4 GB
  • Retry on failure — failed jobs clear deduplication so they can be re-triggered immediately

Real-Time Dashboard

A WebSocket-powered dashboard shows live review progress:

  • Phase and agent-level progress bars
  • Running / queued / completed review counts
  • Review history with duration, scores, and error details
  • Log stream for debugging
  • Auto-reconnection with exponential backoff

Follow-Up Reviews

When a developer pushes fixes after a review, Claude automatically:

  1. Re-reads the discussion threads
  2. Checks if blocking issues are resolved
  3. Resolves threads on GitLab/GitHub
  4. Posts a follow-up summary with updated score

This creates an iterative review loop, not just a one-shot check.

Multi-Platform Support

FeatureGitLabGitHub
Webhook triggerReviewer assignedReview requested or needs-review label
Thread actionsResolve, reply, commentResolve, reply, comment
Auto-followupOn MR pushOn PR push
Authenticationglab CLI (OAuth)gh CLI (OAuth)

No API tokens needed — both platforms use secure CLI-based OAuth.

Customizable Review Skills

Review behavior is defined by Claude Code skills — Markdown files in your project that tell Claude what to audit and how. Templates included for frontend, backend, and API reviews in English and French.


Quick Start

1. Install

npm install -g reviewflow

2. Initialize

reviewflow init

The interactive wizard will:

  • Configure server port and usernames
  • Generate webhook secrets
  • Scan your filesystem for git repositories
  • Set up MCP server integration with Claude Code

For non-interactive setup: reviewflow init --yes

3. Start

reviewflow start
# Dashboard at http://localhost:3847

Then configure a webhook on your GitLab/GitHub project pointing to your server.

Validate your setup

reviewflow validate

For detailed setup, see the Quick Start Guide.


CLI Reference

CommandDescription
reviewflow initInteractive setup wizard
reviewflow startStart the review server
reviewflow stopStop the running daemon
reviewflow statusShow server status
reviewflow logsShow daemon logs
reviewflow validateValidate configuration
Init FlagDescription
-y, --yesAccept all defaults (non-interactive)
--skip-mcpSkip MCP server configuration
--show-secretsDisplay full webhook secrets
--scan-path <path>Custom scan path (repeatable)

Documentation

TopicLink
Quick Startguide/quick-start
Configuration Referencereference/config
Project Configurationguide/project-config
Review Skills Guideguide/review-skills
MCP Tools Referencereference/mcp-tools
Architecturearchitecture
Deploymentdeployment
Troubleshootingguide/troubleshooting

API

EndpointMethodDescription
/dashboard/GETWeb dashboard
/healthGETHealth check
/statusGETQueue status
/webhooks/gitlabPOSTGitLab webhook receiver
/webhooks/githubPOSTGitHub webhook receiver
/api/reviewsGETList reviews
/api/reviews/cancel/:jobIdPOSTCancel a running review
/wsWSReal-time progress updates

Development

npm run dev          # Dev server with hot reload
npm test             # Tests in watch mode
npm run test:ci      # Tests (CI mode)
npm run typecheck    # TypeScript validation
npm run lint         # Biome linting
npm run verify       # All checks (typecheck + lint + test)

See CONTRIBUTING.md for guidelines.


License

MIT — Damien Gouron

Reviews

No reviews yet

Sign in to write a review