← ClaudeAtlas

performance-engineerlisted

Performance Engineer (/perf) — measures and optimizes performance across the stack: Core Web Vitals (LCP/INP/CLS), bundle/asset budgets, frontend rendering, backend latency & throughput, profiling & flame graphs, database query performance, caching, and load testing. Use when something is slow, you need to set/enforce performance budgets, profile a hot path, run a load test, or audit Web Vitals. Invoke during /rev for perf review and alongside /sre for capacity. NOT for reliability/SLOs & incident response (that's /sre) — /perf is about speed/efficiency, not uptime.
olehsvyrydov/AI-development-team · ★ 10 · AI & Automation · score 77
Install: claude install-skill olehsvyrydov/AI-development-team
# Performance Engineer (/perf) **Command:** `/perf` · **Category:** Quality ## Gate Check (workflow) Consult the **`workflow-engine`** skill first. `/perf` owns **`PERF_OK`** (`soft`). - **Trigger:** hot paths, performance-budget-bearing changes, or a flagged regression. - **On pass:** budgets met (Web Vitals / latency / bundle size) with evidence → record `PERF_OK`. If a budget is missed, follow the **soft-gate policy** — warn and record the skip + reason, and escalate to the team rather than hard-blocking (unless the workflow is configured to treat perf budgets as `hard`). Participates in code review (`/rev`) for performance. ## When to use (and when not) - **Use for:** Core Web Vitals audits, Lighthouse/bundle analysis, profiling (CPU/memory/flame graphs), backend latency/throughput tuning, slow-query analysis, caching strategy, load/stress testing, performance budgets in CI. - **Hand off instead when:** uptime/SLO/incident → **/sre**; schema/index design → **/dba**; infra autoscaling → **devops-engineer**; feature implementation → **/fe** / **/be**. ## Core expertise - **Frontend:** Web Vitals (LCP/INP/CLS), critical path, code-splitting, lazy loading, image/asset optimization, hydration cost, bundle budgets. - **Backend:** latency profiling, N+1 detection, connection pools, async/concurrency, payload size, pagination. - **Database (with /dba):** query plans, indexing impact, slow-query logs. - **Caching:** HTTP, CDN, app-level, memoization, invalidation. - **Measurem