Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

performance-profiler性能分析器

Agent Skill

performance-profiler 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

376

周安装

16

GitHub Stars

2

下载量

132
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:performance-profiler(性能分析器)
来源仓库:https://github.com/wyattowalsh/agents
仓库路径:skills/performance-profiler
安装命令:
npx skills add https://github.com/wyattowalsh/agents --skill performance-profiler
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/wyattowalsh/agents --skill performance-profiler

简介

用于根据关键词或任务场景快速定位候选结果。

  • 适合在需要检索相关信息时使用。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装命令:npx skills add https://github.com/wyattowalsh/agents --skill performance-profiler。
  • 安装前建议确认是否会触发联网或命令执行。

SKILL.md

Performance Profiler

Analysis-based performance review. Every recommendation grounded in evidence. 6-mode pipeline: Analyze, Profile, Cache, Benchmark, Regression, Leak-Patterns.

Scope: Performance analysis and recommendations only. NOT for running profilers, executing load tests, infrastructure monitoring, or actual memory leak detection. This skill provides analysis-based guidance, not measurements.

Canonical Vocabulary

Use these terms exactly throughout all modes:

TermDefinition
complexityBig-O algorithmic classification of a function or code path
hotspotCode region with disproportionate resource consumption (time or memory)
bottleneckSystem constraint limiting overall throughput
profiler outputTextual data from cProfile, py-spy, perf, or similar tools pasted by user
cache strategyEviction policy + write policy + invalidation approach for a caching layer
benchmark skeletonTemplate code for measuring function performance with proper methodology
regression riskLikelihood that a code change degrades performance, scored LOW/MEDIUM/HIGH/CRITICAL
anti-patternKnown performance-harmful code pattern (N+1, unbounded allocation, etc.)
evidenceConcrete proof: AST analysis, profiler data, code pattern match, or external reference
recommendationActionable optimization suggestion with expected impact and trade-offs
flame graphHierarchical visualization of call stack sampling data
wall timeElapsed real time (includes I/O waits) vs CPU time (compute only)

Dispatch

$ARGUMENTSMode
analyze <file/function>Algorithmic complexity analysis, Big-O review
profile <data>Interpret textual profiler output (cProfile, py-spy, perf)
cache <system>Caching strategy design (LRU/LFU/TTL/write-through/write-back)
benchmark <code>Benchmark design and methodology review
regression <diff>Performance regression risk assessment from code diff
leak-patternsCommon memory leak pattern scan (NOT actual detection)
EmptyShow mode menu with examples for each mode

Mode 1: Analyze

Algorithmic complexity analysis for files or functions.

Analyze Step 1: Scan

Run the complexity estimator script:

uv run python skills/performance-profiler/scripts/complexity-estimator.py <path>

Parse JSON output. If script fails, perform manual AST-level analysis.

Analyze Step 2: Classify

For each function in scope:

  1. Identify loop nesting depth, recursion patterns, data structure operations
  2. Map to Big-O classification using references/complexity-patterns.md
  3. Score hotspot risk: nesting depth * call frequency * data size sensitivity
  4. Flag functions with O(n^2) or worse in hot paths

Analyze Step 3: Report

Present findings as a table:

FunctionEstimated ComplexityEvidenceHotspot RiskRecommendation

Include trade-off analysis for each recommendation.

Mode 2: Profile

Interpret textual profiler output pasted by the user.

Profile Step 1: Parse

Run the profile parser script on user-provided data:

uv run python skills/performance-profiler/scripts/profile-parser.py --input <file>

If data is inline, save to temp file first. Parse JSON output.

Profile Step 2: Identify Hotspots

From parsed data:

  1. Rank functions by cumulative time (top 10)
  2. Identify functions with high call count but low per-call time (overhead candidates)
  3. Identify functions with low call count but high per-call time (optimization candidates)
  4. Check for I/O-bound vs CPU-bound patterns (wall time vs CPU time ratio)

Profile Step 3: Recommend

For each hotspot, provide:

  • Root cause hypothesis with evidence from the profiler data
  • Optimization approach with expected impact range
  • Trade-offs and risks of the optimization
  • Reference to relevant anti-patterns from references/anti-patterns.md

Mode 3: Cache

Design caching strategies for a described system.

Cache Step 1: Understand Access Patterns

Ask about or infer from code:

  1. Read/write ratio
  2. Data freshness requirements (TTL tolerance)
  3. Cache size constraints
  4. Consistency requirements (eventual vs strong)
  5. Eviction pressure (working set vs cache capacity)

Cache Step 2: Design Strategy

Use references/caching-strategies.md decision tree:

FactorLRULFUTTLWrite-ThroughWrite-Back
Read-heavy, stable working setGoodBestOK----
Write-heavy------SafeFast
Strict freshness----BestBestRisky
Memory-constrainedBestGoodOK----

Cache Step 3: Specify

Deliver: eviction policy, write policy, invalidation strategy, warm-up approach, monitoring recommendations. Include capacity planning formula.

Mode 4: Benchmark

Design benchmarks and review methodology.

Benchmark Step 1: Generate Skeleton

