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

performance-optimization性能优化

Agent Skill

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

总安装

710

周安装

29

GitHub Stars

1

下载量

230
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pixel-process-ug/superkit-agents --skill performance-optimization

简介

performance-optimization 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于性能优化相关的信息搜集与筛选,可结合来源仓库和原始 README 核验具体用法。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和维护状态。
  • 安装前建议确认是否会触发联网、命令执行或文件读写等操作边界。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Performance Optimization

Overview

Systematically identify and resolve performance bottlenecks using measurement-driven methodology. This skill enforces a strict MEASURE-IDENTIFY-OPTIMIZE-VERIFY cycle, preventing premature optimization and speculation. Every optimization must produce measurable improvement or be reverted.

Announce at start: "I'm using the performance-optimization skill to diagnose and resolve bottlenecks."


Phase 1: MEASURE (Establish Baseline)

Goal: Capture real metrics before changing anything.

Actions

# Web: Lighthouse CI
npx lighthouse https://your-app.com --output=json --output-path=baseline.json

# API: load test with k6
k6 run --out json=baseline.json loadtest.js

# Database: slow query log
# PostgreSQL: SET log_min_duration_statement = 100;  -- log queries > 100ms

Record these numbers. They are the baseline against which improvement is measured.

STOP — Do NOT proceed to Phase 2 until:

  • Baseline metrics are captured and saved
  • Specific metric targets are defined (e.g., LCP < 2.5s)
  • Measurement methodology is documented (so it can be repeated)

Phase 2: IDENTIFY (Find the Actual Bottleneck)

Goal: Use profiling tools to find WHERE time is spent. Do NOT guess.

Profiling Tool Selection Table

LayerToolWhat It Shows
Frontend renderingReact DevTools Profiler, Chrome Performance tabComponent render times
NetworkChrome Network tab, WebPageTestRequest waterfall, TTFB
JavaScriptChrome Performance tab, console.time()Function execution time
Node.js server--prof flag, clinic.js, 0xCPU flame graphs
DatabaseEXPLAIN ANALYZE, pg_stat_statementsQuery plans, slow queries
MemoryChrome Memory tab, heapdumpAllocation patterns, leaks
Bundle sizewebpack-bundle-analyzer, vite-bundle-visualizerModule sizes

The bottleneck is almost never where you assume it is. Measure first.

STOP — Do NOT proceed to Phase 3 until:

  • Profiling tool appropriate to the layer has been used
  • Specific bottleneck is identified with data
  • Bottleneck accounts for a significant portion of the problem

Phase 3: OPTIMIZE (Fix the Identified Bottleneck)

Goal: Apply the targeted fix. Change ONE thing at a time.

Optimization Decision Table

Bottleneck TypeOptimization ApproachExample
Large bundleCode splitting, tree shaking, dynamic importsReact.lazy(() => import('./HeavyComponent'))
Slow API responseCaching, query optimization, paginationAdd Redis cache with 5min TTL
Slow database queryAdd index, optimize query plan, materialized viewCREATE INDEX idx_user_email ON users(email)
Excessive re-rendersMemoization, virtualization, state restructuringReact.memo, useMemo
Large imagesCompression, lazy loading, responsive images<img loading="lazy" srcset="...">
Slow TTFBServer-side caching, CDN, edge renderingStale-while-revalidate pattern
Memory leakFix event listener cleanup, weak referencesProper useEffect cleanup

STOP — Do NOT proceed to Phase 4 until:

  • Only ONE change has been made
  • Change directly targets the identified bottleneck
  • No unrelated changes were made alongside the optimization

Phase 4: VERIFY (Measure Again)

Goal: Re-run the exact same measurement from Phase 1.

Actions

  1. Run the same profiling/measurement as Phase 1
  2. Compare results:

- Did the metric improve? - By how much? - Did any other metrics regress?

  1. If improvement is not measurable, REVERT the change.

Optimization that cannot be measured is not optimization.

STOP — Verification complete when:

  • Same measurement methodology used as Phase 1
  • Improvement is quantified (e.g., "LCP reduced from 3.2s to 2.1s")
  • No regressions in other metrics
  • If no improvement: change reverted

Caching Strategy Decision Table

Cache TypeUse WhenTTL GuidanceInvalidation
In-memory (LRU)Single-instance, hot data, computed valuesSeconds to minutesEviction policy
Redis/MemcachedMulti-instance, shared cache, sessionsMinutes to hoursEvent-based or TTL
CDNStatic assets, public pages, API responsesHours to daysDeploy-triggered purge
BrowserRepeat visits, static resourcesDays to months (versioned)Cache-busting hash

Cache-Control Headers

# Immutable assets (hashed filenames)
Cache-Control: public, max-age=31536000, immutable

# API responses (cacheable but must revalidate)
Cache-Control: public, max-age=0, must-revalidate
ETag: "abc123"

# Private user data
Cache-Control: private, no-store

# Stale-while-revalidate (fast response + background refresh)
Cache-Control: public, max-age=60, stale-while-revalidate=300

