hf.diff-sanity

A read-only check of the current Git branch changes. Git is a tool for tracking code revisions, and a branch is a separate line of work.

In plain words
What is it for?
Use it after implementing changes to inspect the diff and report each suspected problem with its file and line.
Why use it?
It catches common mistakes before review or commit, such as accidental deletions, debug code, missing imports, secrets, and simple logic errors.

Command for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/t-rav/hydraflow/hf.diff-sanity
Clone the repo
git clone --depth 1 https://github.com/T-rav/hydraflow

Made for: Claude Code.

Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 410 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.00410
Opus 5 $0.00000 $0.00205
Sonnet 5 $0.00000 $0.00082
Haiku 4.5 $0.00000 $0.00041

Measured 3d ago against content hash bec006a7fe31, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

hf.diff-sanity scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/commands/hf.diff-sanity.md · 52 lines

What it actually says

Diff Sanity Check

Review the current branch diff for common implementation mistakes before committing. This is a read-only check — it does not modify files.

When to Use

  • After implementing changes, before committing
  • As a pre-review sanity pass
  • When you want a quick check for accidental mistakes

Instructions

  1. Get the diff of changes on the current branch:

    git diff origin/main...HEAD
    

    If that's empty, fall back to git diff (unstaged) or git diff --cached (staged).

  2. Review the diff for these problems:

    • Accidental deletions — unrelated code removed that should not have been
    • Leftover debug codeprint(), console.log(), debugger, breakpoint(), commented-out code
    • Missing imports — new symbols referenced but not imported; removed code with stale imports
    • Scope creep — files changed that are unrelated to the issue
    • Hardcoded secrets or credentials — API keys, tokens, passwords in the diff
    • Broken string literals — unclosed quotes, malformed f-strings
    • Obvious logic errors — inverted conditions, off-by-one, unreachable code after return
  3. For each problem found, note the file path, line, and description.

  4. Produce structured output:

If all checks pass:

DIFF_SANITY_RESULT: OK
SUMMARY: No issues found

If problems are found:

DIFF_SANITY_RESULT: RETRY
SUMMARY: <comma-separated list of problem categories found>
FINDINGS:
- <file:line — description>

Important

  • Do NOT modify any files. This is a read-only review.
  • Focus on objective mistakes, not style preferences.
  • If the diff is too large (>15,000 chars), summarize by file and focus on the riskiest changes.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 52 lines · 0 tokens per session scan A bec006a7fe31

Subscribe to this mod's changes

hf.diff-sanity is a command published in the GitHub repository T-rav/hydraflow (5 stars, last pushed 3d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 410 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.