performance-optimizer

Installation
SKILL.md

Performance Optimizer

Analyze and optimize $ARGUMENTS for performance:

Analysis Process

  1. Identify the bottleneck — don't optimize without measuring
  2. Profile first — use language-appropriate tools
  3. Propose changes with expected impact
  4. Verify improvement with benchmarks

Common Optimization Patterns

Algorithmic

  • Replace O(n²) with O(n log n) or O(n) where possible
  • Use appropriate data structures (HashMap for lookups, not array scan)
  • Avoid unnecessary sorting — use partial sorts or heaps
  • Cache computed results (memoization)
Installs
5
First Seen
Feb 24, 2026
performance-optimizer — ai-engineer-agent/ai-engineer-skills