Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

error-handling错误处理

Agent Skill

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

总安装

353

周安装

15

GitHub Stars

29

下载量

124
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mwguerra/claude-code-plugins --skill error-handling

简介

用于记录任务执行中的错误、用户纠正和经验缺口。

  • 适合让 Agent 持续沉淀问题、修正和最佳实践。
  • 可结合来源仓库和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围和维护状态,避免误操作。
  • 注意是否会触发联网、命令执行或文件读写。error-handling 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Error Handling Skill

Handle errors intelligently by leveraging past solutions and building a knowledge base of fixes.

Core Workflow

When Encountering an Error

  1. Recognize the error - Identify the error message and its type
  2. Search for solutions - Check if a similar error was solved before
  3. Apply or adapt - Use the found solution or develop a new one
  4. Log for future - After solving, log the error and solution

Error Recognition

Recognize errors from multiple sources:

SourceIndicators
Bash commandsNon-zero exit code, stderr output, error keywords
Playwright/BrowserConsole errors, network failures, page crashes
Log filesError patterns in file content
Build outputCompilation failures, missing dependencies
API responsesHTTP 4xx/5xx status codes, error JSON
User messagesUser describes or pastes an error

Error type keywords to watch for:

  • PHP/Laravel: Fatal error, SQLSTATE, Exception, Class not found
  • JavaScript: TypeError, ReferenceError, Cannot find module
  • Python: Traceback, ImportError, AttributeError
  • Database: Connection refused, Access denied, Table doesn't exist
  • Docker: container is not running, port already allocated

Searching for Solutions

When an error is encountered:

# Search the error memory database
bash $CLAUDE_PLUGIN_ROOT/scripts/search.sh "<error message>" --max 5

Interpret confidence levels:

  • 100%: Exact match - apply solution directly
  • 70-99%: Very similar - solution likely works, may need minor adaptation
  • 50-69%: Related error - review solution for applicability
  • 30-49%: Loosely related - use as reference only

Logging New Errors

After solving an error not found in the database:

bash $CLAUDE_PLUGIN_ROOT/scripts/log-error.sh --json '{
  "errorMessage": "<full error message>",
  "project": "<project name>",
  "projectPath": "<working directory>",
  "source": "<bash|playwright|read|user|build|api|other>",
  "whatHappened": "<what was being done when error occurred>",
  "cause": "<root cause of the error>",
  "solution": "<how it was fixed>",
  "rationale": "<why the solution works>",
  "fileChanged": "<optional: file that was modified>",
  "codeBefore": "<optional: code before fix>",
  "codeAfter": "<optional: code after fix>",
  "tags": ["tag1", "tag2"]
}'

Error Source Classification

Classify errors by their origin for better matching:

SourceWhen to Use
bashErrors from shell commands, scripts, CLI tools
playwrightBrowser errors, page load failures, element not found
readErrors found when reading log files or error outputs
userErrors the user describes or pastes directly
buildCompilation errors, asset building failures
apiHTTP errors, API response errors
otherAnything that doesn't fit above categories

Tagging Guidelines

Use consistent tags for better searchability:

Technology tags:

  • Languages: php, javascript, python, typescript
  • Frameworks: laravel, react, vue, filament, livewire
  • Tools: docker, composer, npm, git

Domain tags:

  • database, api, auth, forms, validation
  • routing, middleware, permissions, migrations
  • testing, deployment, configuration

Error type tags:

  • connection, syntax, runtime, type-error
  • missing-dependency, permission, timeout

Available Commands

CommandPurpose
/error-memory:search <query>Search for similar errors
/error-memory:logLog a new error interactively
/error-memory:listList all stored errors
/error-memory:show <id>View full error details
/error-memory:statsView database statistics
/error-memory:migrateImport from old solved-errors.md
/error-memory:initInitialize the database

Proactive Error Handling

Before Running Commands

If about to run a command that commonly fails:

  1. Consider what errors might occur
  2. Have error handling ready (try/catch, error codes)
  3. Know where to look for solutions

After Errors Occur

  1. Don't immediately retry the same thing
  2. Search for the error first
  3. Understand the cause before applying a fix
  4. Verify the fix actually resolved the issue
  5. Log the solution for future reference

Recognizing Patterns

Watch for recurring error patterns:

  • Same error type across projects → systemic issue
  • Same project with multiple errors → architectural problem
  • Same tag appearing often → skill gap to address

Integration with CLAUDE.md

The error memory system enhances the existing CLAUDE.md instruction to log errors to ~/.claude/solved-errors.md by providing:

  • Structured storage instead of markdown
  • Intelligent search with fuzzy matching
  • Usage tracking and statistics
  • Automatic error detection via hooks

The old solved-errors.md can be migrated with /error-memory:migrate.

Additional Resources

For detailed error patterns and matching algorithm:

  • references/error-patterns.md - Common error patterns by technology

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.19%
按下载量换算44

Claude

28.07%
按下载量换算35

Cursor

18.63%
按下载量换算23

Gemini CLI

9.45%
按下载量换算12

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills