Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Summary

ai-review plugin.

Install to Claude Code

/plugin install ai-review@ai-review

Run in Claude Code. Add the marketplace first with /plugin marketplace add mrmans0n/ai-review if you haven't already.

README.md

AI Review

AI Review (air) is a desktop code review tool for reviewing diffs, adding inline comments, and generating structured prompts to send back to AI coding agents.

It brings a pull-request-style review experience to the human → AI feedback loop.

| Light | Dark | |-------|-------------| | !A code review with air with light theme | !A code review with air with dark theme |

Features

  • CLI launcher (air) — open AI Review from any Git repository
  • Git integration — auto-detect repositories and load unstaged, staged, or commit diffs
  • Changed files sidebar — file list with status badges (M/A/D/R)
  • Split and Unified diff views with syntax highlighting
  • Inline comments on lines — click the gutter or press C
  • Comment editing and deletion
  • Fuzzy file search — press Ctrl/⌘ + O
  • Prompt generation from comments — structured output with code snippets
  • Expandable hunk context
  • Multi-repo management
  • Commit selector

Agent Skills

AI Review ships with skills that AI coding agents can use to interact with the desktop app. The most important one is human-review, which lets the agent request your code review before committing — it runs air --wait, opens the diff viewer, blocks until you submit feedback, and the agent addresses each comment automatically.

| Skill | Description | |-------|-------------| | human-review | Request human code review with inline comments and feedback loop | | show-changes | Present completed work for optional review | | review-commits | Open existing commits or branch diffs for review | | browse-diff | Open the diff viewer just for browsing (no feedback loop) |

Claude Code

Install as a Claude Code plugin to give your agent access to all skills automatically:

claude plugin marketplace add https://github.com/mrmans0n/ai-review
claude plugin install ai-review

That's it — Claude Code will discover the skills and can invoke air during coding sessions.

Other Agents (OpenClaw, Codex CLI, etc.)

Use the Skills tool to install:

npx skills add mrmans0n/ai-review

Tech Stack

  • Desktop shell: Electron (Rust sidecar backend)
  • Frontend: React + TypeScript + Vite
  • Styling: Tailwind CSS

Prerequisites

  • Node.js v20+
  • pnpm
  • Rust toolchain

Installation

Homebrew (macOS, Apple Silicon)

brew install --cask mrmans0n/tap/ai-review

This installs the app and the air CLI command.

Manual

Download the latest release from GitHub Releases:

  • macOS.dmg (Apple Silicon)
  • Linux.AppImage or .deb

> macOS note: The app is not code-signed with an Apple Developer certificate. When opening for the first time, macOS Gatekeeper may show an error saying the app is "damaged" or "can't be opened." To fix this, run: > > ``bash > xattr -cr /Applications/AI\ Review.app > `` > > If you installed via Homebrew, this is handled automatically.

From Source

pnpm install
pnpm electron:build
cd cli && ./install.sh
# then: air (from any git repo)

Development

  • pnpm dev — run the web app only
  • pnpm electron:dev — run the desktop app with hot reload

Keyboard Shortcuts

  • Ctrl/⌘ + O — file search
  • C — add comment
  • Cmd/Ctrl + Enter — submit comment
  • Esc — close modals

Project Structure

.
├── src/
│   ├── components/   # UI components (diffs, sidebar, comments, modals)
│   ├── hooks/        # React hooks for UI and state behavior
│   └── lib/          # Core client logic (git, prompt building, utilities)
├── electron/         # Electron main + preload (TypeScript)
├── core/             # Rust workspace (core-lib, core-sidecar, core-launcher)
└── cli/              # air launcher installer and CLI wiring

License

MIT — see LICENSE.

Related plugins

Browse all →