Tool git delta
One-command harness distribution for coding agents — a versioned YAML catalog projected into agent instructions, skills, and deterministic git gates.
npx -y skills add niksavis/basicly --skill tool-git-deltaAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 25 days oldThe repository was created 25 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.5 KB, 318 tokens by cl100k_base, as published. Nobody here has run it
<!-- Generated by `basicly skills-build` from skill.yaml. Do not edit; edit the source. -->
tool-git-delta
When To Use
- Improve readability of git patch review in terminal.
- Present staged and unstaged diffs with syntax awareness.
- Configure git pager output for ongoing review workflows.
Trusted Commands
git config --global core.pager delta
git config --global interactive.diffFilter 'delta --color-only'
git diff
git diff --staged
git show HEAD
Safe Defaults
- Keep plain git fallback available for non-interactive logs.
- Review both staged and unstaged diffs before commit.
- Prefer local overrides before changing global defaults in shared environments.
Common Pitfalls
- Package name may be
git-deltawhile binary isdelta. - Without core pager config, delta is not used automatically.
- Styled output is for review, not machine parsing.
Output Interpretation
- Diff semantics are still git patch semantics with enhanced rendering.
- Side-by-side and line-number rendering help review speed.
Why It Matters For Agents
- Makes code review output significantly easier to summarize and verify.
- Improves human confidence in patch intent before merge.
Repo Conventions
- Use delta to improve review quality, not to replace tests.
- Preserve focused commits with minimal unrelated changes.
Trigger Examples
- Should trigger: "Show me a readable diff of staged changes."
- Should trigger: "Review this patch visually before commit."
- Should not trigger: "Install missing Python dependencies."
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.