Follow a structured recovery decision tree when tool calls fail instead of blindly retrying or giving up.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add thedixitjain/the-mega-skill-library --skill hiveerror-recovery --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Hiveerror Recovery?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/thedixitjain-hiveerror-recovery)More formats (shields.io, HTML) on the badges page.
---
name: hiveerror-recovery
description: "Follow a structured recovery decision tree when tool calls fail instead of blindly retrying or giving up."
category: general-purpose
source_repo: aden-hive/hive
source_path: "core/framework/skills/_default_skills/error-recovery/SKILL.md"
source_url: https://github.com/aden-hive/hive/blob/HEAD/core/framework/skills/_default_skills/error-recovery/SKILL.md
---
## Operational Protocol: Error Recovery
When a tool call fails:
1. **Diagnose** — classify the failure as *transient* (network blip, rate limit, timeout) or *structural* (wrong selector, missing auth, invalid schema, permission denied).
2. **Decide:**
- Transient → retry once.
- Structural + fixable → fix the input and retry.
- Structural + unfixable → record the failure and move to the next item.
- Blocking all progress → escalate.
3. **Adapt** — if the same tool has failed {{max_retries_per_tool}}+ times in a row, stop using it and find an alternative approach.
**Never silently drop a failed item.** If the item is a task in the colony queue, write the failure to the DB instead of an in-memory buffer:
```bash
sqlite3 "$DB_PATH" "UPDATE tasks SET status='failed', last_error='<one-sentence reason>', completed_at=datetime('now'), updated_at=datetime('now') WHERE id='<task-id>' AND worker_id='<your-worker-id>';"
```
The `tasks.retry_count` column and the stale-claim reclaimer handle auto-retry for crashes; your job is the within-run decision tree above. See `hive.colony-progress-tracker` for the full queue protocol.
---
**Source:** [`aden-hive/hive`](https://github.com/aden-hive/hive) → `core/framework/skills/_default_skills/error-recovery/SKILL.md`
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!