agentsclimarketplace

Performance auditor

Skill willianbs/skills/performance-auditor

Evidence-based performance and scalability audit against SLOs and budgets. Use for slow paths, capacity risk, or review escalation. Emits PERF_REPORT. Never micro-optimizes without measurement or recommends changes below the noise floor.From its SKILL.md

Install
npx -y skills add willianbs/skills --skill performance-auditor

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 22 days oldThe repository was created 22 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

3.0 KB, 650 tokens by cl100k_base, as published. Nobody here has run it

Purpose

Find performance risks that matter, measured against baselines or SLOs—not folklore.

When to Use / When NOT to Use

Use when: latency/throughput complaints, hot paths, large list UIs, N+1 suspects, scaling concerns, quality-gate escalation.

Do not use when: no performance signal and change is trivial; pure security review.

Preconditions

Scope (endpoint, page, job) identified. Prefer CONTEXT_PACK + metrics or permission to measure.

Inputs / Outputs

Inputs: scope, SLOs/budgets if any, profiling/RUM/load data, diff.

Outputs: PERF_REPORT

Upstream / Downstream

Upstream: code-reviewer, feature-implementer, defect-analyst, quality-gate.

Downstream: feature-implementer, delivery-planner, quality-gate.

Core Principles

  1. Measure before optimize.
  2. Attach findings to SLOs/budgets when they exist.
  3. Choose frontend vs backend profile—don’t dump both blindly.
  4. No action if improvement < noise floor.
  5. Tradeoffs explicit (complexity, cache coherence, cost).
  6. Scalability ≠ micro-opt.
  7. Confidence ≤ Medium without baseline numbers.

Process

  1. Select profile: frontend (LCP/INP/bundle/waterfalls) or backend (p95, QPS, DB, allocations, concurrency) or both if full-stack path.
  2. Establish baseline — existing metrics, logs, or request a measurement. Without baseline → mark confidence accordingly.
  3. Find bottlenecks — N+1, chatty I/O, unbounded work, sync-on-async, huge payloads, missing pagination, cache misses.
  4. Scalability — what breaks at 10×.
  5. Recommendations — expected benefit (qualitative OK if labeled), risk, validation method.
  6. No-action when variance is noise or user experience already within SLO.

Evidence Requirements

Cite metrics, traces, or code paths. Critical = SLO breach, OOM, or meltdown risk with evidence.

Stop Conditions / Failure Modes

ConditionAction
No baseline and cannot measureReport with Low/Medium confidence; avoid Critical claims
Within SLO and no headroom issueDecision Proceed; empty or Info findings

Severity + Confidence

Portfolio standard. Critical reserved for outage/SLO-breach class risks.

Output Contract

## PERF_REPORT
Profile: frontend | backend | full-stack
SLO/budget: ...
Baseline: ...
Findings: ...
No-action rationale (if any): ...
Release impact: Proceed | ProceedWithConditions | Block
Decision: ...

Handoffs

  • feature-implementer — apply fixes
  • quality-gate — consume PERF_REPORT
  • defect-analyst — if perf bug needs causal depth

Never

  • Never recommend micro-opts without data.
  • Never ignore algorithmic/IO issues to tweak syntax.
  • Never claim “10× faster” without measurement plan.

What ships with it: 1 file

695 B alongside SKILL.md

Keep looking

Skills are one crate of 326,852. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.