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

Context-Engineered Study System for Claude Code Acts as Persistent Tutor
A developer built a study system using Claude Code that tracks progress across sessions, probes understanding, works through exercises, and adapts to learning styles. The system uses structured markdown files to shape agent behavior and includes tools for extracting textbook pages from PDFs.

Local Tool Visualizes Claude Code Session Data
A Python script reads Claude Code session data stored locally in ~/.claude/ and generates a scroll-driven visualization with D3.js charts showing daily activity, project breakdown, tool usage, and coding rhythm heatmaps.

Manual-Driven Development: A Method to Prevent Claude Code's Confident Divergence
Manual-Driven Development (MDD) is a method that addresses confident divergence in Claude Code, where the AI produces wrong code that passes its own tests. In a production audit, MDD found 190 issues, wrote 876 new tests in under 8 hours, and eliminated rule violations.

Claude Code now supports 240+ models via NVIDIA NIM gateway — including Nemotron-3 120B for agentic coding
Claude Code can switch mid-session to 240+ NVIDIA NIM models via the /model command. The Nemotron-3 Super 120B thinking variant shows strong results for multi-file refactoring and agentic tasks.