performance-analysis

Detect bottlenecks and generate performance reports for Claude Flow agent swarms.

11|Updated Jan 20, 2026
One-click install
npx skills add https://github.com/ishandutta2007/claude-agent-orchestration --skill performance-analysis-ishandutta2007
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: performance-analysis
Source: https://github.com/ishandutta2007/claude-agent-orchestration/tree/main/.claude/skills/performance-analysis
Command: npx skills add https://github.com/ishandutta2007/claude-agent-orchestration --skill performance-analysis-ishandutta2007

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Multi-agent AI swarms can suffer from hidden slowdowns in communication, memory access, and task coordination that are hard to diagnose manually. This Skill identifies those bottlenecks, profiles swarm operations, and produces actionable optimization recommendations. ## Core Features & Use Cases - Bottleneck Detection: Analyze communication, processing, memory, and network bottlenecks across agents with configurable thresholds and optional automatic fixes. - Performance Report Generation: Produce executive summaries, metrics tables, and recommendations in JSON, HTML, or Markdown formats for documentation or CI/CD pipelines. - Optimization Recommendations: Apply or suggest fixes such as topology changes, cache warming, concurrency tuning, and priority adjustments. - Use Case: After noticing slow task completion in a swarm, run bottleneck detection over the last 24 hours, export the analysis, and apply automatic fixes to improve throughput by 25-45%. ## Quick Start Ask the AI to detect performance bottlenecks in the current Claude Flow swarm over the past hour and generate a Markdown performance report with optimization recommendations.

Frequently Asked Questions about performance-analysis

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I detect bottlenecks in a Claude Flow swarm?

Run npx claude-flow bottleneck detect to analyze the current swarm over the last hour. Use --swarm-id to target a specific swarm, --time-range for longer periods like 24h or 7d, and --threshold to control detection sensitivity.

How to generate a performance report for agent swarms?

Use npx claude-flow analysis performance-report with a --format option of json, html, or markdown. Add --include-metrics for detailed charts, --compare to benchmark against a previous swarm, and --output to save the report to a file.

Can bottleneck detection fix performance issues automatically?

Yes, adding the --fix flag applies automatic optimizations such as topology changes, cache warming, concurrency tuning, and priority adjustments. Review suggested fixes first and test them in a development environment before applying to production swarms.

What metrics does swarm performance analysis measure?

It measures communication latency, agent utilization rates, task completion times, cache hit rates, memory access patterns, and parallelization efficiency. Results include impact percentages per bottleneck and expected improvement estimates for each recommendation.

Why is my Claude Flow swarm running slowly?

Common causes include single agents handling complex tasks, unbalanced workloads, poor topology selection, and memory cache misses. Run bottleneck detection with a low threshold like 10-15% to surface these issues and get targeted recommendations.

Can performance analysis integrate with CI/CD pipelines?

Yes, export reports in JSON format and run bottleneck detection with --export in GitHub Actions or similar pipelines. You can fail builds when critical bottlenecks exceed defined thresholds and upload reports as build artifacts.