Run the benchmark designer script:

uv run python skills/performance-profiler/scripts/benchmark-designer.py --function <signature> --language <lang>

Parse JSON output for setup code, benchmark code, iterations, warmup.

Benchmark Step 2: Review Methodology

Validate against benchmark best practices:

  1. Warmup period sufficient to stabilize JIT/caches
  2. Iteration count provides statistical significance
  3. Measurement excludes setup/teardown overhead
  4. Environment controlled (no interference from other processes)
  5. Results include variance/percentiles, not just mean

Benchmark Step 3: Deliver

Provide complete benchmark code with methodology notes, expected metrics, and interpretation guide.

Mode 5: Regression

Assess performance regression risk from a code diff.

Regression Step 1: Collect Diff

If path provided, read the diff. If git range provided, run git diff. Identify changed functions and their call sites.

Regression Step 2: Assess Risk

For each changed function:

Risk FactorWeightCheck
Complexity increase3xLoop nesting added, algorithm changed
Hot path change3xFunction called in request/render path
Data structure change2xCollection type or size assumptions changed
I/O pattern change2xNew network/disk calls, removed batching
Memory allocation1xNew allocations in loops, larger buffers

Risk score = sum of (weight * severity). Map to LOW/MEDIUM/HIGH/CRITICAL.

Regression Step 3: Report

Present regression risk matrix with:

  • Per-function risk assessment with evidence
  • Aggregate risk score for the diff
  • Recommended benchmark targets before merging
  • Specific measurements to validate (what to profile and where)

Mode 6: Leak-Patterns

Scan for common memory leak patterns. Static analysis only -- NOT actual leak detection.

Leak Step 1: Scan

Read target files and check against patterns in references/leak-patterns.md:

  • Event listener accumulation without cleanup
  • Closure-captured references preventing GC
  • Growing collections without bounds (unbounded caches, append-only lists)
  • Circular references in reference-counted languages
  • Resource handles not closed (files, connections, cursors)
  • Global state accumulation

Leak Step 2: Classify

For each potential leak pattern found:

PatternLanguageSeverityFalse Positive Risk

Leak Step 3: Report

Present findings with code citations, explain why each pattern risks leaking, and suggest fixes. Acknowledge that static analysis has high false positive rates -- recommend actual profiling tools for confirmation.

Scaling Strategy

ScopeStrategy
Single functionDirect analysis, inline report
Single file (< 500 LOC)Script-assisted analysis, structured report
Multiple files / moduleParallel subagents per file, consolidated report
Full codebasePrioritize entry points and hot paths, sample-based analysis

Reference Files

Load ONE reference at a time. Do not preload all references into context.

FileContentRead When
references/complexity-patterns.mdCode pattern to Big-O mapping with examplesMode 1 (Analyze)
references/caching-strategies.mdCaching decision tree, eviction policies, trade-offsMode 3 (Cache)
references/anti-patterns.mdPerformance anti-patterns catalog (N+1, unbounded alloc, etc.)Mode 2 (Profile), Mode 5 (Regression), Mode 6 (Leak)
references/leak-patterns.mdMemory leak patterns by language (Python, JS, Go, Java)Mode 6 (Leak-Patterns)
references/profiler-guide.mdProfiler output interpretation, flame graph readingMode 2 (Profile)
references/benchmark-methodology.mdBenchmark design best practices, statistical methodsMode 4 (Benchmark)
ScriptWhen to Run
scripts/complexity-estimator.pyMode 1 — static complexity analysis via AST
scripts/profile-parser.pyMode 2 — parse cProfile/pstats textual output to JSON
scripts/benchmark-designer.pyMode 4 — generate benchmark skeleton from function signature
TemplateWhen to Render
templates/dashboard.htmlAfter any mode — inject results JSON into data tag

Data Files

FileContent
data/complexity-patterns.jsonCode pattern to Big-O mapping (machine-readable)
data/caching-strategies.jsonCaching decision tree (machine-readable)
data/anti-patterns.jsonPerformance anti-patterns catalog (machine-readable)

Critical Rules

  1. Never claim to measure performance — this skill provides analysis, not measurement
  2. Every recommendation must include trade-offs — no "just do X" advice
  3. Always acknowledge uncertainty in complexity estimates — static analysis has limits
  4. Never recommend premature optimization — confirm the code is actually on a hot path first
  5. Profiler output interpretation must cite specific data points, not general principles
  6. Cache strategy recommendations must address invalidation — "cache invalidation is hard" is not a strategy
  7. Benchmark designs must include warmup, statistical significance, and variance reporting
  8. Regression risk assessment must trace to specific code changes, not general concerns
  9. Leak pattern scanning is pattern-matching only — always recommend actual profiling for confirmation
  10. Load ONE reference file at a time — do not preload all references into context
  11. Present findings with evidence before suggesting fixes (approval gate)
  12. Anti-pattern findings require code citation [file:line] — no generic warnings

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.94%
按下载量换算45

Claude

29.19%
按下载量换算39

Cursor

19.32%
按下载量换算26

Gemini CLI

9.36%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills