agentsclimarketplace

Ai error resilience

Skill varunk130/ai-ux-skill-library/skills/ai-error-resilience

The 12-skill AI UX design engine for Claude Code & GitHub Copilot — purpose-built for designing UX for AI products, agents, and experiences.

Install
npx -y skills add varunk130/ai-ux-skill-library --skill ai-error-resilience

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

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Design graceful failure experiences for AI products - hallucinations, uncertainty, wrong outputs, and edge cases. Use when: AI hallucination UX, error handling for AI, uncertainty design, graceful degradation, AI failure recovery, confidence thresholds, safe fallbacks.

SKILL.md

9.4 KB, as published. Nobody here has run it

AI Error Resilience

Design AI products that fail gracefully, communicate uncertainty honestly, and help users recover without losing trust. The RECOVER framework treats AI errors as a design material, not a bug to hide.

Core Principle

Traditional software has bugs. AI has probabilistic outputs on a spectrum of correctness. You cannot design AI UX using binary error/success patterns. Instead, design for a continuum: right, mostly right, partially right, uncertain, wrong, and dangerously wrong.


The RECOVER Framework

LetterPhaseDesign Question
RRecognizeCan the system detect when its output may be unreliable?
EExpress UncertaintyDoes the interface clearly communicate degrees of confidence to the user?
CContain Blast RadiusIf the AI is wrong, what's the worst that can happen? How is damage limited?
OOffer AlternativesDoes the user get a Plan B when Plan A might be wrong?
VVerify CollaborativelyCan the user easily check, correct, or confirm the AI's output?
EEvolve from ErrorsDoes the system learn from this error type to prevent future occurrences?
RRestore ConfidenceAfter a failure, how does the product rebuild the user's willingness to try again?

AI Error Taxonomy

Not all AI errors are created equal. Each type requires a different UX response.

Error TypeDescriptionSeverityUX Response Pattern
Confident hallucinationAI invents facts and states them as truthCriticalCitation requirement + verification prompt
Stale knowledgeAI references outdated informationHighTimestamp + "knowledge cutoff" indicator
Context misreadAI misinterprets the user's intent or contextMediumReflect understanding before answering
Partial answerAI addresses some but not all parts of a queryMediumChecklist showing what was/wasn't addressed
Formatting errorContent is correct but presented poorlyLowEasy reformat/regenerate affordance
Refusal overreachAI refuses a legitimate request due to overly strict safety filtersMediumExplain why + offer alternative path
Confidence inversionAI is most confident when it's most wrongCriticalMandatory human review for high-stakes outputs

The Error Severity Matrix

Use this matrix to determine the appropriate UX response based on error probability and consequence:

Low ConsequenceMedium ConsequenceHigh Consequence
High Probability of ErrorAuto-correct silently + logWarn before action + suggest alternativesBlock action + require human approval
Medium ProbabilityShow confidence indicatorPresent with verification promptRequire explicit confirmation + evidence
Low ProbabilityNo intervention neededSubtle confidence signalAdd verification step for critical outputs

Uncertainty Communication Patterns

The Hedging Spectrum

From most to least uncertain, calibrate AI language:

Confidence LevelAI Language PatternVisual SignalExample
90%+Direct statementGreen / no indicator"The meeting is scheduled for 3pm."
70-90%Qualified statementAmber indicator"Based on the data available, the meeting appears to be at 3pm."
50-70%Explicit uncertaintyAmber + explanation"I found conflicting information. It may be 3pm, but some sources say 2pm."
30-50%Presented as possibilitiesRed indicator"I'm not confident about this. Here are the possibilities I found: [list]"
Below 30%Deferred to user/humanRed + escalation"I don't have enough information to answer reliably. Here's what might help: [resources]"

Anti-pattern: Using the same hedging language for everything ("I think..." prepended to every response). This makes hedging meaningless. Reserve it for genuine uncertainty.


The Hallucination Defense Playbook

Prevention Layer (Before Output)