Bundle Optimization Techniques

TechniqueImpactImplementation
Route-level code splittingHighReact.lazy() + Suspense per route
Tree shakingHighES modules only, sideEffects: false
Dynamic importsMediumawait import('heavy-lib') on user action
Image optimizationHighnext/image, WebP/AVIF, responsive srcset
Font optimizationMediumnext/font, font-display: swap, subset
Dependency replacementMediumday.js for moment.js, lodash-es for lodash

Bundle Analysis Commands

# Webpack
npx webpack-bundle-analyzer stats.json

# Vite
npx vite-bundle-visualizer

# Next.js
ANALYZE=true next build

Database Query Tuning

Index Optimization

-- Find missing indexes (PostgreSQL)
SELECT schemaname, tablename, seq_scan, idx_scan
FROM pg_stat_user_tables
WHERE seq_scan > idx_scan
ORDER BY seq_scan DESC;

Index Rules

RuleExplanation
Index WHERE, JOIN, ORDER BY columnsThese are the columns the DB searches
Equality columns first in composite indexMost selective filtering first
Range columns last in composite indexLess selective, applied after equality
Remove unused indexesThey slow down writes
Use partial indexes for filtered queriesSmaller index, faster lookups

Query Plan Red Flags

Red Flag in EXPLAIN ANALYZEMeaningFix
Seq Scan on large tableFull table scanAdd index
Nested Loop with many rowsO(n*m) joinAdd index or restructure query
Sort with high memorySorting in memoryAdd index matching ORDER BY
Actual rows >> estimated rowsStale statisticsRun ANALYZE
Hash Join with large buildMemory-intensiveEnsure join columns are indexed

Web Vitals Targets

MetricGoodNeeds WorkPoor
LCP (Largest Contentful Paint)< 2.5s2.5-4s> 4s
INP (Interaction to Next Paint)< 200ms200-500ms> 500ms
CLS (Cumulative Layout Shift)< 0.10.1-0.25> 0.25

Web Vitals Optimization Table

MetricOptimizationImplementation
LCPPreload LCP resource<link rel="preload"> or fetchpriority="high"
LCPInline critical CSSExtract above-fold CSS inline
LCPOptimize TTFBCDN, edge rendering, server caching
INPBreak long tasksrequestIdleCallback, scheduler.yield()
INPDebounce input handlers100-300ms debounce on expensive handlers
INPWeb WorkersMove computation off main thread
CLSExplicit dimensionsSet width/height on images and videos
CLSReserve space for dynamic contentPlaceholder sizing for ads, embeds
CLSUse transform animationsAvoid layout-triggering properties

Load Testing

Test Types

TypeUsersDurationPurpose
Smoke1-21 minuteVerify test works
LoadExpected traffic10-30 minNormal performance
Stress2-3x expected10-30 minFind breaking point
SoakNormal load2-8 hoursFind memory leaks

Key Metrics

  • Response time percentiles (p50, p95, p99) — not averages
  • Error rate under load
  • Throughput (requests per second)
  • Resource utilization (CPU, memory, connections)

Anti-Patterns / Common Mistakes

Anti-PatternWhy It Is WrongCorrect Approach
Optimizing without measuringYou do not know what to fixMEASURE first, always
Premature optimizationWastes time on non-bottlenecksProfile to find actual bottleneck
Memoizing everythingAdds complexity without proven benefitProfile first, memoize second
Caching without invalidation strategyStale data causes bugsDefine invalidation before adding cache
Optimizing averages instead of percentilesAverages hide tail latencyTrack p95 and p99
Multiple optimizations at onceCannot attribute improvementOne change at a time
Keeping optimizations that do not measurably helpDead code and complexityRevert if no measurable improvement
Adding indexes without checking query patternsUnused indexes slow writesCheck slow query log first

Subagent Dispatch Opportunities

Task PatternDispatch ToWhen
Profiling different system layers concurrentlyAgent tool with subagent_type="Explore" (one per layer)When analyzing frontend, backend, and database independently
Bundle analysis and tree-shaking reviewAgent tool with subagent_type="general-purpose"When frontend bundle size is a concern
Database query optimization analysisAgent tool dispatching database-architect agentWhen slow queries are identified across multiple tables

Follow the dispatching-parallel-agents skill protocol when dispatching.


Integration Points

SkillRelationship
senior-frontendFrontend performance uses bundle and Web Vitals optimization
senior-backendBackend performance uses caching and query tuning
testing-strategyLoad tests are part of the testing pyramid
code-reviewReview checks for performance regressions
systematic-debuggingPerformance issues follow the same investigation methodology
acceptance-testingPerformance targets become acceptance criteria

Skill Type

FLEXIBLE — Adapt the depth of optimization to the project context. The MEASURE-IDENTIFY-OPTIMIZE-VERIFY cycle is mandatory for every optimization. Revert any change that does not produce measurable improvement.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.35%
按下载量换算81

Claude

29.6%
按下载量换算68

Cursor

19.03%
按下载量换算44

Gemini CLI

9.13%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills