Skip to main content

performance-analysis

Performance profiling, benchmarking, and optimization. Use when: slow operations, regressions, memory pressure, release validation. Skip when: early prototyping, documentation, configuration-only changes.

Jump to install

Source facts

Repository
ruvnet/ruflo
Last source activity
July 29, 2026 at 19:08
Detected SKILL.md language
English
Stars
73,010
Forks
8,665

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
performance-analysis
description
Performance profiling, benchmarking, and optimization. Use when: slow operations, regressions, memory pressure, release validation. Skip when: early prototyping, documentation, configuration-only changes.
# Performance Analysis Skill ## Purpose Measure before optimizing and preserve reproducible benchmark evidence. ## Commands ### Run Benchmark Suite ```bash npx @claude-flow/cli performance benchmark --suite all ``` ### Profile Code ```bash npx @claude-flow/cli performance profile --target ./src ``` ## Best Practices 1. Capture a baseline before changing code 2. Use identical inputs and environments 3. Report variance, not only the fastest result 4. Re-run correctness tests after optimization
View on GitHub