What problem does it solve?
This Skill eliminates wasted effort on unproven optimizations and slow, resource-heavy applications by teaching evidence-based performance tuning, so you only improve code that actually delivers measurable gains.
Core Features & Use Cases
- Evidence-Based Optimization Workflow: Follow a step-by-step process to measure baselines, identify bottlenecks via profiling, implement single changes, and validate improvements with statistically significant benchmarks.
- Language-Specific Tooling: Access curated guides for C++, Python, Rust, and Java covering profiling tools, benchmark frameworks, and idiomatic optimization patterns for each ecosystem.
- Systematic Performance Analysis: Use the USE method to diagnose resource constraints, apply memory hierarchy best practices to reduce cache misses, and optimize concurrency, database queries, and common code patterns.
- Use Case: For example, if your API has 500ms p99 latency, use this Skill to profile the hot path, identify cache misses or inefficient N+1 queries, and implement validated fixes that reduce latency without hurting code maintainability.
Quick Start
Use the performance skill to profile the attached Python data processing script, identify the top 3 performance bottlenecks, and provide a prioritized list of evidence-based optimizations with expected impact.