wong2/diffx

diffx-start-review

Start a code review session by launching the diffx server and opening the browser UI.

소스 보기
원본 Skill 문서

원본 저장소의 제목, 예시, 코드, 표, 링크, 이미지를 유지해 표시합니다.

Start diffx Review

Launch the diffx server so the user can review their git changes in a browser-based UI and leave inline comments.

What to do

1. Launch diffx

Run diffx in the background. By default it shows all working tree changes (staged + unstaged + untracked).

bash
diffx

Common variations — use these when the context calls for it:

bash
diffx -- --staged          # Only staged changes
diffx -- HEAD~3            # Last 3 commits
diffx -- main..HEAD        # Current branch vs main
diffx -p 8080             # Custom port (default: random available port)

Anything after -- is passed directly to git diff, so any valid git diff arguments work.

Important: Run diffx in the background using the Bash tool with run_in_background: true, so the server stays alive while the user reviews.

2. Tell the user

After launching, tell the user:

diffx is running. Review your changes in the browser and leave inline comments. When you're done, come back here and run /diffx-finish-review.

Keep it brief.