Skip to content
Development
Command

/performance-bottlenecks

Identify and resolve performance bottlenecks in your development workflow.

From plugin
open-code-review
32998 skills132 agents98 commands2 MCP
Install
$ npx -y skills add spencermarx/open-code-review --agent claude-code

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/performance-bottlenecks

Context preview

What this command does when you run it.

Identify and resolve performance bottlenecks in your development workflow.

Command definition

performance-bottlenecks.md

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

Tool: mcp__claude-flow__task_results
Parameters: {"taskId": "task-123", "format": "detailed"}

Result includes:
{
  "bottlenecks": [
    {
      "type": "coordination",
      "severity": "high",
      "description": "Single agent used for complex task",
      "recommendation": "Spawn specialized agents for parallel work"
    }
  ],
  "improvements": [
    {
      "area": "execution_time",
      "suggestion": "Use parallel task execution",
      "expectedImprovement": "30-50% time reduction"
    }
  ]
}

Continuous Optimization

The system learns from each task to prevent future bottlenecks!

Ships withopen-code-review

AI-powered multi-agent code review. Simulates a customizable team of Engineers performing code review with built-in discourse.

Get the whole plugin, auto-invoked
Stats
329
Stars
0
Views
27
Forks
Active
Maintenance
TypeScript
Language
Apache-2.0
License
11d ago
Last commit
6mo ago
Created

Repo: spencermarx/open-code-review