npx claudepluginhub mrmans0n/ai-reviewSkills for using ai-review (air) — a desktop code review tool for AI coding agents
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations
Claude Code plugins for the Slidev presentation framework
Share bugs, ideas, or general feedback.
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 |
|---|---|
![]() | ![]() |
air) — open AI Review from any Git repositoryCShift + ShiftAI 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) |
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.
Use the Skills tool to install:
npx skills add mrmans0n/ai-review
brew install --cask mrmans0n/tap/ai-review
This installs the app and the air CLI command.
Download the latest release from GitHub Releases:
.dmg (Apple Silicon).AppImage or .debmacOS 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:
xattr -cr /Applications/AI\ Review.appIf you installed via Homebrew, this is handled automatically.
pnpm install
pnpm tauri build
cd cli && ./install.sh
# then: air (from any git repo)
pnpm dev — run the web app onlypnpm tauri dev — run the desktop app with hot reloadShift + Shift — file searchC — add commentCmd/Ctrl + Enter — submit commentEsc — close modals.
├── src/
│ ├── components/ # UI components (diffs, sidebar, comments, modals)
│ ├── hooks/ # React hooks for UI and state behavior
│ └── lib/ # Core client logic (git, prompt building, utilities)
├── src-tauri/
│ └── src/ # Rust backend commands and app integration
└── cli/ # air launcher installer and CLI wiring
MIT — see LICENSE.