Claude-skill-registry difit
Git diff viewer with web UI and AI prompt generation. Use when "difit" is mentioned, or when reviewing diffs/PRs with AI-friendly output.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/difit" ~/.claude/skills/majiayu000-claude-skill-registry-difit && rm -rf "$T"
manifest:
skills/data/difit/SKILL.mdsource content
difit
Web-based Git diff viewer with AI prompt generation. https://github.com/yoshiko-pg/difit
Commands
# Uncommitted changes git diff | bunx difit # Staged changes git diff --staged | bunx difit # Specific commit git show <commit-hash> | bunx difit # Compare branches git diff main..feature | bunx difit # Latest commit git show HEAD | bunx difit
Usage in Claude Code
Run with
run_in_background: true to keep the server running:
git diff | bunx difit # run_in_background: true
Workflow
- Pipe git diff to
(background)bunx difit - Browser opens with diff view
- Click lines to add review comments
- Copy AI prompt with "Copy Prompt" button
- Paste prompt to AI for code review feedback