Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

perfguardperfguard 搜索

Agent Skill

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

总安装

2,399

周安装

98

GitHub Stars

公开资料未说明

下载量

768
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:perfguard(perfguard 搜索)
来源仓库:https://github.com/suhteevah/perfguard
安装命令:
openclaw skills install perfguard
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install perfguard

简介

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

  • 适用场景:性能监控、代码审查、反模式检测
  • 核心能力:查询分析、模式识别、性能诊断
  • 使用方式:提交代码或配置后自动扫描潜在问题
  • 安装或权限注意事项:需确保运行环境具备足够资源执行扫描

SKILL.md

name
perfguard
description
Performance anti-pattern scanner — finds N+1 queries, sync I/O, missing pagination, and memory leaks before they hit production
homepage
https://perfguard.pages.dev
metadata
user-invocable
true
disable-model-invocation
false

PerfGuard -- Performance Anti-Pattern Scanner

PerfGuard scans your codebase for performance anti-patterns including N+1 queries, synchronous I/O in async code, missing pagination, unbounded loops, memory leaks, and inefficient serialization. It supports Python (Django, Flask, FastAPI, SQLAlchemy), JavaScript/TypeScript (Node.js, React, Express), Ruby (Rails), and Java (JPA/Hibernate). All scanning happens locally using regex-based pattern matching -- no code is sent to external servers.

Commands

Free Tier (No license required)

perfguard scan [file|directory]

One-shot performance anti-pattern scan.

How to execute:

bash "<SKILL_DIR>/scripts/perfguard.sh" scan [target]

What it does:

  1. Accepts a file path or directory (defaults to current directory)
  2. Auto-detects the project stack (Python, JavaScript/TypeScript, Ruby, Java)
  3. Finds all relevant source files (excluding .git/, node_modules/, dist/, build/, vendor/, __pycache__)
  4. Runs 40+ performance checks against each source file
  5. Outputs findings with: file, line number, check ID, severity, description, recommendation
  6. Calculates a performance score (0-100)
  7. Free tier: limited to scanning up to 5 source files
  8. Exit code 0 if score >= 70, exit code 1 if score < 70 or critical issues found

Example usage scenarios:

  • "Scan my code for performance issues" -> runs perfguard scan .
  • "Check for N+1 queries in my Django app" -> runs perfguard scan .
  • "Find async anti-patterns in my Node.js project" -> runs perfguard scan src/
  • "Are there performance problems in this file?" -> runs perfguard scan path/to/file.py
  • "Look for slow database queries" -> runs perfguard scan .

Pro Tier ($19/user/month -- requires PERFGUARD_LICENSE_KEY)

perfguard scan [file|directory] (unlimited)

Full performance scan with no file limit and all 40+ checks enabled.

How to execute:

bash "<SKILL_DIR>/scripts/perfguard.sh" scan [target]

What it does (beyond free):

  1. Unlimited source file scanning
  2. Full 40+ performance checks including database, async, memory, and bundle patterns
  3. Detailed remediation advice per finding

perfguard hooks install

Install git pre-commit hooks that scan staged files for performance anti-patterns before every commit.

How to execute:

bash "<SKILL_DIR>/scripts/perfguard.sh" hooks install

What it does:

  1. Validates Pro+ license
  2. Copies lefthook config to project root
  3. Installs lefthook pre-commit hook
  4. On every commit: scans staged source files for performance anti-patterns, blocks commit if critical issues found

perfguard hooks uninstall

Remove PerfGuard git hooks.

bash "<SKILL_DIR>/scripts/perfguard.sh" hooks uninstall

perfguard report [directory]

Generate a markdown performance audit report.

bash "<SKILL_DIR>/scripts/perfguard.sh" report [directory]

What it does:

  1. Validates Pro+ license
  2. Runs full scan of the directory
  3. Generates a formatted markdown report with severity breakdown
  4. Includes per-file findings, performance score, and remediation steps
  5. Output written to PERFGUARD-REPORT.md

perfguard hotspots [directory]

Identify the files with the most performance anti-patterns (hot paths).

bash "<SKILL_DIR>/scripts/perfguard.sh" hotspots [directory]

What it does:

  1. Validates Pro+ license
  2. Scans all source files in the directory
  3. Ranks files by total anti-pattern count and severity weight
  4. Shows top 10 performance hotspot files with issue breakdown
  5. Helps prioritize which files to optimize first

Team Tier ($39/user/month -- requires PERFGUARD_LICENSE_KEY with team tier)

perfguard budget [directory]

Check code against performance budgets.

bash "<SKILL_DIR>/scripts/perfguard.sh" budget [directory]

