Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

web-performance网络性能

Agent Skill

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

总安装

517

周安装

22

GitHub Stars

1

下载量

181
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alexanderstephenthompson/claude-hub --skill web-performance

简介

用于查找、检索和筛选网络性能优化相关信息,支持技术选型参考。

  • 适合根据关键词或任务需求快速定位候选方案和最佳实践。
  • 通过 GitHub 仓库安装,支持 Codex、Claude、Cursor、Gemini CLI 等宿主。
  • 使用前应核实仓库维护状态和权限范围,确保信息准确且适用当前项目。
  • web-performance 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Web Performance Skill

Version: 1.0 Stack: Apollo Client/Server + Redis + CloudFront + S3

Performance problems are invisible during development. Local servers are fast. Test data is small. You don't notice the 3MB bundle, the N+1 queries, or the full-table scan until real users on real connections with real data report that the page takes 8 seconds to load. By then, fixing it requires rearchitecting the caching layer, splitting the bundle, and rewriting queries — all at once, under pressure.

Performance patterns applied from the start are cheap. Performance fixes applied after launch are expensive. These rules are the cheap version.


Core Principles

  1. Measure First — Profile before optimizing. Don't guess.
  2. Cache at Every Layer — CDN → API → Database → In-Memory.
  3. Minimize Payload — Send only what's needed.
  4. Defer Non-Critical — Load critical path first, everything else later.
  5. Perceived Performance — Optimistic UI makes things feel faster.

Core Web Vitals Targets

MetricWhat It MeasuresTargetCritical
LCP (Largest Contentful Paint)Main content loaded< 2.5s< 4s
INP (Interaction to Next Paint)Input responsiveness< 200ms< 500ms
CLS (Cumulative Layout Shift)Visual stability< 0.1< 0.25

Apollo Client Caching

Configure InMemoryCache with type policies for pagination merging and computed fields. Use cache-and-network as default fetch policy (stale-while-revalidate). Use optimistic updates for mutations to make UI feel instant.

Fetch Policies

PolicyUse Case
cache-firstStatic data (categories, config)
cache-and-networkData that changes (products, user data)
network-onlyAlways fresh (order status, real-time)
cache-onlyOffline mode, known-cached data

See assets/caching-patterns.md for cache configuration, fetch policy examples, and optimistic update patterns.


Redis Caching

Cache-aside pattern: check cache → miss → fetch DB → store in cache. Invalidate on writes. Use tag-based invalidation for list queries.

TTL Guidelines

Data TypeTTLReason
Static config24h+Rarely changes
Product catalog1hChanges occasionally
User sessions30mSecurity balance
Cart data7dUser convenience
Search results5mBalance freshness/speed
Real-time dataNo cacheMust be live

See assets/caching-patterns.md for Redis cache service, cache-aside pattern, and invalidation examples.


CloudFront & S3 Optimization

Immutable assets (hashed filenames) get 365-day cache. API routes get no CDN caching. Images get resize-on-demand with WebP format, lazy loading, and 2x srcSet for retina.

See assets/caching-patterns.md for CDK configuration and image optimization component.


Bundle Optimization

Route-based code splitting with React.lazy. Dynamic imports for heavy libraries (load only when needed). Analyze with source-map-explorer.

Bundle Size Guidelines

CategoryTargetAction if Exceeded
Initial JS< 100KB gzippedCode split, tree shake
Vendor chunk< 150KB gzippedLazy load, find alternatives
Route chunk< 50KB gzippedSplit further
Total initial load< 200KB gzippedAudit dependencies

See assets/optimization-patterns.md for code splitting, dynamic import, and bundle analysis examples.


React Performance

Use useMemo for expensive computations, useCallback for stable callbacks passed to memoized children, and memo for list item components. Don't memoize simple values, always-changing values, or handlers on non-memoized children. Use virtualization for long lists (100+ items).

See assets/optimization-patterns.md for memoization, when-NOT-to-memoize, and virtualization examples.


Database Performance

Select only needed fields. Use include sparingly. Use raw queries for complex aggregations. Add compound indices on filtered/sorted columns.

See assets/optimization-patterns.md for Prisma query optimization and index strategy.


Anti-Patterns

Anti-PatternProblemFix
Fetching all fieldsOver-fetching, slowSelect only needed fields
No paginationMemory issues, slowCursor-based pagination
Cache everythingStale data, complexityCache strategically by TTL
Premature optimizationWasted effortMeasure first, optimize hotspots
Sync heavy operationsBlocks responseBackground jobs (Bull)
No CDN for static assetsSlow global deliveryCloudFront for static files
Unoptimized imagesHuge downloadsResize, compress, WebP
Blocking bundleSlow initial loadCode split, lazy load

Checklist

Frontend

  • Code split by route
  • Heavy libraries lazy loaded
  • Images lazy loaded
  • Images optimized (WebP, sized)
  • Bundle < 200KB initial
  • useMemo/useCallback where beneficial
  • Long lists virtualized

Apollo

  • Cache policies configured
  • Pagination merges correctly
  • Optimistic updates for mutations
  • Fetch policy matches data freshness needs

Redis

  • Hot data cached
  • TTLs appropriate for data type
  • Cache invalidation on updates
  • Connection pooling configured

Database

  • Indices on filtered/sorted columns
  • Select only needed fields
  • N+1 queries eliminated (DataLoader)
  • Expensive queries analyzed

CDN

  • Static assets on CloudFront
  • Immutable assets cached forever
  • Dynamic content not cached at edge
  • HTTPS enforced

When to Consider Alternatives

SituationConsider
Global real-time dataRedis Pub/Sub or WebSockets
Heavy computationBackground workers (Bull)
Large file uploadsDirect S3 presigned URLs
Search-heavyElasticsearch or Algolia
Edge computing needsCloudFront Functions or Lambda@Edge

References

  • assets/caching-patterns.md — Apollo cache config, Redis, CloudFront, image optimization
  • assets/optimization-patterns.md — Bundle splitting, React memoization, virtualization, DB optimization

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.4%
按下载量换算66

Claude

26.17%
按下载量换算47

Cursor

18.56%
按下载量换算34

Gemini CLI

9.29%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills