Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问许可证需确认审计通过

performance-tuning性能调优

Agent Skill

performance-tuning 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

269

周安装

11

GitHub Stars

24

下载量

86
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/noobygains/godmode --skill performance-tuning

简介

performance-tuning 用于处理 GitHub 仓库和代码协作信息,适合整理变更和辅助审查。

  • 适用于 Codex、Claude、Cursor 和 Gemini CLI,支持围绕仓库状态生成下一步动作。
  • 可通过 GitHub 仓库和原始文档继续核验具体应用场景。
  • 安装前应确认权限范围和维护状态,避免误操作影响代码库。
  • 建议在开发分支中先行测试,确保不影响主干稳定性。

SKILL.md

Performance Tuning

Overview

Blind optimization is the root of wasted effort. Measure, pinpoint the bottleneck, fix that specific thing.

Core principle: No optimization without measurement. No measurement without a demonstrated performance problem.

No exceptions. No workarounds. No shortcuts.

The Prime Directive

NO OPTIMIZATION WITHOUT A MEASUREMENT PROVING THE PROBLEM

If you have not profiled it, you are not qualified to optimize it. Intuitions about performance are reliably wrong.

When to Use

digraph perf_gate {
    problem [label="Is there a\nmeasurable\nperformance deficit?", shape=diamond];
    measure [label="MEASURE\nProfile and locate\nthe bottleneck", shape=box, style=filled, fillcolor="#ccffcc"];
    halt [label="HALT\nDo not optimize", shape=box, style=filled, fillcolor="#ffcccc"];
    found [label="Bottleneck\npinpointed?", shape=diamond];
    fix [label="FIX\nthat specific thing", shape=box, style=filled, fillcolor="#ccccff"];
    dig [label="Investigate further\nor accept current\nperformance", shape=box];

    problem -> measure [label="yes"];
    problem -> halt [label="no"];
    measure -> found;
    found -> fix [label="yes"];
    found -> dig [label="no"];
    fix -> measure [label="re-measure"];
}

Engage when:

  • Users report perceptible slowness
  • Telemetry shows regression (response time, page load, throughput)
  • Performance budgets are breached (bundle size, Core Web Vitals)
  • Database queries exceed 100ms for routine operations
  • API responses exceed 500ms for typical requests

Do not engage when:

  • "It might be slow someday" (measure when it actually is)
  • "Best practice recommends optimizing X" (is X actually slow?)
  • Current performance satisfies current requirements
  • The feature does not yet work correctly (correctness first)

The Entry Protocol

BEFORE any optimization effort:

1. MEASURE: What is the current performance? (Numbers, not hunches)
2. TARGET: What performance level is required? (Specific threshold)
3. PINPOINT: Where is the bottleneck? (Profiler data, not speculation)
4. FIX: Address that specific bottleneck
5. VERIFY: Did the measurement improve? By how much?

Omit any step = premature optimization

The Methodology

Phase 1: Establish a Baseline

You must have numbers before changing anything.

DimensionHow to Measure
Page load latencyLighthouse, WebPageTest, browser DevTools Performance panel
API response timeServer logs, APM instrumentation, time curl
Query execution timeEXPLAIN ANALYZE, slow query log, ORM query logging
Bundle weightwebpack-bundle-analyzer, source-map-explorer
Memory consumptionHeap snapshots, process.memoryUsage()
CPU utilizationFlame charts via profiler, perf, py-spy

Record the baseline. You need it to prove the optimization was effective.

Phase 2: Locate the Bottleneck

The bottleneck is almost never where you expect it.

Profile -> identify the function/query/resource consuming the most time
                                    |
                    That is your optimization target
                                    |
                    Everything else is a distraction

Check these locations in order (most common first):

  1. Database queries -- N+1 patterns, absent indexes, full table scans
  2. Network calls -- Sequential when parallelizable, no caching layer
  3. Serialization -- Oversized payloads, unnecessary nested data
  4. Computation -- Suboptimal algorithms, redundant processing
  5. I/O operations -- File system access, disk reads, external API latency

Phase 3: Resolve the Bottleneck

Fix only what the profiler revealed. Change one variable at a time.

Database Tuning

SymptomRemedy
N+1 queriesEager loading / JOIN / batched query
Missing indexAdd index on columns in WHERE/JOIN/ORDER BY clauses
Full table scanAdd appropriate index; constrain result set
Oversized result setsCursor-based pagination for large datasets
Expensive aggregationsMaterialized views or pre-computed summaries
Lock contentionTighten transaction scope; introduce read replicas
-- BEFORE: Diagnose the problem
EXPLAIN ANALYZE SELECT * FROM transactions WHERE account_id = 789;

-- Look for: Seq Scan (missing index), high cost, slow execution
-- AFTER: Add index, re-run EXPLAIN ANALYZE, compare numbers

Frontend Tuning (Core Web Vitals)

MetricThresholdTypical Remedies
LCP (Largest Contentful Paint)< 2.5sOptimize hero images, preload critical resources, enable SSR
INP (Interaction to Next Paint)< 200msBreak long tasks, defer non-critical JS, offload to web workers
CLS (Cumulative Layout Shift)< 0.1Set explicit dimensions on media, avoid dynamic content insertion above fold

Bundle weight reduction:

1. Audit: what occupies space in the bundle?
2. Remove unused dependencies
3. Code-split by route (lazy loading)
4. Ensure ESM imports for tree-shaking
5. Enable compression (gzip/brotli)

API Tuning

SymptomRemedy
Over-fetchingReturn only requested fields; support sparse fieldsets
Under-fetchingBatch endpoints; return compound documents
No cachingAdd Cache-Control headers and ETags
Synchronous heavy processingReturn 202 Accepted with async processing + polling
Oversized responsesPaginate, compress, or stream
Slow serializationProfile the serializer; reduce nesting depth

Algorithm Tuning

Only when the profiler points to computation as the bottleneck:

FromToWhen Applicable
O(n^2) nested loopsHash map lookup O(n)Large input sets
Repeated computationMemoization or cachingSame inputs, expensive function
Synchronous blockingAsync / parallel executionI/O-bound work
Full recomputationIncremental updateSmall mutations to large datasets

Phase 4: Confirm the Improvement

Re-run the identical measurement. Compare the numbers.

Baseline: API response 920ms
After optimization: API response 145ms
Improvement: 84% reduction
Required threshold: < 500ms -- ACHIEVED

If the improvement is not measurable, revert the change. An optimization that cannot be measured is not an optimization.

Anti-Patterns to Avoid

Anti-PatternWhy It FailsBetter Approach
Premature cachingAdds complexity and stale-data risksOptimize the query first
Premature indexingIndexes degrade write throughput and consume storageAdd only when a query is demonstrably slow
Micro-optimizing tight loopsSaves nanoseconds, destroys readabilityProfile first; only touch what the profiler flags
"Async all the things"Adds cognitive complexity, harder debuggingApply async only to I/O-bound operations
Optimizing in dev environmentDev performance diverges from productionProfile in a production-like environment
Caching without invalidationStale data, consistency bugsDesign invalidation strategy before adding cache

Cognitive Traps

RationalizationTruth
"This will be slow at scale"Is it slow NOW? Optimize when evidence arrives.
"Best practice says to add an index"Is the query actually slow? Indexes impose write overhead.
"Caching will speed everything up"Have you measured what is actually slow? Caching adds complexity.
"Async will make this faster"Is this I/O-bound? Async adds mental overhead for no gain on CPU-bound work.
"I know where the bottleneck is"Profilers exist because human intuition about performance is unreliable. Measure.
"Quick optimization while I am in here"Unplanned optimizations are premature by definition.

Guardrails -- HALT and Measure

  • Optimizing without profiler output on hand
  • "While I am here, let me tune this..."
  • Adding a cache without measuring what is slow
  • Optimizing code that runs once (startup routines, one-time migrations)
  • Sacrificing readability for unmeasured performance gains
  • Solving scaling problems that do not yet exist
  • Applying multiple optimizations simultaneously (isolate impact per change)

Every item on this list means: HALT. Measure first. Optimize only the measured bottleneck.

Integration

Complementary skills:

  • godmode:system-design -- Architectural choices that influence performance characteristics
  • godmode:completion-gate -- Validate optimization with measurements
  • godmode:quality-enforcement -- Performance budgets as automated quality gates

The Bottom Line

Measure -> Pinpoint bottleneck -> Fix that one thing -> Confirm improvement

Everything else is speculation. Speculation about performance is always wrong.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.5%
按下载量换算27

Claude

31.69%
按下载量换算27

Cursor

18.86%
按下载量换算16

Gemini CLI

8.3%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills