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

review-perf审查性能

Agent Skill

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

总安装

214

周安装

9

GitHub Stars

公开资料未说明

下载量

75
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/nielsmadan/agentic-coding --skill review-perf

简介

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

  • 适用于性能瓶颈识别、优化方案验证和资源使用分析等研究检索类任务场景。
  • 通过指标整理和对比分析支持对系统表现的量化评估。
  • 安装前建议确认权限范围和维护状态,以及是否会触发联网或命令执行。
  • 可结合来源仓库和原始 README 文档核验具体用法和功能边界。

SKILL.md

Review Performance

Performance analysis for common bottlenecks and inefficiencies.

Usage

/review-perf                  # Review context-related code
/review-perf --staged         # Review staged changes
/review-perf --all            # Full codebase audit (parallel agents)

Scope

FlagScopeMethod
(none)Context-related codeFiles from the current conversation context: any files the user has discussed, opened, or that you have read/edited in this session. If no conversation context exists, ask the user to specify files or use --staged/--all.
--stagedStaged changesgit diff --cached --name-only
--allFull codebaseGlob source files, parallel agents

Gotchas

  • Default scope (no flag) uses conversation context, which may be stale from an earlier part of the session. The review silently targets the wrong files if context has shifted.
  • Blindly adding useMemo/useCallback to fix re-render warnings can worsen performance on simple components — memoization has overhead and only helps when the memoized value is expensive or the child does reference equality checks.

Workflow

  1. Determine scope based on flags (see Scope table above)
  2. Review each file against all 5 categories in the Performance Checklist below: Algorithmic Complexity, Database/Query Patterns, Memory Management, UI/Render Performance, Network/IO
  3. Parallelize if scope has >5 files: spawn one sub-agent per category, each scanning all files for that category. Merge results and deduplicate.
  4. Classify severity for each finding:

- Critical: User-facing slowdown, data loss risk, or resource exhaustion (e.g., memory leak, N+1 on hot path) - High: Measurable inefficiency on a common code path but not immediately user-visible (e.g., O(n²) on lists typically < 100 items but growing) - Medium: Suboptimal pattern that could become a problem at scale (e.g., missing pagination, sequential requests that could be parallel) - Suggestion: Optimization opportunity with marginal current impact

  1. Report findings grouped by severity using the Output Format below

Performance Checklist

Algorithmic Complexity

  • Nested loops over the same collection (O(n²) or worse) — replace with a lookup map
  • Repeated expensive calculations inside a loop — hoist outside
  • Array scans that could exit early — use .find() or equivalent

Database/Query Patterns

  • Queries inside loops (N+1) — use eager loading / batch fetch
  • Loading all rows without a LIMIT — add pagination
  • SELECT * when only a few columns are needed — select explicitly
  • Missing indexes on columns used in WHERE, ORDER BY, JOIN, or foreign keys

Memory Management

  • Connections or file handles opened without a finally/close — always close in finally
  • Caches with no size or TTL bound — use LRU or TTL-bounded cache
  • Event listeners added without a corresponding removal — return cleanup in useEffect

UI/Render Performance

  • Inline object/function literals passed as props causing reference churn — memoize with useMemo/useCallback
  • Long lists rendered without virtualization — use a virtualized list component
  • Heavy synchronous computation on the main thread — offload to a web worker or chunk the work

Network/IO

  • Sequential await calls for independent requests — use Promise.all
  • The same request fired multiple times without deduplication — use SWR/React Query or a request cache

For annotated BAD/GOOD code examples for each category, see references/perf-checklist.md.

Output Format

## Performance Review: {scope}

### Critical (user-facing slowdown)
- {file}:{line} - {issue type}: {description}
  **Impact:** {why it matters}
  **Fix:** {solution with code example}

### High Priority
- {file}:{line} - {issue}
  **Fix:** {solution}

### Medium Priority
- {file} - {issue}

### Suggestions
- {optimization opportunity}

Examples

Staged changes introduce N+1 query:

/review-perf --staged

Reviews staged files and catches a new user list endpoint that queries posts per user in a loop. Reports it as Critical with the impact ("100 users = 101 queries") and provides a fix using eager loading with include.

Full audit finds memory leak in dashboard:

/review-perf --all

Parallel agents scan the full codebase by category. Finds an event listener in the dashboard component that is never cleaned up on unmount, plus an unbounded in-memory cache growing with every API call.

Troubleshooting

False positive on a rarely-executed code path

Solution: If the flagged code runs only during initialization or in admin-only flows, note the expected data size in a code comment. Re-run the review and the context will help distinguish hot paths from cold ones.

Cannot determine algorithmic complexity without runtime data

Solution: Add a brief comment with the expected input size (e.g., // n is typically < 50) so static analysis can assess impact. For uncertain cases, use /perf-test to measure actual performance with realistic data.

Notes

  • Focus on measurable impact, not micro-optimizations
  • Consider data size - O(n²) on 10 items is fine, on 10,000 is not
  • For --all, use parallel agents per category
  • Database issues often have the highest impact
  • UI issues matter most for user-facing code

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.46%
按下载量换算27

Claude

29.69%
按下载量换算22

Cursor

18.7%
按下载量换算14

Gemini CLI

8.29%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/nielsmadan/agentic-coding --skill review-perf 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills