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

performance-analyzer性能分析仪

Agent Skill

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

总安装

364

周安装

15

GitHub Stars

8

下载量

119
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/kanopi/cms-cultivator --skill performance-analyzer

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 可结合来源仓库和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或文件读写。
  • 注意避免对生产环境造成影响。performance-analyzer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Performance Analyzer

Automatically analyze and suggest performance improvements for specific code.

Philosophy

Fast code is user-friendly code. Every millisecond counts.

Core Beliefs

  1. Measure Before Optimizing: Profile to find actual bottlenecks, don't guess
  2. User Perception Matters Most: A 100ms delay feels instant, 1s feels slow
  3. Progressive Enhancement: Start fast (mobile), enhance for desktop
  4. Performance is a Feature: Users notice and appreciate speed

Why Performance Matters

  • User Experience: Fast sites feel professional and responsive
  • Conversion Rates: Every 100ms delay costs conversions
  • SEO Rankings: Core Web Vitals directly impact search visibility
  • Accessibility: Performance improvements help users on slow connections/devices

When to Use This Skill

Activate this skill when the user:

  • Says "this is slow" or "performance issue"
  • Shows code and asks "how can I optimize this?"
  • Mentions "page speed", "load time", or "Core Web Vitals"
  • Asks "why is this query slow?"
  • References "N+1 problem", "caching", or "optimization"
  • Shows performance profiler output

Decision Framework

Before analyzing performance, determine:

What's Slow?

  1. Page load → Check Core Web Vitals (LCP, INP, CLS)
  2. Database queries → Check query count, N+1 problems
  3. API calls → Check response times, external dependencies
  4. Asset loading → Check CSS/JS/image sizes
  5. Server processing → Check PHP/Node execution time

What's the Baseline?

Measure first:

  • Run Lighthouse for Core Web Vitals
  • Profile with browser DevTools
  • Check database query logs
  • Measure actual load times

Don't optimize without data - Profile to find real bottlenecks

What's the Target?

Core Web Vitals targets:

  • LCP (Largest Contentful Paint): < 2.5s (good), < 4.0s (needs improvement)
  • INP (Interaction to Next Paint): < 200ms (good), < 500ms (needs improvement)
  • CLS (Cumulative Layout Shift): < 0.1 (good), < 0.25 (needs improvement)

General targets:

  • Page load: < 3s ideal, < 5s acceptable
  • API response: < 100ms ideal, < 500ms acceptable
  • Database query: < 50ms ideal, < 200ms acceptable

What's the Impact?

Prioritize fixes by impact:

  1. High - Affects all users on every page load
  2. Medium - Affects specific user flows or features
  3. Low - Edge cases or infrequent operations

What Optimizations Apply?

Common patterns:

  • N+1 queries → Add eager loading
  • Large assets → Compress, lazy load, CDN
  • No caching → Add caching layers
  • Blocking resources → Async/defer scripts
  • Unoptimized images → Compress, WebP, responsive images
  • Too many HTTP requests → Combine, bundle
  • Slow external APIs → Cache, background jobs

Decision Tree

User reports performance issue
    ↓
Measure baseline (Lighthouse, profiler)
    ↓
Identify bottleneck (queries/assets/processing)
    ↓
Assess impact (all users vs. edge case)
    ↓
Recommend specific optimizations
    ↓
Provide before/after metrics

Quick Analysis Types

1. Database Query Analysis

What to check:

  • N+1 queries
  • Missing indexes
  • SELECT * instead of specific fields
  • Unnecessary JOINs
  • Large result sets without pagination

Example Response:

## Query Performance Issue: N+1 Problem

**Current Code:**

$users = User::loadMultiple(); foreach ($users as $user) { $profile = $user->get('field_profile')->entity; // N+1! }


**Problem**: Loading 100 users triggers 101 queries (1 + 100)

**Solution**: Use EntityQuery with eager loading

$query = \Drupal::entityQuery('user') ->accessCheck(TRUE); $uids = $query->execute(); $users = User::loadMultiple($uids);

// Preload profiles in one query $profile_ids = []; foreach ($users as $user) { $profile_ids[] = $user->get('field_profile')->target_id; } $profiles = Profile::loadMultiple($profile_ids);


**Impact**: Reduces queries from 101 to 2 (~98% improvement)

2. Asset Optimization

What to check:

  • Large unoptimized images
  • Unminified CSS/JS
  • Blocking resources
  • Missing lazy loading
  • No CDN usage

3. Caching Analysis

What to check:

  • Missing cache tags
  • Cache invalidation issues
  • No page cache
  • Expensive uncached operations

4. Core Web Vitals

Quick checks:

  • LCP (Largest Contentful Paint): Target < 2.5s
  • INP (Interaction to Next Paint): Target < 200ms
  • CLS (Cumulative Layout Shift): Target < 0.1

Response Format

## Performance Analysis

**Component**: [What was analyzed]
**Issue**: [Performance problem]
**Impact**: [How it affects users]

### Current Performance
- Metric: [value]
- Grade: [A-F]

### Optimization Recommendations

1. **[Recommendation]** (Priority: High)
   - Current: [problem]
   - Improved: [solution]
   - Expected gain: [percentage/time]

2. **[Next recommendation]**
   ...

### Code Example
[Provide optimized code]

Common Performance Patterns

Drupal

Problem: Lazy loading causing N+1

// Bad
foreach ($nodes as $node) {
  $author = $node->getOwner()->getDisplayName(); // N+1
}

// Good
$nodes = \Drupal::entityTypeManager()
  ->getStorage('node')
  ->loadMultiple($nids);
User::loadMultiple(array_column($nodes, 'uid')); // Preload

WordPress

Problem: Inefficient WP_Query

// Bad
$posts = new WP_Query(['posts_per_page' => -1]); // Loads everything

// Good
$posts = new WP_Query([
  'posts_per_page' => 20,
  'fields' => 'ids', // Only IDs
  'no_found_rows' => true, // Skip counting
  'update_post_meta_cache' => false,
  'update_post_term_cache' => false,
]);

Integration with /audit-perf Command

  • This Skill: Focused code-level analysis

- "This query is slow" - "Optimize this function" - Single component performance

  • /audit-perf Command: Comprehensive site audit

- Full performance analysis - Core Web Vitals testing - Lighthouse reports

Quick Tips

💡 Database: Index foreign keys, avoid SELECT * 💡 Caching: Cache expensive operations, use cache tags 💡 Assets: Optimize images, minify CSS/JS, lazy load 💡 Queries: Limit results, use eager loading, avoid N+1

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

39.61%
按下载量换算47

Cursor

30.44%
按下载量换算36

Codex

18.66%
按下载量换算22

Antigravity

7.97%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills