← Reddit

Video: How I Review Code with Claude

Reddit · jancodes · July 9, 2026
A developer demonstrated that code reviews conducted collaboratively with Claude AI produce superior results compared to human-only or AI-only approaches, as each catches issues the other misses. A custom skill was created to facilitate this workflow, available on GitHub, accompanied by a 23-minute video walkthrough that applies the method to a real 73-file pull request. The collaborative approach yields more thoughtful feedback for pull request authors instead of superficial critiques.

Detailed Analysis

A Reddit post from developer Jan Hesters is circulating in the r/ClaudeAI community, showcasing a workflow for conducting code reviews collaboratively with Claude rather than relying on AI as either a fully autonomous reviewer or a simple linting tool. The post links to a custom-built "skill" file hosted on GitHub—a structured SKILL.md document that codifies the rules and logic for how Claude should participate in a pull request review—alongside a 23-minute video walkthrough in which Hesters applies the workflow to a real, substantial PR spanning 73 files. The core premise is straightforward: human and AI reviewers each catch different classes of issues, and pairing them produces a more thorough, nuanced review than either could achieve independently, while also transforming the feedback given to PR authors from a scattershot list of nitpicks into more considered, dialogue-driven questions.

This development reflects a broader shift in how developers are operationalizing Claude and similar coding-focused LLMs within real engineering workflows, moving beyond ad hoc prompting toward reusable, documented "skills" or agents with defined scope and behavior. Anthropic's own investment in Claude Code and agentic coding tools has encouraged exactly this kind of community experimentation, where practitioners build and share custom configurations, prompts, and skill definitions that formalize how Claude should behave in specific technical contexts—here, structured PR discussion rather than freeform code generation. The fact that the skill is published on GitHub as an open artifact, rather than described only in prose, signals a maturing ecosystem where reproducible AI workflows are treated similarly to open-source tooling: version-controlled, forkable, and improvable by others.

The significance of this particular use case—code review—lies in its high-stakes, judgment-intensive nature. Unlike code generation, where output can be tested and iterated quickly, review requires weighing tradeoffs, understanding intent, catching subtle logic errors, and communicating diplomatically with the author. Positioning Claude as a collaborative second reviewer rather than a replacement addresses a common anxiety in AI-assisted development: that automation will either miss critical nuance or overwhelm authors with pedantic, context-blind comments. By explicitly designing the interaction so that human and AI reviewers challenge and supplement each other, Hesters' workflow attempts to preserve the human judgment and mentorship qualities valued in traditional code review while adding the AI's tirelessness and pattern-recognition strengths for large diffs.

More broadly, this fits into a growing trend of developers publishing "meta-workflows" for AI coding assistants—skills, system prompts, and agent configurations that turn Claude into a specialized team member for particular software engineering functions (testing, refactoring, security auditing, and now review). As Claude Code and comparable agentic tools become embedded in everyday engineering practice, the community-driven production of these shared, inspectable workflows is likely to become as influential as the underlying model capabilities themselves, shaping norms around how much autonomy AI should have in gatekeeping code quality versus augmenting human reviewers' judgment.

Read original article →