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

errorlenserrorlens 分析

Agent Skill

errorlens 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,799

周安装

119

GitHub Stars

公开资料未说明

下载量

981
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install errorlens

简介

扫描代码库中的异常处理漏洞,如空捕获、吞没异常等问题。

  • 适合在开发阶段识别潜在的错误边界缺失和异常安全风险。errorlens 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 支持主流编程语言,需传入待分析的项目路径或文件列表。
  • 通过 clawhub 安装,需具备读取项目源码和执行静态分析的权限。
  • 结果包含具体位置和改进建议,可用于 CI/CD 流程集成。

SKILL.md

name
errorlens
description
Error handling & exception safety analyzer -- scans codebases for empty catches, swallowed exceptions, missing error boundaries, unhandled rejections, generic error types, and unsafe error patterns across all languages
homepage
https://errorlens.pages.dev
metadata
user-invocable
true
disable-model-invocation
false

ErrorLens -- Error Handling & Exception Safety Analyzer

ErrorLens scans codebases for dangerous error handling patterns: empty catch blocks, swallowed exceptions, missing error boundaries, unhandled promise rejections, generic error types, missing finally blocks, bare except clauses, error message information leaks, unchecked error returns, and missing error propagation. Covers JS/TS, Python, Java, Go, Rust, and C#. Uses regex-based pattern matching against 90+ error handling anti-patterns, lefthook for git hook integration, and produces markdown reports with actionable remediation recommendations. 100% local. Zero telemetry.

Commands

Free Tier (No license required)

errorlens scan [file|directory]

One-shot error handling scan of files or directories.

How to execute:

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

What it does:

  1. Accepts a file path or directory (defaults to current directory)
  2. Discovers all source files (skips .git, node_modules, binaries, images, .min.js)
  3. Runs 90+ error handling pattern checks against each file
  4. Respects .gitignore and allowlist files
  5. Calculates an error safety score (0-100) per file and overall
  6. Grades: A (90-100), B (80-89), C (70-79), D (60-69), F (<60)
  7. Outputs findings with: file, line number, check ID, severity, description, recommendation
  8. Exit code 0 if score >= 70, exit code 1 if too many issues found
  9. Free tier limited to 5 files per scan

Example usage scenarios:

  • "Scan my code for error handling issues" -> runs errorlens scan .
  • "Check this file for empty catch blocks" -> runs errorlens scan src/api.ts
  • "Find swallowed exceptions in my project" -> runs errorlens scan src/
  • "Are there unsafe error patterns in my code?" -> runs errorlens scan .
  • "Check for missing error boundaries" -> runs errorlens scan .

errorlens hook

Install git pre-commit hooks that scan staged files for error handling issues before every commit.

How to execute:

bash "<SKILL_DIR>/scripts/errorlens.sh" hook install

What it does:

  1. Copies lefthook config to project root
  2. Installs lefthook pre-commit hook
  3. On every commit: scans all staged files for error handling issues, blocks commit if critical/high findings, shows remediation advice

errorlens report [directory]

Generate a markdown error handling report with findings, severity breakdown, and remediation steps.

How to execute:

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

What it does:

  1. Runs full scan of the directory
  2. Generates a formatted markdown report from template
  3. Includes per-file breakdowns, error safety scores, remediation priority
  4. Output suitable for code reviews and quality audits

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

errorlens watch [directory]

Continuous monitoring mode that watches for file changes and re-scans automatically.

How to execute:

bash "<SKILL_DIR>/scripts/errorlens.sh" watch [directory]

What it does:

  1. Validates Pro+ license
  2. Watches directory for file modifications
  3. Re-scans changed files automatically on save
  4. Displays live error handling score updates
  5. Useful for development-time feedback

errorlens ci [directory]

CI/CD integration mode with strict exit codes and machine-readable output.

How to execute:

bash "<SKILL_DIR>/scripts/errorlens.sh" ci [directory]

What it does:

  1. Validates Pro+ license
  2. Runs full scan with no file limit
  3. Outputs findings in CI-friendly format
  4. Exit code 0 = pass (score >= 70), 1 = fail
  5. Supports severity threshold configuration
  6. Suitable for GitHub Actions, GitLab CI, Jenkins, etc.

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

errorlens team-report [directory]