StrategyHow It WorksImplementation
Source groundingOnly make claims traceable to provided sourcesRAG architecture with citation requirements
Constraint declarationsAI states what information it's working from"Based on the 3 documents you uploaded..."
Confidence gatingSuppress outputs below confidence thresholdSet per-use-case thresholds (e.g., medical = 90%, casual = 50%)
Scope framingAI explicitly states what's in and out of scope"I can help with X. For Y, you'll need [alternative]."

Detection Layer (During Output)

StrategyHow It WorksImplementation
Self-consistency checkingGenerate multiple responses; flag divergenceIf 3 generations disagree, show the disagreement to the user
Factual anchoringCross-reference claims against known dataHighlight claims that don't match provided sources
Temporal markersFlag information that may be outdated"This information is from [date]. Verify current status."

Recovery Layer (After Error)

StrategyHow It WorksImplementation
One-click correctionUser marks output as wrong with minimal effortThumbs down + "What was wrong?" dropdown
Regeneration with guidanceUser can ask AI to try again with a hint"Try again, but focus on [specific angle]"
Human escalationSeamless handoff to human when AI fails"Let me connect you with someone who can help with this."
Error acknowledgmentAI explicitly owns the mistake"You're right - my previous answer was incorrect. Here's the corrected version."

Safe Fallback Design

Every AI output needs a fallback plan. Design the fallback hierarchy:

PriorityFallback LevelWhat HappensUser Experience
1Graceful degradationAI provides a less detailed but more reliable answer"I can give you a general answer, but for specifics you'll want to check [source]."
2Transparent limitationAI explains what it can't do and why"I don't have access to real-time data for this. Here's what I know as of [date]."
3Alternative pathAI suggests another way to accomplish the goal"I can't do X directly, but here's how you might approach it using Y."
4Human handoffAI transfers to a human with full context"Transferring you to a specialist. I've shared our conversation so you won't need to repeat yourself."
5Graceful exitAI acknowledges the dead end respectfully"I've reached the limit of what I can help with here. Here are some resources that might help: [links]"

Anti-pattern: The cliff-edge fallback - AI works perfectly until it doesn't, then shows a generic "Something went wrong" error with no path forward.


The Blast Radius Audit

For every AI feature, map the blast radius of failure:

QuestionWhat to Document
What's the worst output the AI could produce?Specific harmful scenarios, not abstract risks
Who is harmed if the AI is wrong?End user, downstream consumers of the output, third parties
Is the harm reversible?Can the user undo, correct, or recover from a bad output?
How quickly is the error detectable?Immediately (user sees it), delayed (downstream impact), or hidden (user doesn't know)?
What safeguards exist?Human review, verification prompts, confidence gates, output constraints

Anti-Patterns

PatternWhy It Fails
Hiding uncertainty behind confident languageCreates automation bias; users can't calibrate trust
Showing a spinner then delivering a hallucinationUsers equate "thinking time" with reliability - longer processing implies more trustworthy answers
Generic error messages ("Something went wrong")Tells the user nothing actionable. Always specify: what failed, why, and what to do next
Requiring users to detect AI errors themselvesUsers are not QA testers. Build detection into the system
Punishing users for reporting errorsIf the correction flow is cumbersome, users will stop reporting and start silently distrusting
Overcorrecting after one errorDropping confidence displays to 0 after one mistake makes the system unusable. Recalibrate, don't overreact

Quick Reference

TaskFramework ElementKey Deliverable
Design error handling for AI productFull RECOVER frameworkError type map + severity matrix + fallback hierarchy
Audit AI product for failure risksBlast Radius AuditRisk map with harm scenarios and safeguards
Design hallucination preventionHallucination Defense Playbook3-layer defense (prevention, detection, recovery)
Calibrate uncertainty languageHedging SpectrumLanguage guidelines matched to confidence levels
Design safe fallback flowSafe Fallback Hierarchy5-level fallback chain with user experience specs

Integration

Works with: ai-trust-transparency (how errors affect trust), ai-conversation-architect (error recovery in dialogue), ai-safety-guardrails (preventing harmful errors), ai-feedback-loops (learning from error reports).

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.