performance-review
Installation
SKILL.md
Performance review
Use this skill for performance regressions or optimization work.
Workflow
- Identify the slow path and user impact.
- Separate frontend, backend, database, network, and infrastructure causes.
- Look for measurement before optimization.
- Prefer targeted fixes over broad rewrites.
- Check for regressions in correctness and security.
- Recommend verification commands or benchmarks.
Review areas
- Frontend rendering, bundle size, loading states, and client caching.
- Backend algorithmic cost, IO, caching, and concurrency.
- Database query plans, indexes, N+1 queries, and migrations.
- External APIs, retries, rate limits, and timeouts.