audit
Check whether what I said in this session is backed by what I actually did — did the tests I reported as passing really run, was an expected value quietly…
Add up every Claude Code session on this machine and report how often an agent said the tests passed and how often anything actually ran them. Reads the local transcripts under ~/.claude/projects and prints a coverage count plus any findings. Use when the user asks about their
$ npx -y skills add sjh9714/red-handed --skill history --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/historyContext preview
The summary Claude sees to decide when to auto-load this skill.
Add up every Claude Code session on this machine and report how often an agent said the tests passed and how often anything actually ran them. Reads the local transcripts under ~/.claude/projects and prints a coverage count plus any findings. Use when the user asks about their
name: history description: "Add up every Claude Code session on this machine and report how often an agent said the tests passed and how often anything actually ran them. Reads the local transcripts under ~/.claude/projects and prints a coverage count plus any findings. Use when the user asks about their whole history rather than one session, or asks how often their agent has claimed something it did not verify." allowed-tools: - Bash(npx --yes @jinhyuk9714/red-handed@latest stats *) - Bash(npx --yes @jinhyuk9714/red-handed@latest stats)
npx --yes @jinhyuk9714/red-handed@latest stats
Add `--lang ko` for a Korean report, `--since 30` to limit it to the last 30 days, `--json` to read the numbers rather than quote them, `--no-cache` to recompute from scratch.
The first run reads every transcript; later runs are near-instant because the results are cached in `~/.red-handed/cache.json` (mode 0600, on this machine only, relocatable with `RED_HANDED_HOME`).
The headline is the coverage count, which everyone gets whether or not anything was found:
184 sessions. Your agent said "tests pass" 84 times.
79 a test ran first
5 no test ran in that session at allQuote it as printed. Then note how many findings there were, if any.
Two things to keep straight when the user reads their own number:
cannot read — a project's own runner, a browser check — counts as verification it did not see. That is why those land at `SUSPICIOUS` rather than `CAUGHT`.
tool is built to miss things rather than to accuse wrongly.
Audits what your Claude Code agent did against what it said — reads session logs and git, cites evidence, calls no model
Repo: sjh9714/red-handed