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

error-handling-recovery错误处理恢复

Agent Skill

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

总安装

776

周安装

33

GitHub Stars

21

下载量

272
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sanky369/vibe-building-skills --skill error-handling-recovery

简介

error-handling-recovery 教授以用户为中心的错误体验设计方法,避免指责式提示。

  • 适用于移动端、Web 表单或任何需要友好错误状态的交互界面设计。
  • 提供从预防输入错误到引导用户恢复的完整 UX 模式库。
  • 安装方式:通过 npx 从 GitHub 仓库添加,无需特殊权限,但需结合产品上下文使用。
  • 侧重设计原则而非具体代码实现,需开发者自行落地到技术方案中。

SKILL.md

Error Handling & Recovery

Overview

Errors are inevitable. The difference between a frustrating product and a caring one is how you handle them. This skill teaches you to design error states that guide users to resolution rather than leaving them stranded.

Core Philosophy: Never Blame the User

The first principle of error design is never blame the user. Errors are opportunities to help, not to criticize.

Bad Error Messages:

  • "Invalid input"
  • "Error 404"
  • "Something went wrong"

Good Error Messages:

  • "Please enter a valid email address (e.g., user@example.com)"
  • "We couldn't find that page. Try searching instead."
  • "Your connection was lost. We saved your work. Reconnect when ready."

Error Message Anatomy

The Four Components

Every error message should include:

  1. What happened — Clear, specific description
  2. Why it happened — Context for the user
  3. What to do — Actionable next steps
  4. Where to get help — Support resources if needed

Example: Complete Error Message

❌ Email already in use

This email is already associated with an account.

Try:
- Sign in with this email instead
- Use a different email address
- Reset your password if you forgot it

Need help? Contact support@example.com

Error Message Design Principles

1. Be Specific, Not Generic

<!-- Bad - Generic -->
<div class="error">Error: Invalid field</div>

<!-- Good - Specific -->
<div class="error">
  <strong>Password must be at least 8 characters</strong>
  <p>Include uppercase, lowercase, and numbers</p>
</div>

2. Use Friendly, Human Language

<!-- Bad - Technical jargon -->
<div class="error">CORS policy violation detected</div>

<!-- Good - Human language -->
<div class="error">
  We couldn't connect to the server. Check your internet and try again.
</div>

3. Place Errors Next to the Problem

<!-- Bad - Error far from input -->
<div class="error-summary">Email is invalid</div>
<form>
  <input type="email" />
</form>

<!-- Good - Error next to input -->
<form>
  <div class="form-group">
    <label for="email">Email</label>
    <input id="email" type="email" />
    <div class="error">Please enter a valid email</div>
  </div>
</form>

4. Use Visual Indicators (Not Color Alone)

/* Bad - Color only */
.error-input {
  border-color: red;
}

/* Good - Icon + color + text */
.error-input {
  border-color: var(--error-color);
  border-width: 2px;
}

.error-input::before {
  content: '⚠️';
  margin-right: 8px;
}

5. Provide Constructive Guidance

<!-- Bad - Just says what's wrong -->
<div class="error">Password too weak</div>

<!-- Good - Explains how to fix -->
<div class="error">
  <strong>Password too weak</strong>
  <ul>
    <li>✓ At least 8 characters</li>
    <li>✗ At least one uppercase letter</li>
    <li>✓ At least one number</li>
    <li>✓ At least one special character</li>
  </ul>
</div>

Error Types and Patterns

1. Validation Errors

Errors that occur when user input doesn't meet requirements.

Timing: Show after user leaves the field (blur event)

// Good - Validate on blur, not while typing
const handleBlur = (e) => {
  const value = e.target.value;
  if (!isValidEmail(value)) {
    showError('Please enter a valid email');
  }
};

// Bad - Validate while typing
const handleChange = (e) => {
  if (!isValidEmail(e.target.value)) {
    showError('Invalid email');  // Too aggressive
  }
};

2. Network Errors

Errors that occur when the server is unreachable or requests fail.

Pattern: Show error, offer retry, allow offline continuation

<div class="error-state">
  <span class="error-icon">📡</span>
  <h3>Connection Lost</h3>
  <p>We couldn't reach the server. Your changes are saved locally.</p>
  <button class="button-primary">Retry</button>
  <button class="button-secondary">Continue Offline</button>
</div>

3. Permission Errors

Errors that occur when user lacks permission to perform an action.

Pattern: Explain why, offer alternatives, suggest next steps

<div class="error-state">
  <span class="error-icon">🔒</span>
  <h3>Permission Denied</h3>
  <p>You don't have permission to edit this document.</p>
  <p>Ask the owner to give you edit access.</p>
  <button class="button-secondary">Request Access</button>
</div>

4. System Errors

Errors that occur due to system failures or unexpected issues.

Pattern: Apologize, explain impact, offer workarounds

<div class="error-state">
  <span class="error-icon">⚠️</span>
  <h3>Something Went Wrong</h3>
  <p>We're having trouble processing your request. Our team has been notified.</p>
  <p>Error ID: #12345 (share this if contacting support)</p>
  <button class="button-primary">Try Again</button>
  <button class="button-secondary">Contact Support</button>
</div>

5. 404 Errors

Errors that occur when requested resource doesn't exist.

Pattern: Acknowledge, explain, guide to alternatives

<div class="error-state">
  <h1>404 - Page Not Found</h1>
  <p>The page you're looking for doesn't exist or has been moved.</p>
  <form class="search-form">
    <input type="search" placeholder="Search for what you need..." />
    <button type="submit">Search</button>
  </form>
  <nav class="error-nav">
    <a href="/">Home</a>
    <a href="/help">Help Center</a>
    <a href="/contact">Contact Us</a>
  </nav>
</div>

Error Message Styling

CSS for Error States

/* Error container */
.error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  background: var(--error-bg);
  border-radius: 8px;
  border-left: 4px solid var(--error-color);
}

/* Error icon */
.error-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

/* Error title */
.error-state h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--error-color);
  margin-bottom: 8px;
}

/* Error description */
.error-state p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 400px;
}

/* Error input */
.error-input {
  border-color: var(--error-color);
  border-width: 2px;
  background-color: var(--error-bg);
}

.error-input:focus {
  border-color: var(--error-color);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error message below input */
.error-message {
  display: flex;
  align-items: center;
  margin-top: 8px;
  font-size: 14px;
  color: var(--error-color);
  animation: slideDown 300ms ease-out;
}

.error-message::before {
  content: '⚠️';
  margin-right: 8px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

Recovery Workflows

Pattern 1: Inline Recovery

For simple errors, provide recovery action inline.

<div class="form-group">
  <label for="email">Email</label>
  <input id="email" type="email" />
  <div class="error">
    This email is already registered.
    <button class="link-button">Sign in instead</button>
  </div>
</div>

Pattern 2: Modal Recovery

For critical errors, use a modal to guide recovery.

<div class="modal error-modal">
  <div class="modal-content">
    <h2>Payment Failed</h2>
    <p>Your card was declined. Please try another payment method.</p>
    <form>
      <div class="form-group">
        <label>Card Number</label>
        <input type="text" placeholder="1234 5678 9012 3456" />
      </div>
      <button class="button-primary">Try Again</button>
      <button class="button-secondary">Use Different Method</button>
    </form>
  </div>
</div>

Pattern 3: Progressive Recovery

For complex errors, guide users through steps.

<div class="recovery-steps">
  <div class="step active">
    <h3>Step 1: Check Connection</h3>
    <p>Make sure you're connected to the internet.</p>
    <button class="button-primary">Retry</button>
  </div>
  <div class="step">
    <h3>Step 2: Clear Cache</h3>
    <p>Clear your browser cache and try again.</p>
    <button class="button-secondary">Learn How</button>
  </div>
  <div class="step">
    <h3>Step 3: Contact Support</h3>
    <p>If the problem persists, contact our support team.</p>
    <button class="button-secondary">Contact Support</button>
  </div>
</div>

Graceful Degradation

When features fail, degrade gracefully rather than breaking the entire interface.

Example: Image Loading Error

<!-- Show fallback when image fails -->
<img
  src="image.jpg"
  alt="Product photo"
  onerror="this.src='placeholder.jpg'"
/>

Example: Feature Unavailable

<!-- Disable feature, explain why -->
<button disabled title="Feature unavailable in offline mode">
  Share
</button>
<p class="help-text">
  You're offline. Sharing will be available when you reconnect.
</p>

Accessibility in Error Handling

1. Announce Errors to Screen Readers

<div role="alert" aria-live="polite">
  Please enter a valid email address
</div>

2. Use ARIA Attributes

<input
  type="email"
  aria-invalid="true"
  aria-describedby="email-error"
/>
<div id="email-error" class="error-message">
  Please enter a valid email
</div>

3. Don't Rely on Color Alone

/* Bad - Color only */
.error-input {
  border-color: red;
}

/* Good - Icon + color + text */
.error-input {
  border: 2px solid red;
}

.error-input::after {
  content: '⚠️';
}

How to Use This Skill with Claude Code

Design Error States

"I'm using the error-handling-recovery skill. Can you help me design error states for:
- Form validation errors
- Network failures
- Permission denied
- 404 pages
Include specific error messages and recovery actions"

Create Error Message Guidelines

"Can you create error message guidelines for my app?
- Never blame the user
- Always provide next steps
- Include error IDs for support
- Use friendly language"

Audit Error Handling

"Can you audit my error handling?
- Are my error messages specific?
- Do I provide recovery actions?
- Are errors accessible?
- Can users recover without support?"

Integration with Other Skills

  • component-architecture — Error components
  • accessibility-excellence — Accessible error messages
  • interaction-design — Error animations and transitions
  • typography-system — Error message typography

Key Principles

1. Never Blame the User Errors are opportunities to help, not criticize.

2. Be Specific Generic errors leave users confused and frustrated.

3. Provide Recovery Always offer a path forward.

4. Be Human Use friendly, conversational language.

5. Make It Accessible Errors must be perceivable to everyone.

Checklist: Is Your Error Handling Ready?

  • Error messages are specific, not generic
  • Error messages use friendly language
  • Errors are placed next to the problem
  • Visual indicators are used (not color alone)
  • Recovery actions are provided
  • Errors are announced to screen readers
  • Error IDs are provided for support
  • Network errors offer retry options
  • Permission errors explain why
  • 404 pages guide to alternatives

Thoughtful error handling transforms frustration into confidence.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

30.67%
按下载量换算83

Codex

23.74%
按下载量换算65

Gemini CLI

19.68%
按下载量换算54

OpenCode

12.52%
按下载量换算34

Antigravity

7.37%
按下载量换算20

Cursor

3.26%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills