whiteboard: Skill for Claude Code

.claude/skills/audit-triage/SKILL.md

audit-triage is a skill for Claude Code from kamiazya/whiteboard. It costs 99 tokens per session (1,909 once invoked), scanned A, original, Apache-2.0.

A recurring codebase-health audit procedure that searches for problems a single code-change review may miss, such as unfinished features, duplicated contracts, architectural debt, missing tests, and broken clean-clone setup.

In plain words
What is it for?
It is for running focused or whole-repository audits across selected health dimensions, verifying findings, and turning confirmed problems into tasks or temporary issues.
Why use it?
It finds standing problems that can remain hidden even when individual changes build and pass review.

Skill for Claude Code

Written for Claude Code: SessionStart hook event. Also seen: reads .claude/ paths.

This is kamiazya/whiteboard's own configuration. It tells Claude Code how to work on whiteboard itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything whiteboard configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is node .claude/scripts/record-audit.mjs audit-triage.

Part of the whiteboard plugin — 22 skills, 18 agents, 3 hooks shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to kamiazya/whiteboard. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/kamiazya/whiteboard/main/.claude/skills/audit-triage/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/kamiazya/whiteboard

Made for: Claude Code.

Or install whiteboard, the plugin that ships this one along with the rest of its 22 skills, 18 agents, 3 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-triage

README.md
[![agentmods](https://agentmods.dev/badge/skills/kamiazya/whiteboard/audit-triage/github.svg)](https://agentmods.dev/skills/kamiazya/whiteboard/audit-triage)
Your own site
<a href="https://agentmods.dev/skills/kamiazya/whiteboard/audit-triage"><img src="https://agentmods.dev/badge/skills/kamiazya/whiteboard/audit-triage/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-triage

Your own site · 80×15
<a href="https://agentmods.dev/skills/kamiazya/whiteboard/audit-triage"><img src="https://agentmods.dev/badge/skills/kamiazya/whiteboard/audit-triage.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 99 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,909 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 pass 7 Sept 2026
SkillSpector: 1 finding, up to low

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 →

  • low Excessive Agency · line 49
    Skill's behavior or capabilities extend beyond its stated purpose. Scope creep allows an agent to perform actions unrelated to its documented functionality, increasing the attack surface.
    Fix: Limit the skill's scope to its documented purpose. Remove instructions that enable the agent to perform actions outside its stated functionality.
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.00099 $0.01909
Opus 5 $0.00049 $0.00955
Sonnet 5 $0.00020 $0.00382
Haiku 4.5 $0.00010 $0.00191

Measured 2d ago against content hash 1cfc625108ca, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

audit-triage 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 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.

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/skills/audit-triage/SKILL.md · 106 lines

How it starts

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

Audit-Triage (whiteboard)

The per-diff review workflow only sees a change. Standing problems — a feature that builds but isn't wired (the Cloudflare-shell class), a god module, a contract defined twice, a critical path with no test, onboarding that breaks on a clean clone — never show up in a diff. audit-triage is the recurring sweep that finds them and turns them into tickets.

Run it

Workflow({ scriptPath: '.claude/workflows/audit-triage.workflow.mjs',
           args: { scope?, dimensions?, cwd?, auditorAgent?, verifyFloor? } })
  • scope: free-text area to focus (e.g. "apps/web and its migration") or omit for the whole repo. Narrow the scope for a faster, deeper pass on a hot area.
  • dimensions: defaults to the six below. Pass a subset to focus, or supply {name, content} objects to inject externalized criteria (see below). Legacy plain-string dimensions are still supported.
  • auditorAgent: defaults to Explore (read-only, always registered). The tuned codebase-auditor agent is NOT registered until a session reload (see the workflow-authoring skill's mid-session-agent-registration gotcha) — pass auditorAgent: 'codebase-auditor' only after a reload.
  • verifyFloor: lowest severity that gets an adversarial verify pass (default HIGH). Verification kills false positives — the audit favors recall, verify restores precision.

It returns triaged.items[] (read-only), plus coverage-honesty fields: dimensionsAudited (dimensions that actually produced a result), failedDimensions (a dimension's auditor agent returned nothing — a LOW coverage-gap advisory finding is also injected into triaged so a silent gap can't hide), and notApplicable (an auditor explicitly opted out via notApplicable:true because the dimension doesn't apply to this scope). Check failedDimensions before trusting a clean run. The workflow cannot create Tasks — the integrator (main session) files the survivors.

The six dimensions

wiring-gaps (looks-done-isn't) · architecture (seams/coupling) · maintainability (size/dup/dead-code) · contract-drift (hand-written-vs-Zod, casts) · test-gaps (untested critical paths, skips) · dev-experience (clean-clone friction).

Read the full file on GitHub · 106 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. 2d ago Changed 1cfc625108ca
  2. 7d ago Changed · +13 lines 49a354e91d6f
  3. 12d ago First seen · 93 lines · 99 tokens per session scan A 7c5bea25fda5

Subscribe to this mod's changes

audit-triage is a skill published in the GitHub repository kamiazya/whiteboard (6 stars, last pushed today), licensed Apache-2.0. It adds 99 tokens to every session and 1,909 once invoked, about $0.0005 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-31.