hf.audit-code

A command that reviews an entire repository for code-quality problems and creates GitHub issues for its findings. It checks Python source and test files for problems such as dead code, duplication, complex logic, weak error handling, and type-safety gaps.

In plain words
What is it for?
Use it to audit a Python codebase, identify maintainability risks, and create labeled GitHub issues for the problems it detects.
Why use it?
It turns a broad, manual code review into a tracked list of issues assigned in the project repository. This makes quality problems easier to find and process.

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.audit-code
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 6,814 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.06814
Opus 5 $0.00000 $0.03407
Sonnet 5 $0.00000 $0.01363
Haiku 4.5 $0.00000 $0.00681

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

Security

Grade A, and why

hf.audit-code scanned grade A with 1 finding 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 2d 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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

- Do they have timeouts? (subprocess.run without timeout, asyncio without timeout)
.claude/commands/hf.audit-code.md · 535 lines

How it starts

The opening of the file, as written. The whole thing — 535 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Code Quality Audit

Run a comprehensive code quality audit across the entire repo. Dynamically analyzes source code for dead code, complexity, duplication, error handling gaps, type safety issues, class cohesion, and method size. Creates GitHub issues for findings so HydraFlow can process them.

Instructions

  1. Resolve configuration before doing anything else:

    • Run echo "$HYDRAFLOW_GITHUB_REPO" — if set, use it as the target repo (e.g., owner/repo). If empty, run git remote get-url origin and extract the owner/repo slug (strip https://github.com/ prefix and .git suffix).
    • Run echo "$HYDRAFLOW_GITHUB_ASSIGNEE" — if set, use it as the issue assignee. If empty, extract the owner from the repo slug (the part before /).
    • Use hydraflow-find as the label for created issues.
    • Store resolved values as $REPO, $ASSIGNEE, $LABEL.
  2. Discover project structure:

    • Use Glob to find all *.py source files, excluding .venv/, venv/, __pycache__/, node_modules/, dist/, build/.
    • Separate into SOURCE files (production code) and TEST files (anything under tests/ or matching test_*.py).
    • Count total source files, total lines, and identify the main modules.
  3. Launch agents in parallel using Task with run_in_background: true and subagent_type: "general-purpose":

    • Agent 1: Dead code & unused exports — Finds unreachable code, unused functions, unused imports, and stale modules.
    • Agent 2: Method size, class cohesion & duplication — Enforces small methods, single-concept classes, and DRY.
    • Agent 3: Error handling & robustness — Finds bare excepts, swallowed errors, missing error paths, and fragile patterns.
    • Agent 4: Type safety & API consistency — Finds missing type annotations, Any overuse, inconsistent return types, and public API gaps.
    • Agent 5: Convention drift & over-engineering — Reads docs/wiki/gotchas.md (or CLAUDE.md fallback) at runtime and sweeps the codebase for documented avoided patterns plus over-engineering accumulation.

Read the full file on GitHub · 535 lines

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. 2d ago First seen · 535 lines · 0 tokens per session scan A f47e57e543f5

Subscribe to this mod's changes

hf.audit-code is a command published in the GitHub repository T-rav/hydraflow (5 stars, last pushed 2d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 6,814 tokens. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.