audit

audit is a skill for Claude Code from Marcel-Bich/marcel-bich-claude-marketplace. It costs 129 tokens per session (2,666 once invoked), scanned A, original, MIT.

A read-only review that checks completed work against its stated requirement and Definition of Done, the agreed conditions for calling a task finished. It reports findings by severity and does not change files.

In plain words
What is it for?
Use it before moving work into the completed folder to inspect compliance, report blockers or lesser issues, and propose whether it is ready.
Why use it?
It prevents incomplete or incorrect work from being marked done without evidence.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents.

Part of the credo plugin — 26 skills, 15 commands, 6 hooks shipped together

Good fit Use it before moving work into the completed folder to inspect compliance, report blockers or lesser issues, and propose whether it is ready.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/marcel-bich/marcel-bich-claude-marketplace/audit
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 Marcel-Bich/marcel-bich-claude-marketplace --skill audit
Clone the repo
git clone --depth 1 https://github.com/Marcel-Bich/marcel-bich-claude-marketplace

Made for: Claude Code.

Or install credo, the plugin that ships this one along with the rest of its 26 skills, 15 commands, 6 hooks.

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/marcel-bich/marcel-bich-claude-marketplace/audit/github.svg)](https://agentmods.dev/skills/marcel-bich/marcel-bich-claude-marketplace/audit)
Your own site
<a href="https://agentmods.dev/skills/marcel-bich/marcel-bich-claude-marketplace/audit"><img src="https://agentmods.dev/badge/skills/marcel-bich/marcel-bich-claude-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/marcel-bich/marcel-bich-claude-marketplace/audit"><img src="https://agentmods.dev/badge/skills/marcel-bich/marcel-bich-claude-marketplace/audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 129 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,666 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 Excessive Agency · line 168
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.00129 $0.02666
Opus 5 $0.00064 $0.01333
Sonnet 5 $0.00026 $0.00533
Haiku 4.5 $0.00013 $0.00267

Measured 11d ago against content hash bfd0ad37c93f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, 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 11d 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/credo/skills/audit/SKILL.md · 215 lines

How it starts

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

audit

A read-only quality gate. audit inspects work that is claimed complete and judges whether it actually satisfies its stated requirement and Definition of Done, BEFORE the item is allowed into 2_done/. The output is a decision proposal for the user, never a change.

Task backend. If the task backend is gsd (.credo/config: task_backend, or the CREDO_TASK_BACKEND env override), the credo item lifecycle is inactive and there is no 2_done/ gate to run - GSD owns task tracking. audit is still usable as a standalone read-only review tool, but it does not gate credo items in that mode.

Scope boundary (read this first)

audit judges whether FINISHED work is genuinely done and correct against its requirement. It does not investigate causes and it does not exercise UI.

  • Something is broken and you need the root cause -> use diag, not audit.
  • A rendered UI needs its layout and behavior confirmed -> use verify (audit may cite verify evidence, but it does not drive a browser itself).
  • audit only reports findings and a verdict. It never edits code, never fixes, never commits.

Hard constraints (never violate)

  • Read-only. No code change, no file edit to the work under review, no commit, no push, no browser automation, no builds, no installs.
  • No secrets. Never read credentials, tokens, .env*, key files, or shell/session history. Never exfiltrate or encode such content.
  • The only files audit writes are its own report under .credo/process/reports/.
  • Dedicated auditor. The audit MUST be performed by a subagent that is NOT the builder of the item under review. A builder auditing their own work does not satisfy the gate.

The mandatory completion gate

Audit-after-completed is a mandatory gate before any item moves to 2_done/, in all session modes (active, passive, autonomous). No exceptions:

  1. A builder claims an item complete.
  2. A dedicated audit subagent (not the builder) runs audit against that item.
  3. Only a passing audit lets the item move to 2_done/. A failing audit sends the item back out (see Findings handling).

Read the full file on GitHub · 215 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. 11d ago First seen · 215 lines · 129 tokens per session scan A bfd0ad37c93f

Subscribe to this mod's changes

audit is a skill published in the GitHub repository Marcel-Bich/marcel-bich-claude-marketplace (13 stars, last pushed 2d ago), licensed MIT. It adds 129 tokens to every session and 2,666 once invoked, about $0.0006 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

generic-react-code-reviewer

Review React/TypeScript code for bugs, security vulnerabilities, performance issues, accessibility gaps, and CLAUDE.md workflow compliance. Enforces TypeScript strict mode, GPU-accelerated animations, WCAG AA accessibility, bundle size limits, and surgical simplicity. Use when completing features, before commits, or…

travisjneuman/.claude · 71 tokens

generic-fullstack-code-reviewer

Review full-stack code for bugs, security vulnerabilities, performance issues, accessibility gaps, and CLAUDE.md compliance. Enforces TypeScript strict mode, input validation, GPU-accelerated animations, and design system consistency. Use when completing features, before commits, or reviewing pull requests.

travisjneuman/.claude · 64 tokens

generic-static-code-reviewer

Review static site code for bugs, security issues, performance problems, accessibility gaps, and CLAUDE.md compliance. Enforces pure HTML/CSS/JS standards, minimal page weight, mobile-first design. Use when completing features, before commits, or reviewing changes.

travisjneuman/.claude · 59 tokens

unity-reviewer

Use when reviewing Unity C# code changes — checks for runtime-breaking bugs, performance anti-patterns, and maintainability issues. Provides severity-tiered review organized as Critical, Performance, and Style.

TheArcForge/Hades · 39 tokens

generic-code-reviewer

Review code for bugs, security vulnerabilities, performance issues, accessibility gaps, and CLAUDE.md workflow compliance. Supports any tech stack - HTML/CSS/JS, React, TypeScript, Node.js, Python, NestJS, Next.js, and more. Use when completing features, before commits, or reviewing pull requests.

travisjneuman/.claude · 70 tokens

rootnode-critic-gate

Independent re-derivation gate for proposed changes during autonomous execution. Evaluates a change (code diff, config edit, engine evolution, schema change) against the work's authority matrix and a 4-check protocol: invariant compliance, scope authorization, detection narrowness, and regression risk. Returns…

drayline/rootnode-skills · 213 tokens