/difit-dev
Ask the user for a code review through difit after code changes in this repository, using `pnpm run dev`.
$ npx -y skills add yoshiko-pg/difit --skill difit-dev --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/difit-dev
Context preview
The summary Claude sees to decide when to auto-load this skill.
Ask the user for a code review through difit after code changes in this repository, using `pnpm run dev`.
SKILL.md
difit-dev.SKILL.mdname: difit-dev
description: Ask the user for a code review through difit after code changes in this repository, using `pnpm run dev`.
metadata:
internal: true
Difit Dev
Overview
This skill requests a code review from the user using `pnpm run dev` in this repository. Running `pnpm run dev` once is sufficient to start the review request workflow. Do not open a browser yourself, verify that a browser connected, or restart the server just to keep it alive. If the user leaves review comments, they are printed to stdout when the difit command exits. When review comments are returned, continue work and address them. If the server is shut down without comments, treat it as "no review comments were provided." Restarting it is unnecessary. Treat `Client disconnected, shutting down server...` without comments as a successful no-comments outcome. Manual verification of whether the page launched correctly is also unnecessary.
Commands
- Review uncommitted changes before commit: `pnpm run dev .`
- Review the HEAD commit: `pnpm run dev`
- Review staging area changes: `pnpm run dev staged`
- Review unstaged changes only: `pnpm run dev working`
Basic Usage:
pnpm run dev <target> # View single commit diff. ex: pnpm run dev 6f4a9b7
pnpm run dev <target> [compare-with] # Compare two commits/branches. ex: pnpm run dev feature main
Optional Startup Comments
If there is something you want to tell the user when difit opens, attach it as startup comments with `--comment`. This is useful for review findings, explanations, and any context the user should see directly on the diff.
pnpm run dev <target> [compare-with] \
--comment '{"type":"thread","filePath":"src/foobar.ts","position":{"side":"old","line":102},"body":"line 1\nline 2"}' \
--comment '{"type":"thread","filePath":"src/example.ts","position":{"side":"new","line":{"start":36,"end":39}},"body":"Range comment for L36-L39"}'- Do not insert `--` after `pnpm run dev` in this repository. `pnpm run dev -- ...` breaks argument parsing here.
- Use `type: "thread"` for each comment.
- Write comment bodies in the language the user is using.
- Use `position.side: "new"` for lines that exist on the target side of the diff.
- Use `position.side: "old"` for lines that exist only on the deleted side.
- Use range comments for issues that span multiple lines.
- Never copy secrets, tokens, passwords, API keys, private keys, or other credential-like material from the diff into `--comment` bodies or any command-line arguments.
Including Untracked Files
For uncommitted changes, if files not yet added to git should also appear in the diff, add `--include-untracked`.
pnpm run dev . --include-untracked
Constraints
Can only be used inside this Git-managed repository.
Read more
name: difit-dev description: Ask the user for a code review through difit after code changes in this repository, using `pnpm run dev`. metadata: internal: true
Difit Dev
Overview
This skill requests a code review from the user using `pnpm run dev` in this repository. Running `pnpm run dev` once is sufficient to start the review request workflow. Do not open a browser yourself, verify that a browser connected, or restart the server just to keep it alive. If the user leaves review comments, they are printed to stdout when the difit command exits. When review comments are returned, continue work and address them. If the server is shut down without comments, treat it as "no review comments were provided." Restarting it is unnecessary. Treat `Client disconnected, shutting down server...` without comments as a successful no-comments outcome. Manual verification of whether the page launched correctly is also unnecessary.
Commands
- Review uncommitted changes before commit: `pnpm run dev .`
- Review the HEAD commit: `pnpm run dev`
- Review staging area changes: `pnpm run dev staged`
- Review unstaged changes only: `pnpm run dev working`
Basic Usage:
pnpm run dev <target> # View single commit diff. ex: pnpm run dev 6f4a9b7 pnpm run dev <target> [compare-with] # Compare two commits/branches. ex: pnpm run dev feature main
Optional Startup Comments
If there is something you want to tell the user when difit opens, attach it as startup comments with `--comment`. This is useful for review findings, explanations, and any context the user should see directly on the diff.
pnpm run dev <target> [compare-with] \
--comment '{"type":"thread","filePath":"src/foobar.ts","position":{"side":"old","line":102},"body":"line 1\nline 2"}' \
--comment '{"type":"thread","filePath":"src/example.ts","position":{"side":"new","line":{"start":36,"end":39}},"body":"Range comment for L36-L39"}'- Do not insert `--` after `pnpm run dev` in this repository. `pnpm run dev -- ...` breaks argument parsing here.
- Use `type: "thread"` for each comment.
- Write comment bodies in the language the user is using.
- Use `position.side: "new"` for lines that exist on the target side of the diff.
- Use `position.side: "old"` for lines that exist only on the deleted side.
- Use range comments for issues that span multiple lines.
- Never copy secrets, tokens, passwords, API keys, private keys, or other credential-like material from the diff into `--comment` bodies or any command-line arguments.
Including Untracked Files
For uncommitted changes, if files not yet added to git should also appear in the diff, add `--include-untracked`.
pnpm run dev . --include-untracked
Constraints
Can only be used inside this Git-managed repository.
A lightweight command-line tool that spins up a local web server to display Git commit diffs in a GitHub-like Files changed view
Repo: yoshiko-pg/difit
Other skills on difit.
- /difit-review
A skill for reviewing a specific diff and showing the findings as comments inside difit (the diff viewer). Use it to review branch diffs, commit diffs, or GitHub PRs, then preload findings or code explanations into difit with `--comment` before launching it for the user.
Open skill - /difit-review
A skill for reviewing a specific diff and showing the findings as comments inside difit (the diff viewer). Use it to review branch diffs, commit diffs, or GitHub PRs, then preload findings or code explanations into difit with `--comment` before launching it for the user.
Open skill - /difit
Ask the user for a code review through difit after code changes.
Open skill

