git-diff
Installation
SKILL.md
git-diff (sub-skill)
Direct shell invocation that returns the current git diff as text.
Replaces sub-agent sub-Agent steps that just shell out to
git diff — order-of-magnitude faster (no LLM round-trip).
Modes
mode (with.mode) |
behaviour |
|---|---|
cached_fallback_worktree |
git diff --cached HEAD; falls back to git diff HEAD if staged diff is empty. Default. |
cached |
git diff --cached HEAD only |
worktree |
git diff HEAD only |
staged_files |
git diff --cached --name-only (path list) |