AgentSkillsCN

error-recovery

为所有代理操作提供结构化的错误处理协议。确保用户收到清晰的错误报告、故障排除指南和可操作的下一步。当任何工具操作失败、出现错误或产生意外结果时使用。

SKILL.md
--- frontmatter
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

code
[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.