audit

audit is a skill for Claude Code from jeremylongshore/tons-of-skills-marketplace. It costs 84 tokens per session (6,554 once invoked), scanned A, original, MIT.

A code-review workflow that examines recent changes for quality, adherence to requirements, security, and performance. It uses several review levels and can offer to plan fixes when problems are found.

In plain words
What is it for?
Reviewing a code diff, pull request, or recent implementation; checking it against a specification; and identifying issues that may need correction.
Why use it?
It helps surface defects and risks before changes are merged or released. It also separates review findings from the later decision to apply fixes.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool; mentions Claude Code; mentions Codex.

Part of the hyperflow plugin — 28 skills, 22 agents shipped together

Good fit Reviewing a code diff, pull request, or recent implementation; checking it against a specification; and identifying issues that may need correction.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jeremylongshore/tons-of-skills-marketplace/audit
About the project

Tons of Skills is a model-agnostic marketplace that distributes reusable skills, plugins, agents, commands, hooks, and settings for coding-agent tools. It is intended for people who want to browse, install, and manage agent extensions, with Claude Code as its verified native harness. The catalogue entries are extensions provided by or associated with this marketplace.

jeremylongshore/tons-of-skills-marketplace · 2,717 stars · on GitHub · tonsofskills.com

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.

Any agent
npx skills add jeremylongshore/tons-of-skills-marketplace --skill audit
Clone the repo
git clone --depth 1 https://github.com/jeremylongshore/tons-of-skills-marketplace

Made for: Claude Code.

Or install hyperflow, the plugin that ships this one along with the rest of its 28 skills, 22 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/jeremylongshore/tons-of-skills-marketplace/audit/github.svg)](https://agentmods.dev/skills/jeremylongshore/tons-of-skills-marketplace/audit)
Your own site
<a href="https://agentmods.dev/skills/jeremylongshore/tons-of-skills-marketplace/audit"><img src="https://agentmods.dev/badge/skills/jeremylongshore/tons-of-skills-marketplace/audit/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/jeremylongshore/tons-of-skills-marketplace/audit"><img src="https://agentmods.dev/badge/skills/jeremylongshore/tons-of-skills-marketplace/audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 84 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,554 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 151
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
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.1 $0.00084 $0.06554
Opus 5 $0.00042 $0.03277
Sonnet 5 $0.00017 $0.01311
Haiku 4.5 $0.00008 $0.00655

Measured 13d ago against content hash d8bc0bf29b7c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

audit 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 13d 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.

plugins/ai-agency/hyperflow/skills/audit/SKILL.md · 409 lines

How it starts

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

Audit

Multi-level code review. All agents inherit the session model. Reviewers bold-labeled; Workers plain.

This skill exercises Layer 3 (Orchestrator) and Layer 9 (Security). After the review prints, a fix gate asks the user whether to apply the findings — on Yes, audit auto-invokes /hyperflow:plan with the findings as the spec, which then chains to /hyperflow:dispatch.

Iron Rules

Failure recovery (DOCTRINE rule 14). Worker errors, malformed output, NEEDS_REVISION verdicts, and gate failures in every Step follow the canonical policy in skills/hyperflow/failure-recovery.md. Audit-specific exception: a failed Reviewer at L1/L2 escalates to an L3+ Reviewer at the same severity level rather than aborting — audit exists to catch issues, so a Reviewer failure is best resolved by a more thorough Reviewer, not by stopping the chain.

Per-Step Agent Map (DOCTRINE rule 12)

Step Sub-phase Workers Reviewers Notes
1 — Resolve scope Mechanical decision (exempt)
2 — Gather context 2a — Surface mapping Searcher × 2 (glob + import-graph) Reviewer Parallel
2 — Gather context 2b — Semantic indexing Searcher × 2 (type-system + symbol-graph) Reviewer Parallel
2 — Gather context 2c — Convention scan Searcher × 1 (test patterns + lint config) Reviewer Justified single-angle
2 — Gather context 2d — Aggregate coverage gate Reviewer verifies aggregate coverage Standalone coverage gate
3 — Review 3a — L1+L2 (syntax/format/naming) Domain specialist Reviewer × 2 (file groups, surface-matched) + Reviewer aggregates Parallel pair dispatched as the matching domain specialists
3 — Review 3b — L3 (integration/security) Reviewer × 2 — backend-reviewer + security-reviewer/vulnerability-reviewer + Reviewer aggregates Parallel pair; security specialists web-research-first
3 — Review 3c — L4+L5 (perf/scale/a11y/UX) Reviewer × 2 — performance-reviewer + accessibility-reviewer + Reviewer aggregates Parallel pair dispatched as the matching specialists
4 — Findings synthesis 4a — Critical findings Writer × 2 (evidence probe + impact analysis) Reviewer Parallel
4 — Findings synthesis 4b — Important findings Writer × 2 (root-cause probe + fix-path analysis) Reviewer Parallel
4 — Findings synthesis 4c — Suggestions + observations Writer × 2 (pattern analysis + praise identification) Reviewer Parallel
4 — Findings synthesis 4d — Memory feedback Writer × 1 (anti-pattern curation) Reviewer (dedup + compaction validation) Atomic Worker→Reviewer; runs after 4a/4b/4c complete; with compaction pass when triggered
5 — Severity reconciliation Reviewer reconciles severity labels from Step 3 sub-phases Atomic-exempt per DOCTRINE 12.2.8 — reads existing Step 3 labels; no Workers needed
6 — Fix gate AskUserQuestion only (exempt — structural gate)

Read the full file on GitHub · 409 lines

Files

What ships with it

7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 13d ago First seen · 409 lines · 84 tokens per session scan A d8bc0bf29b7c

Subscribe to this mod's changes

audit is a skill published in the GitHub repository jeremylongshore/tons-of-skills-marketplace (2,717 stars, last pushed today), licensed MIT. It adds 84 tokens to every session and 6,554 once invoked, about $0.0004 per session on Opus 5. 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-30.

Related

Other skills, from other repositories

loop-converge

Author and optionally direct-launch a two-node loop-graph run whose North Star is code convergence — delete unused code, merge duplicates, reuse, slim. Use when the user invokes /loop-converge, or asks to loop on dead code, duplication, unused exports, DRY cleanup, or merging twin implementations. Starts the owner…

levi-qiao/longgraph-skill · 110 tokens

dos-verify-done-claims

Before accepting an agent's 'done / shipped / fixed' claim, verify it against ground truth (git ancestry + the commit's own diff) using the DOS kernel's dos verify and dos commit-audit — never the agent's own narration.

anthony-chaudhary/dos-kernel · 61 tokens

coding

Use when five specialized coding agents (linter, perf, refactor, security, test) that enforce quality gates across the development lifecycle. From lint enforcement through performance profiling, refactoring, security auditing, and test coverage. Use when working with coding agents.

oyi77/1ai-skills · 54 tokens

dotnet-best-practices

Ensure .NET/C# code follows maintainable, modern best practices. Use when reviewing or improving C# code, solution structure, async patterns, dependency injection, or testability.

PracticalSwan/agent-skills · 43 tokens

deep-security-audit

Multi-agent deep security audit — 6 expert personas (pentester, architect, code auditor, supply chain, data privacy, forensics) + CISO synthesis + optional fix implementation.

swDomass/AI_orchestrator · 41 tokens

dev-loop

Research → Execute → Dual-Review Loop (Code Quality + Issue Resolution) bis beide Reviews bestanden.

swDomass/AI_orchestrator · 22 tokens