Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

performance-analysis绩效分析

Agent Skill

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

总安装

198

周安装

8

GitHub Stars

265

下载量

62
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/rsmdt/the-startup --skill performance-analysis

简介

performance-analysis 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前顶部介绍为空,需参考原始 SKILL.md 获取详细功能说明。

SKILL.md

Performance Profiling

When to Use

  • Establishing performance baselines before optimization
  • Diagnosing slow response times, high CPU, or memory issues
  • Identifying bottlenecks in application, database, or infrastructure
  • Planning capacity for expected load increases
  • Validating performance improvements after optimization
  • Creating performance budgets for new features

Core Methodology

The Golden Rule: Measure First

Never optimize based on assumptions. Follow this order:

  1. Measure - Establish baseline metrics
  2. Identify - Find the actual bottleneck
  3. Hypothesize - Form a theory about the cause
  4. Fix - Implement targeted optimization
  5. Validate - Measure again to confirm improvement
  6. Document - Record findings and decisions

Profiling Hierarchy

Profile at the right level to find the actual bottleneck:

Application Level
    |-- Request/Response timing
    |-- Function/Method profiling
    |-- Memory allocation tracking
    |
System Level
    |-- CPU utilization per process
    |-- Memory usage patterns
    |-- I/O wait times
    |-- Network latency
    |
Infrastructure Level
        |-- Database query performance
        |-- Cache hit rates
        |-- External service latency
        |-- Resource saturation

Profiling Patterns

CPU Profiling

Identify what code consumes CPU time:

  1. Sampling profilers - Low overhead, statistical accuracy
  2. Instrumentation profilers - Exact counts, higher overhead
  3. Flame graphs - Visual representation of call stacks

Key metrics:

  • Self time (time in function itself)
  • Total time (self time + time in called functions)
  • Call count and frequency

Memory Profiling

Track allocation patterns and detect leaks:

  1. Heap snapshots - Point-in-time memory state
  2. Allocation tracking - What allocates memory and when
  3. Garbage collection analysis - GC frequency and duration

Key metrics:

  • Heap size over time
  • Object retention
  • Allocation rate
  • GC pause times

I/O Profiling

Measure disk and network operations:

  1. Disk I/O - Read/write latency, throughput, IOPS
  2. Network I/O - Latency, bandwidth, connection count
  3. Database I/O - Query time, connection pool usage

Key metrics:

  • Latency percentiles (p50, p95, p99)
  • Throughput (ops/sec, MB/sec)
  • Queue depth and wait times

Bottleneck Identification

The USE Method

For each resource, check:

  • Utilization - Percentage of time resource is busy
  • Saturation - Degree of queued work
  • Errors - Error count for the resource

The RED Method

For services, measure:

  • Rate - Requests per second
  • Errors - Failed requests per second
  • Duration - Distribution of request latencies

Common Bottleneck Patterns

PatternSymptomsTypical Causes
CPU-boundHigh CPU, low I/O waitInefficient algorithms, tight loops
Memory-boundHigh memory, GC pressureMemory leaks, large allocations
I/O-boundLow CPU, high I/O waitSlow queries, network latency
Lock contentionLow CPU, high wait timeSynchronization, connection pools
N+1 queriesMany small DB queriesMissing joins, lazy loading

Amdahl's Law

Optimization impact is limited by the fraction of time affected:

If 90% of time is in function A and 10% in function B:
- Optimizing A by 50% = 45% total improvement
- Optimizing B by 50% = 5% total improvement

Focus on the biggest contributors first.

Capacity Planning

Baseline Establishment

Measure current capacity under production load:

  1. Peak load metrics - Maximum concurrent users, requests/sec
  2. Resource headroom - How close to limits at peak
  3. Scaling patterns - Linear, sub-linear, or super-linear

Load Testing Approach

  1. Establish baseline - Current performance at normal load
  2. Ramp testing - Gradually increase load to find limits
  3. Stress testing - Push beyond limits to understand failure modes
  4. Soak testing - Sustained load to find memory leaks, degradation

Capacity Metrics

MetricWhat It Tells You
Throughput at saturationMaximum system capacity
Latency at 80% loadPerformance before degradation
Error rate under stressFailure patterns
Recovery timeHow quickly system returns to normal

Growth Planning

Required Capacity = (Current Load x Growth Factor) + Safety Margin

Example:
- Current: 1000 req/sec
- Expected growth: 50% per year
- Safety margin: 30%

Year 1 need = (1000 x 1.5) x 1.3 = 1950 req/sec

Optimization Patterns

Quick Wins

  1. Enable caching - Application, CDN, database query cache
  2. Add indexes - For slow queries identified in profiling
  3. Compression - Gzip/Brotli for responses
  4. Connection pooling - Reduce connection overhead
  5. Batch operations - Reduce round-trips

Algorithmic Improvements

  1. Reduce complexity - O(n^2) to O(n log n)
  2. Lazy evaluation - Defer work until needed
  3. Memoization - Cache computed results
  4. Pagination - Limit data processed at once

Architectural Changes

  1. Horizontal scaling - Add more instances
  2. Async processing - Queue background work
  3. Read replicas - Distribute read load
  4. Caching layers - Redis, Memcached
  5. CDN - Edge caching for static content

Best Practices

  • Profile in production-like environments; development can have different characteristics
  • Use percentiles (p95, p99) not averages for latency
  • Monitor continuously, not just during incidents
  • Set performance budgets and enforce them in CI
  • Document baseline metrics before making changes
  • Keep profiling overhead low in production
  • Correlate metrics across layers (application, database, infrastructure)
  • Understand the difference between latency and throughput

Anti-Patterns

  • Optimizing without measurement
  • Using averages for latency metrics
  • Profiling only in development
  • Ignoring tail latencies (p99, p999)
  • Premature optimization of non-bottleneck code
  • Over-engineering for hypothetical scale
  • Caching without invalidation strategy

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

25.52%
按下载量换算16

windsurf

20.42%
按下载量换算13

OpenCode

17.1%
按下载量换算11

Gemini CLI

13.49%
按下载量换算8

trae

8.77%
按下载量换算5

Codex

3.67%
按下载量换算2

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills