Self-review your own code changes using a visual diff viewer. Opens a GitHub-style web UI where you can add comments on changed lines. Comments are returned to Claude for action.
Opens a visual diff UI for self-reviewing code changes and collecting actionable feedback comments.
npx claudepluginhub bendrucker/claudeThis skill is limited to using the following tools:
Review your own code changes before committing or requesting peer review.
bunx difit $ARGUMENTS
Common arguments:
staged — Staged changes onlyworking — Unstaged changes only@ main — Compare HEAD with main branchPipe a git diff for full control over the diff content:
git diff $ARGUMENTS | bunx difit
Common arguments:
HEAD — All uncommitted changes (staged + unstaged)--merge-base main — Changes since diverging from mainUse stdin mode for all uncommitted changes (git diff HEAD) or when using git diff flags (e.g., --merge-base, revision ranges).
difit with the target diffComments are output in this format:
📝 Comments from review session:
==================================================
path/to/file.ts:L42
Comment text here
=====
path/to/other.ts:L10-L20
Comment on a range of lines
==================================================
Total comments: 2
For each comment:
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.