awesome-performance-audit

awesome-performance-audit is a skill for Claude Code from khasky/awesome-agent-skills. It costs 147 tokens per session (3,522 once invoked), scanned A, original, MIT.

A read-only review of a server, API, worker, or frontend that looks for performance and reliability problems using code, configuration, profiles, and traces. Reliability means continuing to behave correctly during delays, failures, shutdowns, and heavy workloads.

In plain words
What is it for?
Use it to inspect Node.js event-loop usage, streaming and backpressure, memory and CPU diagnostics, production shutdowns and job limits, cross-service retries and circuit breakers, and frontend delivery metrics such as page speed and bundle size.
Why use it?
It replaces guesses about slow or fragile software with evidence about latency, memory use, CPU use, data buffering, timeouts, and service failures. The report identifies problems but does not change the code.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the awesome-agent-skills plugin — 42 skills shipped together

Good fit Use it to inspect Node.js event-loop usage, streaming and backpressure, memory and CPU diagnostics, production shutdowns and job limits, cross-service retries and circuit breakers, and frontend delivery metrics such as page speed and bundle size.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/khasky/awesome-agent-skills/awesome-performance-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 khasky/awesome-agent-skills --skill awesome-performance-audit
Clone the repo
git clone --depth 1 https://github.com/khasky/awesome-agent-skills

Made for: Claude Code.

Or install awesome-agent-skills, the plugin that ships this one along with the rest of its 42 skills.

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 awesome-performance-audit

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/khasky/awesome-agent-skills/awesome-performance-audit"><img src="https://agentmods.dev/badge/skills/khasky/awesome-agent-skills/awesome-performance-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 147 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,522 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
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.00147 $0.03522
Opus 5 $0.00073 $0.01761
Sonnet 5 $0.00029 $0.00704
Haiku 4.5 $0.00015 $0.00352

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

Security

Grade A, and why

awesome-performance-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 4d 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.

skills/awesome-performance-audit/SKILL.md · 142 lines

How it starts

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

Performance Audit

Audit a server, API, or worker for the runtime and reliability failure modes that cause latency, memory, and throughput problems in production — before micro-optimizing random lines. Treats performance as an operational property with auditable evidence (profiles, traces, code paths, config), not a one-time benchmark. Read-only: it reports findings and a verdict; it never rewrites hot paths. Hand the report to the relevant dev workflow to fix.

Measure, don't guess. Every finding cites its artifact — a profile, a GC trace, a heap delta, a code path, a config value. No profile, no number. A slow-looking loop is a lead; confirm it in a flame graph or trace before flagging.

Six audit tracks, run the ones in scope:

  • A. Event-loop discipline (Node.js) — is the loop kept free for short coordination work?
  • B. Streaming and backpressure — is unbounded data streamed, or buffered into RAM?
  • C. Memory and CPU diagnostics — are the signals watched, and is the workflow repeatable?
  • D. Production reliability — timeouts, shutdown, limits, job hygiene.
  • E. Resilience and failure paths — circuit breakers, retry budgets, queue topology, cross-service failure containment.
  • F. Frontend delivery (web) — Core Web Vitals, bundle weight, hydration and render cost.

Scope and method

  1. Establish scope — one endpoint, one job class, or the whole service. Name the workload; perf is meaningless without "under what load".
  2. Gather evidence — CPU profile for hot paths, heap snapshots for growth, GC traces for pressure, request/job correlation to connect symptoms to workloads. Read code paths and config (timeouts, body limits, pool sizes). Persist raw pulls (raw/<target>/<date>/...) before synthesizing so a re-audit can diff.
  3. Measure the tail, not the average — p95/p99/max, not mean. Averages hide the requests that actually hurt.
  4. Score, gate, report — see Output.

Done when: the workload is named, the tail numbers are measured rather than estimated, every track in scope has been walked, and anything that could only be settled under real load is reported as unmeasured.

Read the full file on GitHub · 142 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. 4d ago Changed · +2 lines · -68 tokens per session ad151bcedfe6
  2. 10d ago First seen · 140 lines · 215 tokens per session scan A 8533e3bdbc66

Subscribe to this mod's changes

awesome-performance-audit is a skill published in the GitHub repository khasky/awesome-agent-skills (8 stars, last pushed 2d ago), licensed MIT. It adds 147 tokens to every session and 3,522 once invoked, about $0.0007 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.

Related

Other skills, from other repositories

performance-expert

Backend, database, and infrastructure performance expert covering API response times, query and index optimization, N+1 elimination, caching and background jobs, server profiling, and build/asset delivery. Use when improving API latency, optimizing database queries or indexes, designing a caching layer, moving heavy…

shipshitdev/skills · 94 tokens

error-handling-expert

Expert in error handling patterns, exception management, error responses, logging, and error recovery strategies for React, Next.js, and NestJS applications. Use when implementing error handling, exception filters, error responses, error logging, or recovery strategies.

shipshitdev/skills · 54 tokens

performance-optimization

Optimizes application performance across frontend, backend, queries, and databases. Use when performance requirements exist, when you suspect performance regressions, when Core Web Vitals or load times need improvement, when N+1 query patterns need fixing, or when profiling reveals bottlenecks.

addyosmani/agent-skills · 59 tokens

doubt-driven-development

Subjects every non-trivial decision to a fresh-context adversarial review before it stands. Use when you want every assumption cross-examined before proceeding, when stress-testing a plan for hidden failure modes, when correctness matters more than speed, when working in unfamiliar code, when stakes are high…

addyosmani/agent-skills · 96 tokens

api-and-interface-design

Guides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints, defining type contracts between modules, or establishing boundaries between frontend and backend.

addyosmani/agent-skills · 49 tokens

debugging-and-error-recovery

Guides systematic root-cause debugging. Use when tests fail, builds break, something that worked yesterday broke, behavior doesn't match expectations, or you encounter any unexpected error. Use when you need to figure out what broke and why — a systematic approach to finding and fixing the root cause rather than…

addyosmani/agent-skills · 67 tokens