performance-profiler
✓Analysieren Sie Code-Leistungsmuster und identifizieren Sie Optimierungsmöglichkeiten.
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)); }
Analysieren Sie Code-Leistungsmuster und identifizieren Sie Optimierungsmöglichkeiten. Quelle: curiouslearner/devkit.
Fakten (zitierbereit)
Stabile Felder und Befehle für KI/Such-Zitate.
- Installationsbefehl
npx skills add https://github.com/curiouslearner/devkit --skill performance-profiler- Quelle
- curiouslearner/devkit
- Kategorie
- </>Entwicklung
- Verifiziert
- ✓
- Erstes Auftreten
- 2026-02-01
- Aktualisiert
- 2026-02-18
Schnelle Antworten
Was ist performance-profiler?
Analysieren Sie Code-Leistungsmuster und identifizieren Sie Optimierungsmöglichkeiten. Quelle: curiouslearner/devkit.
Wie installiere ich performance-profiler?
Öffnen Sie Ihr Terminal oder Kommandozeilen-Tool (Terminal, iTerm, Windows Terminal, etc.) Kopieren Sie diesen Befehl und führen Sie ihn aus: npx skills add https://github.com/curiouslearner/devkit --skill performance-profiler Nach der Installation wird der Skill automatisch in Ihrer KI-Programmierumgebung konfiguriert und ist bereit zur Verwendung in Claude Code oder Cursor
Wo ist das Quell-Repository?
https://github.com/curiouslearner/devkit
Details
- Kategorie
- </>Entwicklung
- Quelle
- skills.sh
- Erstes Auftreten
- 2026-02-01