@cnakazawa: Codiff 0.1 is out * Fast Local Code Reviews * Optional LLM Walkthroughs * Inline Review Comments This is the best compa…
Summary
Codiff 0.1 is a minimal, local diff viewer for Git changes with optional LLM walkthroughs and inline review comments, designed for reviewing code from AI coding agents.
View Cached Full Text
Cached at: 05/17/26, 03:36 PM
Codiff 0.1 is out
- Fast Local Code Reviews
- Optional LLM Walkthroughs
- Inline Review Comments
This is the best companion for reviewing output of coding agents.
macOS Release: https://github.com/nkzw-tech/codiff/releases/tag/v0.1.0…
nkzw-tech/codiff
Source: https://github.com/nkzw-tech/codiff
Codiff
Codiff is a beautiful, minimal, local diff viewer for reviewing staged and unstaged Git changes before committing.
Why Codiff
- Fast Local Reviews: See changes in any Git repository to review code before committing.
- LLM Walkthroughs: Run
codiff -wto ask Codex to give your a review order and more context. - Inline Review Comments: Comment directly on changed lines and copy all review comments as Markdown for follow-ups.
Download
Download the latest Codiff app from GitHub Releases.
After installing the app, run Codiff > Install Terminal Helper to make the codiff command available in your shell.
Command Line
codiff
Run it from any Git repository, or pass a path:
codiff /path/to/repository
Start with an LLM-generated walkthrough order:
codiff -w
Launching Codiff in multiple repositories opens a separate native window for each repository.
Development
vp install
vp build
vpr codiff
For live development:
vpr dev
ELECTRON_RENDERER_URL=http://127.0.0.1:5173 vpr electron
Useful checks:
vp check
vp test
vp build
Similar Articles
Show HN: Codiff, a local diff review tool
Codiff is a minimal, local diff viewer for reviewing staged and unstaged Git changes, with LLM-powered walkthroughs and inline review comments.
@sashimikun_void: https://github.com/nkzw-tech/codiff… Cool code diff viewer btw...
Codiff is a beautiful, local diff viewer for Git repositories with LLM-powered walkthroughs and inline review comments, designed to streamline code review before committing.
Open Code Review – An AI-powered code review CLI tool
Alibaba has open-sourced Open Code Review, an AI-powered CLI tool for code review that combines deterministic engineering with LLM agent capabilities. Originally an internal tool serving tens of thousands of developers and identifying millions of defects, it reads Git diffs and produces structured, line-level review comments using a configurable model endpoint.
I built a local CLI for Claude Code, Codex, and Gemini to review each other’s GitHub PRs usign existing auth
The author introduces `coding-review-agent-loop`, an open-source local CLI that orchestrates multiple coding agents (Claude Code, Codex, Gemini) to review each other's GitHub PRs using existing local authentication, avoiding additional API costs.
@mattpocockuk: Thinking about a workflow like this for helping prevent comprehension debt on a fast-moving repo: Fast-moving repo w/lo…
Matt Pocock shares an idea for a workflow using LLMs to generate podcast summaries of code diffs, aiming to prevent comprehension debt in fast-moving repos; he has implemented it for his personal wiki with good results.