performance-profiler
✓Analyze code performance patterns and identify optimization opportunities.
Installation
SKILL.md
Analyze code performance patterns and identify optimization opportunities.
// Current (slow) function findMatches(items, queries) { return queries.map(q => items.find(i => i.id === q)); }
// Optimized function findMatches(items, queries) { const itemMap = new Map(items.map(i => [i.id, i])); return queries.map(q => itemMap.get(q)); }
Analyze code performance patterns and identify optimization opportunities. Source: curiouslearner/devkit.
Facts (cite-ready)
Stable fields and commands for AI/search citations.
- Install command
npx skills add https://github.com/curiouslearner/devkit --skill performance-profiler- Source
- curiouslearner/devkit
- Category
- </>Dev Tools
- Verified
- ✓
- First Seen
- 2026-02-01
- Updated
- 2026-02-18
Quick answers
What is performance-profiler?
Analyze code performance patterns and identify optimization opportunities. Source: curiouslearner/devkit.
How do I install performance-profiler?
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/curiouslearner/devkit --skill performance-profiler Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor
Where is the source repository?
https://github.com/curiouslearner/devkit
Details
- Category
- </>Dev Tools
- Source
- skills.sh
- First Seen
- 2026-02-01