Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

react-error-handlingReact error handling 开发

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

1,148

周安装

46

GitHub Stars

10

下载量

372
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/oakoss/agent-skills --skill react-error-handling

简介

专注于 React 应用错误处理的开发辅助技能。

  • 适用于生成或审查组件错误边界、异常捕获逻辑和用户提示代码。
  • 通过 GitHub 安装,需结合项目路由与构建流程使用,避免孤立代码片段。
  • 涉及页面改动时应本地预览确认视觉效果,确保错误处理不影响整体功能。
  • 注意遵循现有设计系统,保持与项目技术栈一致。

SKILL.md

React Error Handling

Overview

Error boundaries catch JavaScript errors during rendering, in lifecycle methods, and in constructors of child components. They display fallback UIs instead of crashing the entire component tree. Error boundaries can only be implemented as class components in vanilla React, but the react-error-boundary library provides a convenient function component wrapper.

When to use: Component crashes, preventing error propagation to parent routes, graceful degradation, user-facing error states, error logging and monitoring.

When NOT to use: Event handler errors (use try/catch), async callbacks outside rendering (setTimeout, promises without Suspense), server-side rendering errors, errors in the boundary itself.

Quick Reference

PatternAPIKey Points
Class boundarygetDerivedStateFromError + componentDidCatchManual implementation, full control
Function boundary<ErrorBoundary FallbackComponent={...} />Uses react-error-boundary library
Reset mechanismresetErrorBoundary() or resetKeys={[dep]}Auto-reset on state change or manual retry
Error loggingonError={(error, info) => log(error)}Log to analytics or monitoring service
Fallback componentFallbackComponent={MyFallback}Receives error and resetErrorBoundary
Inline fallbackfallback={<div>Error occurred</div>}Static JSX, no error details
Render prop fallbackfallbackRender={({error, reset}) => <UI />}Dynamic fallback with error access
Nested boundariesWrap at multiple tree levelsGranular error isolation
Route-level boundaryTanStack Router errorComponentDelegate to tanstack-router skill
Suspense integrationWrap Suspense boundaries for async errorsCatch errors thrown by Suspense
Event handler errorstry/catch in handler, not error boundaryBoundaries don't catch event errors
useErrorBoundary hookconst {showBoundary, resetBoundary} = useErrorBoundaryManually trigger boundary from child

Common Mistakes

MistakeCorrect Pattern
Using error boundary for eventsUse try/catch in event handlers
Wrapping every single componentPlace boundaries at meaningful UI sections
Not providing reset mechanismInclude retry button or resetKeys
Showing stack traces in prodOnly render stack in development mode
Missing onError for loggingAlways log errors to monitoring service
Catching errors in boundary selfError boundaries only catch child component errors
Using async code in getDerivedgetDerivedStateFromError must be pure, use didCatch
Relying on componentDidCatchUse getDerivedStateFromError for state updates
Not testing error boundariesTest with error-throwing components
Ignoring resetKeys patternUse resetKeys for automatic recovery on state change
Blocking Suspense fallbacksError boundaries around Suspense should allow fallbacks

Delegation

If the tanstack-router skill is available, delegate route-level error handling (errorComponent, notFoundComponent, loader errors) to it. Otherwise, recommend: npx skills add oakoss/agent-skills --skill tanstack-router
  • Error monitoring setup: Delegate to integration/observability specialists
  • Complex recovery flows: Use Task agent for multi-step error recovery patterns
  • Error boundary testing: Delegate test writing to testing specialists

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.83%
按下载量换算130

Claude

31.55%
按下载量换算117

Cursor

20.62%
按下载量换算77

Gemini CLI

10.22%
按下载量换算38

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills