Table of content
Detect and resolve performance bottlenecks
Installation
npx claude-plugins install @jeremylongshore/claude-code-plugins-plus/bottleneck-detector
Contents
Folders: commands, skills
Files: LICENSE, README.md
Documentation
Detect and resolve performance bottlenecks across your application stack.
Installation
/plugin install bottleneck-detector@claude-code-plugins-plus
Usage
/detect-bottlenecks
Features
- Multi-layer bottleneck detection (CPU, memory, I/O, database)
- Severity-based prioritization
- Root cause analysis
- Remediation strategies with code examples
- Prevention recommendations
License
MIT
Included Skills
This plugin includes 1 skill definition:
detecting-performance-bottlenecks
|
View skill definition
Bottleneck Detector
This skill provides automated assistance for bottleneck detector tasks.
Overview
This skill empowers Claude to identify and address performance bottlenecks across different layers of an application. By pinpointing performance issues in CPU, memory, I/O, and database operations, it assists in optimizing resource utilization and improving overall application speed and responsiveness.
How It Works
- Architecture Analysis: Claude analyzes the application’s architecture and data flow to understand potential bottlenecks.
- Bottleneck Identification: The plugin identifies bottlenecks across CPU, memory, I/O, database, lock contention, and resource exhaustion.
- Remediation Suggestions: Claude provides remediation strategies with code examples to resolve the identified bottlenecks.
When to Use This Skill
This skill activates when you need to:
- Diagnose slow application performance.
- Optimize resource usage (CPU, memory, I/O, database).
- Proactively prevent performance issues.
Examples
Example 1: Diagnosing Slow Database Queries
User request: “detect bottlenecks in my database queries”
The skill will:
- Analyze database query performance and identify slow-running queries.
- Suggest optimizations like indexing or query rewriting to improve database performance.
Example 2: Identifying Memory Leaks
User request: “analyze performance and find memory leaks”
The skill will:
- Profile memory usage patterns to identi
…(truncated)