ArchReview
Features Pricing Docs
GitHub
Start Free Trial
v1.0 — Now Generally Available

Architectural code review,
powered by AI

Detect SRP violations, enforce compliance across 20 frameworks, track technical debt, and generate refactoring roadmaps — all from a single tool.

No credit card required. Works with any Git repository.

archreview — ~/projects/webapp
$ archreview --mode srp-review ./src

See it in action

A full dashboard for exploring findings, tracking quality trends, and managing your architectural standards.

ArchReview project overview dashboard showing quality scores, trends, and quick wins

Project overview with quality scores, trend chart, and quick wins

ArchReview mode selection showing all 5 review modes

5 review modes — pick the right tool for the job

Risk Audit configuration with compliance frameworks and factor weights

Risk Audit with configurable compliance frameworks

Settings panel with quality gates, architecture rules, and custom rules

Quality gates, architecture rules, and custom rules

Up and running in 3 steps

1

Install

One command. No config files, no database setup.

npm install -g archreview
2

Point at your repo

Pick a mode. Health Check and Risk Audit need zero API keys.

archreview --mode health-check .
3

Ship with confidence

Get actionable findings, compliance reports, and migration roadmaps.

Score: 87/100 — 2 findings
0
Review Modes
0
Compliance Frameworks
0
AI Reviewer Personas
0%
Code Smell Recall

Five modes. One tool.

From quick PR checks to full refactoring roadmaps, ArchReview adapts to your workflow.

SRP Review

Deep analysis of Single Responsibility Principle violations with AI-proposed abstractions and generated test contracts.

Violations Abstractions Test Contracts

PR Review

20 structural checks in ~5s, smart early exit for clean PRs, suggested reviewers, and effort estimation.

Fast Secrets Smart Exit

Risk Audit

8 risk factors scored against 20 compliance frameworks. GDPR, HIPAA, ISO 27001, SOC 2, and more.

Compliance Zero LLM Cost

Health Check

Dead code, test gaps, complexity hotspots, coupling, secrets, and circular dependencies in one score.

6 Checks Zero LLM Cost

Refactor Plan

Hotspot analysis, temporal coupling, bus factor, multi-persona AI review (6 specialists), code smell detection at 86.7% recall, and phased migration roadmaps with "What If" extraction simulator.

Personas Roadmaps What-If Sim Code Smells

Built for real engineering teams

Every feature designed to fit into the tools and workflows you already use.

Streaming Pipeline

Real-time progress via async generators. Watch every stage as it happens in the UI.

SARIF Export

Native SARIF 2.1.0 output for GitHub Code Scanning integration. Plus Markdown and JSON.

Quality Gates

Configurable pass/fail thresholds for CI. Block merges that don't meet your standards.

AI Chat

Ask questions about your codebase with context-aware AI that knows your review scores and findings.

Custom Rules

Write natural-language architectural rules. "API endpoints must have rate limiting." The AI enforces them.

VS Code Extension

Inline diagnostics, sidebar tree view, status bar health score. Review without leaving your editor.

Fits your pipeline

CLI, GitHub Actions, webhook API, VS Code extension. Use it where your team already works.

GitHub Actions

Auto-post review comments on PRs, upload SARIF to Code Scanning.

CLI

Run archreview --mode pr-review --ci in any CI system.

Webhook API

POST to trigger reviews, poll for status. Integrate with any tool.

# .github/workflows/archreview.yml
name:
ArchReview
on:
[pull_request]
jobs:
review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: archreview/action@v1
with:
mode: pr-review
sarif: true

What engineers are saying

"The PR Review mode caught a secrets leak and a missing error boundary in our first run. The early exit for clean PRs means it costs us basically nothing day-to-day."

M
Maya Chen
Staff Engineer, Fintech Startup

"We ran the Refactor Plan on a 4-year-old monolith. The bus factor analysis alone justified the tool — we had 12 files where only one person had ever touched the code."

A
Alex Novak
Engineering Manager, SaaS Platform

"Risk Audit flagged HIPAA gaps we didn't even know we had. Zero LLM cost, pure structural analysis. Our compliance team now requires it before every release."

S
Sarah Kim
Security Lead, HealthTech

Ship with architectural confidence

Start reviewing your codebase in under 2 minutes. No config required.

npm install -g archreview