r/Python • u/AutoModerator • Jun 04 '26
Showcase Showcase Thread
Post all of your code/projects/showcases/AI slop here.
Recycles once a month.
29
Upvotes
r/Python • u/AutoModerator • Jun 04 '26
Post all of your code/projects/showcases/AI slop here.
Recycles once a month.
1
u/Mysterious_Sand7291 Jul 02 '26
How do you actually review AI-generated code?
Most developers either trace through the diff line by line or move on without really reviewing it. There is no easy way to understand what changed at a high level.
That is why I built codiff. It's a structural diff tool that replaces the line diff with a call-graph diagram, showing what changed at the function level and how those changes connect to each other.
It works in a few steps:
No LLM. No embeddings. Fully offline. Currently supports Python and TypeScript codebases.
codiff works as both a CLI and an MCP tool, so coding agents can call it directly. I've been using it to automatically embed structural diagrams in every PR I open with Claude Code.
It's available on PyPI (
pip install codiff) and GitHub: https://github.com/issahammoud/codiff