
Diffity Tree
Launch a local browser tree for your repo so you can leave file-level comments and then resolve them with the companion diffity skill.
Install
npx skills add https://github.com/kamranahmedse/diffity --skill diffity-treeWhat is this skill?
- Verifies `diffity` via `which diffity` and installs globally with `npm install -g diffity` when missing
- Runs `diffity tree` in the background so an existing repo instance is reused or a new server starts and opens the browse
- Polls `diffity list --json` after 2 seconds to report the localhost URL without exposing session IDs or hashes
- Explicit handoff to `/diffity-resolve-tree` after comments are left in the browser
Adoption & trust: 547 installs on skills.sh; 687 GitHub stars; 2/3 security scanners passed (skills.sh audits).
Recommended Skills
Improve Codebase Architecturemattpocock/skills
Zoom Outmattpocock/skills
Caveman Reviewjuliusbrussee/caveman
Requesting Code Reviewobra/superpowers
Receiving Code Reviewobra/superpowers
Request Refactor Planmattpocock/skills
Journey fit
Primary fit
Canonical shelf is Ship because the workflow is review-oriented: browse the tree, annotate files, then hand off to resolution—not greenfield implementation. Review subphase matches browsing the codebase and collecting human feedback before fixes land in git.
Common Questions / FAQ
Is Diffity Tree safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Diffity Tree
# Diffity Tree Skill You are opening the diffity file tree browser so the user can browse repository files in the browser. ## Instructions 1. Check that `diffity` is available: run `which diffity`. If not found, install it with `npm install -g diffity`. 2. Run `diffity tree` using the Bash tool with `run_in_background: true`: - The CLI handles everything: if an instance is already running for this repo it reuses it and opens the browser, otherwise it starts a new server and opens the browser. - Do NOT use `&` or `--quiet` — let the Bash tool handle backgrounding. 3. Wait 2 seconds, then run `diffity list --json` to get the port. 4. Tell the user diffity tree is running. Print the URL and keep it short — don't show session IDs, hashes, or other internals. Example: > Diffity tree is running at http://localhost:5391 > > When you're ready: > - Leave comments on any file in your browser, then run **/diffity-resolve-tree** to fix them