Autonomous error correction and system recovery. Use when tests fail, builds break, or runtime errors occur.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add skeletorflet/opencode-supreme-setup --skill self-healing --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Self Healing?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/skeletorflet-self-healing)More formats (shields.io, HTML) on the badges page.
---
name: self-healing
description: Autonomous error correction and system recovery. Use when tests fail, builds break, or runtime errors occur.
---
## self-healing
Automatically diagnose and repair issues.
### Protocol
1. **Analyze Error**: Capture full stdout/stderr of the failing command.
2. **Context Retrieval**: Use `grep` or LSP to find the relevant code mentioned in the trace.
3. **Hypothesis**: Identify the root cause (e.g., syntax error, missing dependency, logic bug).
4. **Fix Execution**: Apply the minimal fix using `edit` or `sed`.
5. **Verification**: Re-run the command that failed.
6. **Iteration**: If it fails again, repeat from step 1 with the new error.
### Best Practices
- **Silent Fixes**: Do not explain why it failed unless asked. Just fix it.
- **Dependency Check**: If a module is missing, install it immediately.
- **Regression Guard**: After fixing, run all related tests to ensure no new bugs.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Practical guide to testing web applications with screen readers for comprehensive accessibility validation.