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.

跳到安装

来源信息

仓库
ruvnet/ruflo
最近来源活动
2026年7月29日 19:08
检测到的 SKILL.md 语言
英语
星标
73,010
分支
8,665

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
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
在 GitHub 查看