Claude Review: IntelliJ Plugin for Real-Time Code Review with Claude Code

Claude Review is an IntelliJ plugin that provides real-time code review using Claude Code. Every time you save a file, the plugin takes your unstaged git diff and sends it to Claude Code with a customizable prompt.
How It Works
The plugin operates automatically on file save. It captures unstaged changes from git and sends them to claude -p with a prompt you can customize. Claude responds with line-level findings categorized as BUG, WARNING, or INFO.
Key Features
- Zero friction workflow — reviews happen automatically in the background when you save files
- Native IntelliJ integration — findings appear as annotations with gutter icons and severity-colored underlines
- Content-hash caching — prevents wasted API calls on unchanged files
- Customizable prompts — you control what Claude focuses on (security, performance, etc.)
Requirements
- Claude Code CLI must be installed
- Project must be git-tracked
Availability
The plugin is open source under MIT license. You can find it on the JetBrains Marketplace at https://plugins.jetbrains.com/plugin/30307-claude-review and the source code on GitHub at https://github.com/kmscheuer/intellij-claude-review.
📖 Read the full source: r/ClaudeAI
👀 See Also

altRAG: Replace Vector DB RAG with 2KB Pointer Files for AI Coding Agents
altRAG is a Python tool that replaces vector database RAG with lightweight pointer files. It scans Markdown/YAML skill files to create a 2KB skeleton file mapping sections to exact line numbers and byte offsets, allowing AI agents to read only needed sections instead of entire files.

Open-source SwiftUI testing skill for Claude Code uses Computer Use to visually test apps
An open-source Claude Code skill called /ios-test visually tests SwiftUI apps using Computer Use capability. The agent finds .xcodeproj files, builds the app in a Simulator, then navigates through every screen, tapping buttons and following links like a real user.
DuckDB’s Quack Protocol Enables Client-Server with Multiple Concurrent Writers
DuckDB introduces the Quack remote protocol, allowing two DuckDB instances to communicate as client and server, supporting concurrent writers and leveraging HTTP for transport.

Claude Code v2.1.141: New Environment Variables, Hooks Enhancement, and Bug Fixes
Anthropic released Claude Code v2.1.141 with new environment variables (CLAUDE_CODE_PLUGIN_PREFER_HTTPS, ANTHROPIC_WORKSPACE_ID), terminalSequence field for hooks, agent listing by cwd, and over 20 bug fixes.