Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计提醒

performance-engineer性能工程师

Agent Skill

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

总安装

3,881

周安装

165

GitHub Stars

76

下载量

1,360
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill performance-engineer

简介

提供深度性能分析与系统调优专长,聚焦高延迟、低吞吐量等瓶颈问题诊断。

  • 适用于 CPU/内存剖析、负载测试及内核级参数调优,支持 eBPF 和 Flamegraph 工具链。
  • 可制定 profiling 策略并根据瓶颈类型选择语言级或系统级分析方案。
  • 通过 GitHub 仓库安装并使用 npx 命令调用,可能涉及命令执行与文件读写权限。
  • 建议提前确认维护状态与权限范围,避免误操作影响线上服务稳定性。

SKILL.md

Performance Engineer

Purpose

Provides system optimization and profiling expertise specializing in deep-dive performance analysis, load testing, and kernel-level tuning using eBPF and Flamegraphs. Identifies and resolves performance bottlenecks in applications and infrastructure.

When to Use

  • Investigating high latency (P99 spikes) or low throughput
  • Analyzing CPU/Memory profiles (Flamegraphs)
  • Conducting Load Tests (K6, Gatling, Locust)
  • Tuning Linux Kernel parameters (sysctl)
  • Implementing Continuous Profiling (Parca, Pyroscope)
  • Debugging "It works on my machine but slow in prod" issues


2. Decision Framework

Profiling Strategy

What is the bottleneck?
│
├─ **CPU High?**
│  ├─ User Space? → **Language Profiler** (pprof, async-profiler)
│  └─ Kernel Space? → **perf / eBPF** (System calls, Context switches)
│
├─ **Memory High?**
│  ├─ Leak? → **Heap Dump Analysis** (Eclipse MAT, heaptrack)
│  └─ Fragmentation? → **Allocator tuning** (jemalloc, tcmalloc)
│
├─ **I/O Wait?**
│  ├─ Disk? → **iostat / biotop**
│  └─ Network? → **tcpdump / Wireshark**
│
└─ **Latency (Wait Time)?**
   └─ Distributed? → **Tracing** (OpenTelemetry, Jaeger)

Load Testing Tools

ToolLanguageBest For
K6JSDeveloper-friendly, CI/CD integration.
GatlingScala/JavaHigh concurrency, complex scenarios.
LocustPythonRapid prototyping, code-based tests.
Wrk2CRaw HTTP throughput benchmarking (simple).

Optimization Hierarchy

  1. Algorithm: O(n^2) → O(n log n). Biggest wins.
  2. Architecture: Caching, Async processing.
  3. Code/Language: Memory allocation, loop unrolling.
  4. System/Kernel: TCP stack tuning, CPU affinity.

Red Flags → Escalate to database-optimizer:

  • "Slow performance" turns out to be a single SQL query missing an index
  • Database locks/deadlocks causing application stalls
  • Disk I/O saturation on the DB server


3. Core Workflows

Workflow 1: CPU Profiling with Flamegraphs

Goal: Identify which function is consuming 80% CPU.

Steps:

  1. Capture Profile (Linux perf) # Record stack traces at 99Hz for 30 seconds perf record -F 99 -a -g -- sleep 30
  2. Generate Flamegraph perf script > out.perf./stackcollapse-perf.pl out.perf > out.folded./flamegraph.pl out.folded > profile.svg
  3. Analysis

- Open profile.svg in browser. - Look for wide towers (functions taking time). - *Example:* json_parse is 40% width → Optimize JSON handling.



Workflow 3: Interaction to Next Paint (INP)

Goal: Improve Frontend responsiveness (Core Web Vital).

Steps:

  1. Measure

- Use Chrome DevTools Performance tab. - Look for "Long Tasks" (Red blocks > 50ms).

  1. Identify

- Is it hydration? Event handlers? - *Example:* A click handler forcing a synchronous layout recalculation.

  1. Optimize

- Yield to Main Thread: await new Promise(r => setTimeout(r, 0)) or scheduler.postTask(). - Web Workers: Move heavy logic off-thread.



Workflow 5: Interaction to Next Paint (INP) Optimization

Goal: Fix "Laggy Click" (INP > 200ms) on a React button.

Steps:

  1. Identify Interaction

- Use React DevTools Profiler (Interaction Tracing). - Find the click handler duration.

  1. Break Up Long Tasks async function handleClick() {// 1. UI Update (Immediate) setLoading(true); // 2. Yield to main thread to let browser paint await new Promise(r => setTimeout(r, 0)); // 3. Heavy Logic await heavyCalculation(); setLoading(false);}
  2. Verify

- Use Web Vitals extension. Check if INP drops below 200ms.



5. Anti-Patterns & Gotchas

❌ Anti-Pattern 1: Premature Optimization

What it looks like:

  • Replacing a readable map() with a complex for loop because "it's faster" without measuring.

Why it fails:

  • Wasted dev time.
  • Code becomes unreadable.
  • Usually negligible impact compared to I/O.

Correct approach:

  • Measure First: Only optimize hot paths identified by a profiler.

❌ Anti-Pattern 2: Testing "localhost" vs Production

What it looks like:

  • "It handles 10k req/s on my MacBook."

Why it fails:

  • Network latency (0ms on localhost).
  • Database dataset size (tiny on local).
  • Cloud limits (CPU credits, I/O bursts).

Correct approach:

  • Test in a Staging Environment that mirrors Prod capacity (or a scaled-down ratio).

❌ Anti-Pattern 3: Ignoring Tail Latency (Averages)

What it looks like:

  • "Average latency is 200ms, we are fine."

Why it fails:

  • P99 could be 10 seconds. 1% of users are suffering.
  • In microservices, tail latencies multiply.

Correct approach:

  • Always measure P50, P95, and P99. Optimize for P99.


Examples

Example 1: CPU Performance Optimization Using Flamegraphs

Scenario: Production API experiencing 80% CPU utilization causing latency spikes.

Investigation Approach:

  1. Profile Collection: Used perf to capture CPU stack traces
  2. Flamegraph Generation: Created visualization of CPU usage
  3. Analysis: Identified hot functions consuming most CPU
  4. Optimization: Targeted the top 3 functions

Key Findings:

FunctionCPU %Optimization Action
json_serialize35%Switch to binary format
crypto_hash25%Batch hashing operations
regex_match20%Pre-compile patterns

Results:

  • CPU utilization: 80% → 35%
  • P99 latency: 1.2s → 150ms
  • Throughput: 500 RPS → 2,000 RPS

Example 2: Distributed Tracing for Microservices Latency

Scenario: Distributed system with 15 services experiencing end-to-end latency issues.

Investigation Approach:

  1. Trace Collection: Deployed OpenTelemetry collectors
  2. Latency Analysis: Identified service with highest latency contribution
  3. Dependency Analysis: Mapped service dependencies and data flows
  4. Root Cause: Database connection pool exhaustion

Trace Analysis:

Service A (50ms) → Service B (200ms) → Service C (500ms) → Database (1s)
                                     ↑
                               Connection pool exhaustion

Resolution:

  • Increased connection pool size
  • Implemented query optimization
  • Added read replicas for heavy queries

Results:

  • End-to-end P99: 2.5s → 300ms
  • Database CPU: 95% → 60%
  • Error rate: 5% → 0.1%

Example 3: Load Testing for Capacity Planning

Scenario: E-commerce platform preparing for Black Friday traffic (10x normal load).

Load Testing Approach:

  1. Test Design: Created realistic user journey scenarios
  2. Test Execution: Gradual ramp-up to target load
  3. Bottleneck Identification: Found breaking points
  4. Capacity Planning: Determined required resources

Load Test Results:

Virtual UsersRPSP95 LatencyError Rate
1,000500150ms0.1%
5,0002,400280ms0.3%
10,0004,800550ms1.2%
15,0006,2001.2s5.8%

Capacity Recommendations:

  • Scale to 12,000 concurrent users
  • Add 3 more application servers
  • Increase database read replicas to 5
  • Implement rate limiting at 10,000 RPS

Best Practices

Profiling and Analysis

  • Measure First: Always profile before optimizing
  • Comprehensive Coverage: Analyze CPU, memory, I/O, and network
  • Production Safe: Use low-overhead profiling in production
  • Regular Baselines: Establish performance baselines for comparison

Load Testing

  • Realistic Scenarios: Model actual user behavior and workflows
  • Progressive Ramp-up: Start low, increase gradually
  • Bottleneck Identification: Find limiting factors systematically
  • Repeatability: Maintain consistent test environments

Performance Optimization

  • Algorithm First: Optimize algorithms before micro-optimizations
  • Caching Strategy: Implement appropriate caching layers
  • Database Optimization: Indexes, queries, connection pooling
  • Resource Management: Efficient allocation and pooling

Monitoring and Observability

  • Comprehensive Metrics: CPU, memory, disk, network, application
  • Distributed Tracing: End-to-end visibility in microservices
  • Alerting: Proactive identification of performance degradation
  • Dashboarding: Real-time visibility into system health

Quality Checklist

Profiling:

  • Symbols: Debug symbols available for accurate stack traces.
  • Overhead: Profiler overhead verified (< 1-2% for production).
  • Scope: Both CPU and Wall-clock time analyzed.
  • Context: Profile includes full request lifecycle.

Load Testing:

  • Scenarios: Realistic user behavior (not just hitting one endpoint).
  • Warmup: System warmed up before measurement (JIT/Caches).
  • Bottleneck: Identified the limiting factor (CPU, DB, Bandwidth).
  • Repeatable: Tests can be run consistently.

Optimization:

  • Validation: Benchmark run *after* fix to confirm improvement.
  • Regression: Ensured optimization didn't break functionality.
  • Documentation: Documented *why* the optimization was done.
  • Monitoring: Added metrics to track optimization impact.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

25.13%
按下载量换算342

OpenCode

22.63%
按下载量换算308

Codex

17.09%
按下载量换算232

Cursor

11.47%
按下载量换算156

Gemini CLI

8.16%
按下载量换算111

windsurf

3.61%
按下载量换算49

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills