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

performance性能

Agent Skill

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

总安装

675

周安装

29

GitHub Stars

16

下载量

237
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/krzysztofsurdy/code-virtuoso --skill performance

简介

performance 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于性能优化相关的研究检索任务。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用该技能。
  • 安装前需确认权限范围和维护状态,注意是否涉及联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Performance Optimization

Performance work follows one rule above all others: measure before you change anything. Intuition about bottlenecks is wrong more often than it is right. Every optimization should start with profiling, produce a hypothesis, apply a targeted fix, and verify with another measurement.

Core Principles

PrincipleMeaning
Measure firstNever optimize without profiling data -- gut feelings about bottlenecks are unreliable
Optimize the critical pathFocus on the code that runs most frequently or blocks user-visible latency
Set budgetsDefine acceptable latency, throughput, and resource usage before you start
Avoid premature optimizationReadable, correct code first -- optimize only when measurements show a real problem
Know your tradeoffsEvery optimization trades something (memory for speed, complexity for throughput, freshness for latency)

Profiling and Benchmarking

Profiling identifies where time and resources are spent. Without it, you are guessing.

Types of Profiling

TypeWhat It RevealsWhen to Use
CPU profilingHot functions, call frequency, execution time distributionSlow request handling, high CPU usage
Memory profilingAllocation rates, heap size, object retention, leaksGrowing memory usage, OOM errors, GC pressure
I/O profilingDisk reads/writes, network calls, blocking waitsSlow file operations, external service latency
Database profilingQuery execution time, query count per request, slow queriesHigh DB load, N+1 patterns, missing indexes

The Profiling Workflow

  1. Baseline -- Capture metrics under normal conditions before any changes
  2. Identify -- Find the hotspot consuming the most time or resources
  3. Hypothesize -- Form a specific theory about why it is slow
  4. Fix -- Apply a single, targeted change
  5. Verify -- Measure again to confirm improvement and check for regressions

Performance Budgets

Define limits that trigger action when exceeded:

  • Response time: P50, P95, P99 latency targets per endpoint
  • Throughput: Minimum requests per second under expected load
  • Resource usage: CPU, memory, and connection limits per service
  • Page weight: Maximum transfer size for frontend assets

See Profiling Patterns Reference for detailed profiling workflows, bottleneck signatures, and load testing strategies.


Caching Strategies

Caching eliminates redundant computation and data fetching by storing results closer to where they are needed.

Cache Layers

LayerLocationLatencyUse Case
L1 -- In-processApplication memory (object cache, memoization)NanosecondsHot data accessed many times per request
L2 -- DistributedRedis, Memcached, shared cacheSub-millisecond to low millisecondsData shared across application instances
HTTP cacheBrowser, reverse proxy (Varnish, Nginx)Zero network round-trip for client cacheStatic assets, cacheable API responses
CDNEdge servers worldwideLow latency from geographic proximityStatic files, pre-rendered pages, media
Database cacheQuery result cache, buffer poolVariesRepeated identical queries

Invalidation Approaches

StrategyHow It WorksBest For
TTL-basedCache entries expire after a fixed durationData that tolerates bounded staleness
Event-basedCache is cleared when the source data changesData that must stay fresh after writes
Write-throughWrites update both the cache and the backing store simultaneouslyRead-heavy workloads needing strong consistency
Write-behindWrites update the cache immediately; backing store is updated asynchronouslyHigh write throughput where eventual consistency is acceptable

Cache Stampede Prevention

When a popular cache key expires, many concurrent requests may all try to regenerate it at once, overwhelming the backend. Three approaches prevent this:

  • Locking -- Only one request regenerates; others wait or serve stale data
  • Probabilistic early recomputation -- Requests randomly refresh the cache before expiration, spreading regeneration over time
  • Request coalescing -- Duplicate in-flight requests are collapsed into a single backend call

See Caching Strategies Reference for implementation patterns with multi-language examples.


Database Optimization

Database queries are the most common performance bottleneck in web applications.

Index Strategy

  • Create indexes on columns used in WHERE, JOIN, and ORDER BY clauses
  • Use composite indexes that match your most frequent query patterns (leftmost prefix rule)
  • Covering indexes include all columns a query needs, avoiding table lookups entirely
  • Monitor unused indexes -- they slow down writes without helping reads

N+1 Query Prevention

The N+1 problem occurs when code fetches a list of N records, then issues one additional query per record to load related data. Instead of 1 query, you execute N+1.

Detection signals:

  • Query count scales linearly with result set size
  • Many nearly identical queries differing only in a single parameter
  • Profiler shows dozens or hundreds of queries for a single page load

Prevention strategies:

  • Eager loading (JOIN or separate batch query upfront)
  • Batch loading (collect IDs, fetch all related records in one query)
  • DataLoader pattern (automatic batching and deduplication within a request)

Connection Pooling

Opening a database connection is expensive (TCP handshake, authentication, TLS negotiation). Connection pools maintain a set of reusable connections:

  • Size the pool based on expected concurrency -- too small causes queueing, too large overwhelms the database
  • Always return connections to the pool promptly -- leaked connections exhaust the pool
  • Set idle timeouts to reclaim unused connections
  • Use external poolers (like PgBouncer for PostgreSQL) when application-level pooling is insufficient

See Database Optimization Reference for query patterns, explain plan analysis, and multi-language examples.


Memory and Resource Management

Memory Optimization Patterns

PatternDescription
Object poolingReuse expensive objects instead of allocating and discarding them
StreamingProcess large datasets as streams instead of loading everything into memory
Lazy initializationDefer creation of expensive objects until they are actually needed
Weak referencesHold references that do not prevent garbage collection
Buffer reuseAllocate buffers once and reuse them across operations

Lazy Loading

Lazy loading defers work until the result is actually needed. It reduces startup time and memory usage but adds complexity and can cause unexpected latency later.

Where lazy loading helps:

  • Loading related database records only when accessed
  • Initializing expensive service connections on first use
  • Loading UI components or assets only when they become visible

Where lazy loading hurts:

  • When the deferred work always happens anyway (just adds overhead)
  • When it moves latency from a predictable startup phase to unpredictable user interactions
  • When it creates N+1 query patterns (see Database Optimization above)

Batch Operations

Replace individual operations with batch alternatives wherever possible:

  • Batch inserts instead of inserting one row at a time
  • Batch API calls instead of calling an external service N times
  • Bulk file operations instead of processing files individually

Quick Reference: Common Bottleneck Patterns

SymptomLikely CauseFirst Investigation Step
Slow response times, low CPUI/O waits (database, network, disk)Profile I/O and check query logs
High CPU, normal response timesInefficient algorithms or excessive computationCPU profile to find hot functions
Growing memory over timeMemory leak (unreleased references, unbounded caches)Heap dump comparison over time
Intermittent slowness under loadResource contention (locks, connection pool exhaustion)Check pool sizes and lock wait times
Fast locally, slow in productionNetwork latency, missing caches, different data volumesCompare profiling data between environments

Reference Files

ReferenceContents
Caching StrategiesCache layers, invalidation patterns, stampede prevention with multi-language examples
Database OptimizationQuery optimization, N+1 prevention, connection pooling, batch operations with multi-language examples
Profiling PatternsProfiling workflows, bottleneck signatures, performance budgets, load testing strategies

Integration with Other Skills

SituationRecommended Skill
Performance issues caused by poor architectureInstall knowledge-virtuoso from krzysztofsurdy/code-virtuoso for clean architecture guidance
Need to refactor slow code pathsInstall knowledge-virtuoso from krzysztofsurdy/code-virtuoso for refactoring techniques
API response time optimizationInstall knowledge-virtuoso from krzysztofsurdy/code-virtuoso for API design principles
Database schema and query designInstall knowledge-virtuoso from krzysztofsurdy/code-virtuoso for testing strategies to verify optimizations

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.58%
按下载量换算89

Claude

29.51%
按下载量换算70

Cursor

18.99%
按下载量换算45

Gemini CLI

10.66%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills