analysis performance-bottlenecks command (monomind)
Scanned 9/10/2026
Install to Claude Code
npx -y skills add monoes/monomind --skill monomind-monomind-analysis-performance-bottlenecks --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Monomind Monomind Analysis Performance Bottlenecks?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/monoes-monomind-monomind-analysis-performance-bottlenecks)More formats (shields.io, HTML) on the badges page.
---
description: analysis performance-bottlenecks command (monomind)
type: flow
name: monomind-monomind-analysis-performance-bottlenecks
---
# Performance Bottleneck Analysis
## Purpose
Identify and resolve performance bottlenecks in your development workflow.
## Automated Analysis
### 1. Real-time Detection
The post-task hook automatically analyzes:
- Execution time vs. complexity
- Agent utilization rates
- Resource constraints
- Operation patterns
### 2. Common Bottlenecks
**Time Bottlenecks:**
- Tasks taking > 5 minutes
- Sequential operations that could parallelize
- Redundant file operations
**Coordination Bottlenecks:**
- Single agent for complex tasks
- Unbalanced agent workloads
- Poor topology selection
**Resource Bottlenecks:**
- High operation count (> 100)
- Memory constraints
- I/O limitations
### 3. Improvement Suggestions
```javascript
mcp__monomind__performance_bottleneck({
component: "swarm", // optional — omit to scan all
threshold: 20, // alert threshold %
deep: true // full analysis
})
// Result includes:
{
"bottlenecks": [
{
"component": "cpu",
"severity": "high",
"message": "CPU load at 82%",
"threshold": 75
}
]
}
```
## Continuous Optimization
The system learns from each task to prevent future bottlenecks!Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!