#601

Global Rank · of 601 Skills

react-error-handling AI Agent Skill

View Source: oakoss/agent-skills

Safe

Installation

npx skills add oakoss/agent-skills --skill react-error-handling

45

Installs

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

Pattern API Key Points
Class boundary getDerivedStateFromError + componentDidCatch Manual implementation, full control
Function boundary <ErrorBoundary FallbackComponent={...} /> Uses react-error-boundary library
Reset mechanism resetErrorBoundary() or resetKeys={[dep]} Auto-reset on state change or manual retry
Error logging onError={(error, info) => log(error)} Log to analytics or monitoring service
Fallback component FallbackComponent={MyFallback} Receives error and resetErrorBoundary
Inline fallback fallback={<div>Error occurred</div>} Static JSX, no error details
Render prop fallback fallbackRender={({ error, reset }) => <UI />} Dynamic fallback with error access
Nested boundaries Wrap at multiple tree levels Granular error isolation
Route-level boundary TanStack Router errorComponent Delegate to tanstack-router skill
Suspense integration Wrap Suspense boundaries for async errors Catch errors thrown by Suspense
Event handler errors try/catch in handler, not error boundary Boundaries don't catch event errors
useErrorBoundary hook const { showBoundary, resetBoundary } = useErrorBoundary Manually trigger boundary from child

Common Mistakes

Mistake Correct Pattern
Using error boundary for events Use try/catch in event handlers
Wrapping every single component Place boundaries at meaningful UI sections
Not providing reset mechanism Include retry button or resetKeys
Showing stack traces in prod Only render stack in development mode
Missing onError for logging Always log errors to monitoring service
Catching errors in boundary self Error boundaries only catch child component errors
Using async code in getDerived getDerivedStateFromError must be pure, use didCatch
Relying on componentDidCatch Use getDerivedStateFromError for state updates
Not testing error boundaries Test with error-throwing components
Ignoring resetKeys pattern Use resetKeys for automatic recovery on state change
Blocking Suspense fallbacks Error 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

Installs

Installs 45
Global Rank #601 of 601

Security Audit

ath Safe
socket Safe
Alerts: 0 Score: 90
snyk Low
EU EU-Hosted Inference API

Power your AI Agents with the best open-source models.

Drop-in OpenAI-compatible API. No data leaves Europe.

Explore Inference API

GLM

GLM 5

$1.00 / $3.20

per M tokens

Kimi

Kimi K2.5

$0.60 / $2.80

per M tokens

MiniMax

MiniMax M2.5

$0.30 / $1.20

per M tokens

Qwen

Qwen3.5 122B

$0.40 / $3.00

per M tokens

How to use this skill

1

Install react-error-handling by running npx skills add oakoss/agent-skills --skill react-error-handling in your project directory. Run the install command above in your project directory. The skill file will be downloaded from GitHub and placed in your project.

2

No configuration needed. Your AI agent (Claude Code, Cursor, Windsurf, etc.) automatically detects installed skills and uses them as context when generating code.

3

The skill enhances your agent's understanding of react-error-handling, helping it follow established patterns, avoid common mistakes, and produce production-ready output.

What you get

Skills are plain-text instruction files — not executable code. They encode expert knowledge about frameworks, languages, or tools that your AI agent reads to improve its output. This means zero runtime overhead, no dependency conflicts, and full transparency: you can read and review every instruction before installing.

Compatibility

This skill works with any AI coding agent that supports the skills.sh format, including Claude Code (Anthropic), Cursor, Windsurf, Cline, Aider, and other tools that read project-level context files. Skills are framework-agnostic at the transport level — the content inside determines which language or framework it applies to.

Data sourced from the skills.sh registry and GitHub. Install counts and security audits are updated regularly.

EU Made in Europe

Chat with 100+ AI Models in one App.

Use Claude, ChatGPT, Gemini alongside with EU-Hosted Models like Deepseek, GLM-5, Kimi K2.5 and many more.

Customer Support