What it does:

  1. Validates Team+ license
  2. Runs full performance scan
  3. Checks results against configurable thresholds: max critical issues, max total issues, minimum score
  4. Returns exit code 1 if any budget is exceeded
  5. Designed for CI/CD pipeline integration as a quality gate

perfguard trend [directory]

Show performance trend over recent git history.

bash "<SKILL_DIR>/scripts/perfguard.sh" trend [directory]

What it does:

  1. Validates Team+ license
  2. Checks out recent commits (up to 10) and runs performance scan on each
  3. Shows a timeline of performance scores
  4. Identifies whether code quality is improving or degrading
  5. Helps track the impact of optimizations over time

Detected Performance Anti-Patterns

PerfGuard checks for 40+ performance anti-patterns across 4 categories:

Database / ORM Patterns

CheckDescriptionSeverity
N+1 QueryQuery inside a loop / loop inside a queryCritical
SELECT *Using SELECT * instead of specific columnsHigh
Missing Eager LoadingNo select_related/prefetch_related (Django), includes/eager_load (Rails), JOIN FETCH (JPA)Critical
Unbounded QueryQuery without LIMIT or paginationHigh
Sequential QueriesMultiple queries that could be batchedMedium
String SQL ConcatenationBuilding SQL with string concatenationCritical
Missing Index HintComplex queries without index annotationsMedium

JavaScript / TypeScript Patterns

CheckDescriptionSeverity
Await in LoopSequential async operations instead of parallelCritical
Missing Promise.allMultiple independent awaits without Promise.allHigh
Sync File I/OreadFileSync/writeFileSync in server codeHigh
JSON CloneJSON.parse(JSON.stringify()) for deep cloningMedium
Unbounded Array OpsLarge array operations without chunkingMedium
Memory LeakEvent listeners without cleanupHigh
Missing MemoizationReact components without useMemo/useCallback/React.memoMedium
Full Lodash ImportImporting entire lodash instead of specific functionsHigh
Missing PaginationAPI responses without paginationHigh
Console in Productionconsole.log statements in production codeLow

Python Patterns

CheckDescriptionSeverity
Heavy Module in FunctionImporting heavy modules inside functionsMedium
List vs GeneratorLarge list comprehensions that should be generatorsMedium
String Concat in LoopString concatenation in loops instead of joinMedium
Sleep in Asynctime.sleep() in async codeCritical
Missing Connection PoolDirect connections without poolingHigh
Sync in AsyncSynchronous I/O in async functionsHigh
Full File LoadLoading entire files into memoryMedium
Regex in LoopCompiling regex inside loopsMedium

General Patterns

CheckDescriptionSeverity
Unbounded RetryRetries without exponential backoffHigh
Missing TimeoutHTTP requests without timeoutHigh
PollingPolling instead of webhooks/eventsMedium
Hardcoded DelayHardcoded sleep/delay valuesLow
Missing CacheRepeated computations without cachingMedium
No MemoizationRecursive functions without memoizationMedium
Large PayloadSerialization without streamingMedium

Configuration

Users can configure PerfGuard in ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "perfguard": {
        "enabled": true,
        "apiKey": "YOUR_LICENSE_KEY_HERE",
        "config": {
          "severityThreshold": "high",
          "excludePatterns": ["**/node_modules/**", "**/dist/**", "**/.git/**"],
          "reportFormat": "markdown"
        }
      }
    }
  }
}

Important Notes

  • Free tier works immediately with no configuration (limited to 5 source files)
  • All scanning happens locally -- no code is sent to external servers
  • License validation is offline -- no phone-home or network calls
  • Supports Python, JavaScript/TypeScript, Ruby, and Java
  • Git hooks use lefthook which must be installed (see install metadata above)
  • Exit codes: 0 = clean (score >= 70), 1 = issues found (for CI/CD integration)

Error Handling

  • If lefthook is not installed and user tries hooks install, prompt to install it
  • If license key is invalid or expired, show clear message with link to https://perfguard.pages.dev/renew
  • If a file is binary, skip it automatically with no warning
  • If no source files found in target, report clean scan with info message
  • If project stack cannot be auto-detected, try all patterns

When to Use PerfGuard

The user might say things like:

  • "Scan my code for performance issues"
  • "Find N+1 queries in my app"
  • "Check for async anti-patterns"
  • "Are there performance problems in my code?"
  • "Look for slow database queries"
  • "Find memory leaks in my React app"
  • "Check for missing pagination"
  • "Scan for sync I/O in my server code"
  • "Generate a performance report"
  • "Show me performance hotspots"
  • "Set up performance checks on my commits"
  • "Check if code meets performance budgets"
  • "Show performance trends over time"
  • "Find unbounded queries"
  • "Check for missing eager loading"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

76.78%
按下载量换算590

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills