What problem does it solve?
This Skill helps you diagnose why an application, database, or frontend is slow and guides you to systematically improve performance instead of guessing.
Core Features & Use Cases
- Profiling to locate hotspots: CPU, memory, I/O, and database profiling workflows to pinpoint where time and resources are spent.
- Bottleneck pattern detection: identify common issues like N+1 queries, unbounded operations, synchronous blocking, and excessive allocations.
- Targeted optimization playbook: concrete techniques for database tuning (indexes, EXPLAIN), caching strategies, memory optimization, and frontend/API performance improvements.
Use case example: When p95 API latency rises after a new feature, use the profiling workflow to confirm whether the bottleneck is slow queries, blocking I/O, or inefficient allocation patterns, then apply the smallest safe change and verify with measurements.
Quick Start
Ask an AI assistant to optimize your system performance by creating a measurement-first profiling plan, identifying the most likely bottleneck category from your symptoms, and recommending one concrete change to test next.