Aggregate team-level error handling metrics and trends.

How to execute:

bash "<SKILL_DIR>/scripts/errorlens.sh" team-report [directory]

What it does:

  1. Validates Team+ license
  2. Scans entire directory with full pattern set
  3. Generates aggregate metrics per category (EC, SE, EB, GE, RP, IL)
  4. Shows per-directory breakdown for team ownership analysis
  5. Includes trend data if previous baselines exist
  6. Reports team-wide error handling maturity score

errorlens baseline [directory]

Establish a baseline of known error handling issues for incremental improvement tracking.

How to execute:

bash "<SKILL_DIR>/scripts/errorlens.sh" baseline [directory]

What it does:

  1. Validates Team+ license
  2. Scans directory and records all current findings as baseline
  3. Saves baseline to .errorlens-baseline.json
  4. Future scans only report NEW issues not in the baseline
  5. Useful for legacy codebases with known accepted patterns
  6. Enables incremental error handling improvement tracking

errorlens status

Show license and configuration information.

bash "<SKILL_DIR>/scripts/errorlens.sh" status

Detected Error Handling Patterns

ErrorLens detects 90+ error handling anti-patterns across 6 categories:

CategoryExamplesSeverity
Empty Catches (EC)Empty catch blocks in JS/TS/Java/C#/Python, catch with only comments, catch with only pass, catch-all without loggingCritical/High
Swallowed Exceptions (SE)Catch blocks that don't rethrow/log, exception variable unused, catch that returns null/undefined/false silently, ignored error callbacksCritical/High
Error Boundaries (EB)Missing React error boundaries, missing Express error middleware, missing global handlers, unhandled promise rejections, window.onerrorHigh/Medium
Generic Errors (GE)Throwing generic Error/Exception, bare except in Python, catching Throwable in Java, catching Object in TS, overly broad error typesHigh/Medium
Resource & Propagation (RP)Missing finally for resource cleanup, unchecked error returns in Go, missing error propagation (? in Rust), ignored Result types, missing defer/closeHigh/Medium
Information Leak (IL)Stack traces in HTTP responses, error.message in API responses, console.error with sensitive data, verbose errors in production, raw exception details to usersHigh/Medium

Configuration

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

{
  "skills": {
    "entries": {
      "errorlens": {
        "enabled": true,
        "apiKey": "YOUR_LICENSE_KEY_HERE",
        "config": {
          "severityThreshold": "high",
          "ignorePatterns": ["**/test/**", "**/fixtures/**", "**/*.test.*"],
          "ignoreChecks": [],
          "allowlistFile": ".errorlens-allowlist",
          "reportFormat": "markdown"
        }
      }
    }
  }
}

Important Notes

  • Free tier works immediately with no configuration
  • All scanning happens locally -- no code is sent to external servers
  • License validation is offline -- no phone-home or network calls
  • Pattern matching only -- no AST parsing, no external dependencies beyond bash
  • Supports scanning all file types in a single pass
  • Git hooks use lefthook which must be installed (see install metadata above)
  • Exit codes: 0 = clean (score >= 70), 1 = issues detected (for CI/CD integration)

Error Handling

  • If lefthook is not installed and user tries hook install, prompt to install it
  • If license key is invalid or expired, show clear message with link to https://errorlens.pages.dev/renew
  • If a file is binary, skip it automatically with no warning
  • If no scannable files found in target, report clean scan with info message
  • If .errorlens-allowlist is missing, skip allowlist filtering gracefully

When to Use ErrorLens

The user might say things like:

  • "Scan my code for error handling issues"
  • "Find empty catch blocks in my project"
  • "Check for swallowed exceptions"
  • "Are there missing error boundaries?"
  • "Scan for unsafe error patterns"
  • "Find unhandled promise rejections"
  • "Check if my error handling is correct"
  • "Detect bare except clauses"
  • "Run an error handling audit"
  • "Set up pre-commit hooks for error handling"
  • "Generate an error handling report"
  • "Find catch blocks that don't rethrow"
  • "Check for generic error types"
  • "Scan for information leaks in error messages"
  • "Audit my code for exception safety"
  • "Find missing finally blocks"
  • "Check for unchecked error returns in Go"
  • "Baseline existing error handling issues"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.73%
按下载量换算763

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills