error-recovery

Provides structured error handling protocol for all agent operations. Ensures users receive clear error reports, troubleshooting guidance, and actionable next steps. Use when any tool operation fails, encounters an error, or produces unexpected results.

$ Installer

git clone https://github.com/costiash/CognivAgent /tmp/CognivAgent && cp -r /tmp/CognivAgent/app/agent/resources/.claude/skills/error-recovery ~/.claude/skills/CognivAgent

// tip: Run this command in your terminal to install the skill


name: error-recovery description: Provides structured error handling protocol for all agent operations. Ensures users receive clear error reports, troubleshooting guidance, and actionable next steps. Use when any tool operation fails, encounters an error, or produces unexpected results.

Error Recovery

On Failure Protocol

  1. STOP IMMEDIATELY — Do not continue with other actions
  2. REPORT CLEARLY — Explain what went wrong concisely
  3. OFFER NEXT STEPS — Provide specific troubleshooting or retry options
  4. WAIT FOR RESPONSE — Do NOT proceed autonomously

Error Response Template

[Operation] Failed

[Brief explanation of what went wrong]

This can happen when:
- [Possible cause 1]
- [Possible cause 2]

**Would you like to:**
1. [Retry option]
2. [Alternative option]
3. Cancel and return to main menu

Please let me know how you'd like to proceed.

Common Error Patterns

CategoryErrorTroubleshooting
TranscriptionYouTube URL invalidCheck URL format and video availability
TranscriptionFile not foundVerify file path exists
TranscriptionFFmpeg missingInstall FFmpeg (apt install ffmpeg)
TranscriptionAPI key missingSet OPENAI_API_KEY environment variable
TranscriptionTimeoutVideo too long; suggest splitting
KGBootstrap failedTranscript may be too short or lack entities
KGExtraction failedProject may not be bootstrapped yet
KGProject not foundCheck project ID validity

NEVER Do

  • Try to work around failures without user consent
  • Make assumptions about what went wrong
  • Proceed with alternative approaches autonomously
  • Leave the user stuck without a path forward

This saves time and money by avoiding unnecessary API calls when something has already failed.