agentsclimarketplace

Error handling

Skill DevelopersGlobal/ai-agent-skills/skills/error-handling

AI agent skills for production grade applications

Install
npx -y skills add DevelopersGlobal/ai-agent-skills --skill error-handling

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its author says it does

Copied from the file, not written here

Graceful degradation and meaningful error messages. Errors are first-class citizens, not afterthoughts. Every error path is designed, not discovered.

SKILL.md

3.6 KB, as published. Nobody here has run it

Overview

Error handling is not defensive programming — it's a user experience. When things go wrong (and they will), the system should degrade gracefully, give users actionable information, and leave enough telemetry to diagnose and fix the problem.

When to Use

  • When writing any code that can fail (I/O, network, parsing, user input)
  • When reviewing error handling in existing code
  • Before any service goes to production

Process

Step 1: Design Error Paths Explicitly

  1. For every operation, list: what can fail? What does failure look like?
  2. Classify failures:
    • Transient: Retry likely to succeed (network blip, temporary unavailability)
    • Client error: Bad input from the caller (4xx) — don't retry
    • System error: Internal failure (5xx) — alert, investigate
  3. Design the failure path for each class before writing the happy path.

Verify: Error classes defined for every external operation.

Step 2: Meaningful Error Messages

  1. Every error message answers: what went wrong? How can the caller fix it?
  2. User-facing errors: friendly language, no stack traces.
  3. Developer-facing errors (logs): full context, request ID, stack trace.
  4. Never expose internal system details (DB schema, file paths) in user-facing errors.

Verify: Each error message would help a user or developer understand and fix the problem.

Step 3: Retry with Backoff

  1. Transient errors: retry with exponential backoff + jitter.
  2. Maximum retries: 3 (not infinite).
  3. After max retries: fail with a clear error, log the final failure.
  4. Non-transient errors (validation, auth): never retry.

Verify: Retry logic has a maximum. Non-transient errors don't retry.

Step 4: Graceful Degradation

  1. Identify non-critical dependencies. If they fail, degrade — don't crash.
  2. Example: recommendation engine fails → show default content, not 500.
  3. Circuit breaker pattern for failing dependencies: fail fast after threshold, recover automatically.

Verify: Every non-critical dependency has a defined degraded state.

Step 5: Structured Error Responses (APIs)

  1. API errors return consistent structure:
    {
      "error": {
        "code": "INVALID_EMAIL",
        "message": "The email address format is invalid.",
        "requestId": "req_abc123"
      }
    }
    
  2. HTTP status codes used correctly: 400 (client error), 404 (not found), 429 (rate limited), 500 (server error).

Common Rationalizations (and Rebuttals)

ExcuseRebuttal
"I'll add error handling later"Later means in production, under pressure, while users are impacted.
"This can't fail"Everything can fail. Network calls, disk writes, parsing — all can fail.
"The error message doesn't matter"It matters when a developer is debugging at 2am.

Verification

  • Error classes defined for every external operation
  • Error messages answer: what went wrong? How to fix?
  • Transient errors retry with max limit
  • Non-critical dependencies have graceful degraded states
  • API errors return consistent structured format
  • No internal system details in user-facing errors

References

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.