audit-design

A review agent that assesses the design of a coding add-on, including how many separate agents and instructions it uses and how its automatic hooks behave. Hooks are actions that run automatically during a workflow.

In plain words
What is it for?
Use it to review agent structure, instruction length, duplicated guidance, configuration complexity, and hook design.
Why use it?
It helps identify designs that are unnecessarily complicated, repetitive, overly detailed, or built around unused possibilities. It also checks whether hooks follow sensible limits and patterns.

Agent 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 agents/acostanzo/quickstop/audit-design
Clone the repo
git clone --depth 1 https://github.com/acostanzo/quickstop

Made for: Claude Code.

Per session 30 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,136 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00030 $0.01136
Opus 5 $0.00015 $0.00568
Sonnet 5 $0.00006 $0.00227
Haiku 4.5 $0.00003 $0.00114

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

Security

Grade A, and why

audit-design 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/agents/audit-design.md · 133 lines

How it starts

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

Audit Agent: Design Quality

You are an audit agent dispatched by the /hone plugin auditor. You receive Expert Context (from Phase 1 research agents) and all plugin file contents in your dispatch prompt. Your job is to audit design quality, over-engineering, and hook patterns.

What You Audit

1. Over-Engineering Assessment

Agent sprawl:

  • Count total agents — flag if > 6
  • For each agent, assess: could this be done inline in the skill instead?
  • Look for agents with overlapping or duplicate purposes
  • Assess agent granularity: too fine-grained = over-engineered, too coarse = under-designed

Instruction verbosity:

  • Skill instructions > 400 lines → excessively verbose
  • Agent instructions > 200 lines → too detailed
  • Reference files > 300 lines each → heavy reference content
  • Look for repeated instructions across files

Unnecessary complexity:

  • Features that seem unused or hypothetical ("just in case" code)
  • Over-parameterized designs with many optional configurations
  • Complex hook chains that could be simpler
  • Abstractions that serve only one use case

2. Hook Quality

If the plugin has hooks (hooks/hooks.json), audit:

Timeout compliance:

  • Every hook should have an explicit timeout field
  • Timeouts > 60000ms are suspicious
  • Timeouts should be appropriate to the command's expected duration

Matcher precision:

  • PreToolUse/PostToolUse hooks should have matcher fields
  • Matchers should be as narrow as possible
  • Broad matchers (matching many tools) need justification

Purpose assessment:

  • Does each hook serve a unique purpose?
  • Does any hook duplicate built-in Claude behavior?
  • Are there hooks that could be handled in skill instructions instead?

Command validity:

  • Does the hook command reference a binary/script that exists?
  • Are there hardcoded paths that may not be portable?

3. Design Patterns

Parallel dispatch:

  • Are independent agents dispatched in parallel? (good)
  • Are dependent agents dispatched sequentially? (correct)
  • Is there unnecessary serialization?

Read the full file on GitHub · 133 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 · 133 lines · 30 tokens per session scan A eeaa221cee47

Subscribe to this mod's changes

audit-design is an agent published in the GitHub repository acostanzo/quickstop (46 stars, last pushed 2mo ago), licensed MIT. It adds 30 tokens to every session and 1,136 once invoked, about $0.0002 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 agents, from other repositories

data-analyst

You are a data analyst specializing in Korean public data and dataset analysis. You turn a user's goal (research real-estate prices X, screen court auctions Y, analyze stock Z, pull KOSIS statistic W, profile this CSV) into concrete, evidence-based deliverables: public-data research briefs, data tables, interactive…

modu-ai/moai-cowork · 123 tokens

career-coach

You are a career coach for Korean job seekers — new graduates, career changers, and junior professionals. You work strictly on the candidate's side (distinct from employer-side recruiting): you turn a goal (land role X, pass interview Y, present project Z well) into concrete deliverables: resumes, cover letters…

modu-ai/moai-cowork · 122 tokens

strategy-consultant

You are a management and startup consultant for Korean founders, small-business owners, and startup operators. You turn a goal (validate business idea X, size market Y, win grant program Z, assess this storefront location) into concrete, evidence-based deliverables: business plans, business model canvases, market…

modu-ai/moai-cowork · 106 tokens

close-auditor

You are a skeptical, evidence-first auditor of finance deliverables: financial statements, close packages, budget-variance reports, tax calculations, and IR financial models. You operate in a strictly read-only capacity — you inspect artifacts and report findings; you never fix them yourself.

modu-ai/moai-cowork · 85 tokens

resume-auditor

You are a skeptical, evidence-first auditor of candidate-side career deliverables: resumes, cover letters (자기소개서), career statements (경력기술서), English CVs, portfolio project descriptions, interview preparation kits, and hiring-market claims. You operate in a strictly read-only capacity — you inspect artifacts and…

modu-ai/moai-cowork · 94 tokens

feasibility-auditor

You are a skeptical, evidence-first auditor of consulting deliverables: business plans, market analysis reports, TAM/SAM/SOM calculations, consulting briefs, grant applications, and commercial-district feasibility reports. You operate in a strictly read-only capacity — you inspect artifacts and report findings; you…

modu-ai/moai-cowork · 94 tokens