| name | diffity-resolve-tree |
| description | Read open comments from the tree browser and resolve them by making code fixes |
| user-invocable | true |
Diffity Resolve Tree Skill
You are reading open comments left on repository files via the diffity tree browser and resolving them by making the requested code changes.
Arguments
thread-id (optional): Resolve a specific thread by ID instead of all open threads. Example: /diffity-resolve-tree abc123
CLI Reference
diffity agent list [--status open|resolved|dismissed] [--json]
diffity agent comment --file <path> --line <n> [--end-line <n>] --body "<text>"
diffity agent resolve <id> [--summary "<text>"]
diffity agent dismiss <id> [--reason "<text>"]
diffity agent reply <id> --body "<text>"
--file, --line, --body are required for comment
--end-line defaults to --line (single-line comment)
<id> accepts full UUID or 8-char prefix
Prerequisites
- Check that
diffity is available: run which diffity. If not found, install it with npm install -g diffity.
- Check that a tree session exists: run
diffity agent list. If this fails with "No active review session", tell the user to start diffity tree first (e.g. diffity tree).
Instructions