CtrlK
BlogDocsLog inGet started
Tessl Logo

git-diff

Capture the current git diff (staged, working-tree, or staged file list) as text. Direct shell call for workflows that need repository diffs without an LLM agent loop.

66

Quality

81%

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Passed

No findings from the security scan

SKILL.md
Quality
Evals
Security

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_worktreegit diff --cached HEAD; falls back to git diff HEAD if staged diff is empty. Default.
cachedgit diff --cached HEAD only
worktreegit diff HEAD only
staged_filesgit diff --cached --name-only (path list)

Output

  • Non-empty diff: raw unified diff text on stdout.
  • Empty (no changes): exits 0 with the literal NO_DIFF on stdout so downstream meta-step prompts can short-circuit reviewers.
  • git not a repo / git error: exit 1, stderr carries the cause.

Fallback

If this skill is unavailable, callers should spawn sub-agent with a git diff task — same output, ~10× the latency.

Repository
TokenRhythm/opensquilla
Last updated
First committed

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.