From Claude Starter Kit
Measures application performance to find bottlenecks and fix N+1 queries, allocation issues, wrong async boundaries, missing indexes/caches, and heavy payloads. Stack-agnostic — profiles then optimizes the hot path.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-starter-kit:performanceThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Core rule: **measure first, optimize later.** Optimization without measurement is a guess; it usually speeds up the
Core rule: measure first, optimize later. Optimization without measurement is a guess; it usually speeds up the wrong place and adds complexity. Stack-agnostic; do a web search when you need the profiling tool/library.
Catalog of common bottlenecks + fixes to consult: references/bottlenecks.md.
npx claudepluginhub byerlikaya/claude-starter-kit --plugin claude-starter-kitGuides performance optimization with measurement-first principles, bottleneck analysis, and tradeoff awareness. Activates on performance-related keywords.
Use when performance is a concern - sluggish pages, slow queries, bloated bundles, high-latency APIs, or whenever someone says "optimize" or "make it faster"
Systematic performance profiling protocol: measure baselines, identify bottlenecks with flamegraphs, and apply targeted optimizations using the Pareto principle.