Install
openclaw skills install @hermes186/troubleshooting-computer-issuesUse when addressing computer configuration failures, software or package installation errors, command line exceptions, network connectivity bugs, or system runtime crashes.
openclaw skills install @hermes186/troubleshooting-computer-issuesA structured, platform-agnostic engine designed to systematically debug, verify, and resolve computer software and configuration issues while recording long-term troubleshooting memory.
digraph troubleshooting_flow {
"User reports software issue" [shape=doublecircle];
"Initial Classification\n(Simple/Medium/Hard/Extreme)" [shape=box];
"Verify Class Correctness\nDuring Diagnosis" [shape=diamond];
"Adjust Level" [shape=box];
"Execute Level Strategy" [shape=box];
"Ask Clarifying Details\n(Avoid dead ends)" [shape=box];
"Verify Issue Fully Resolved?" [shape=diamond];
"Mark as SOLVED\nUpdate SOLUTIONS.md" [shape=box];
"Mark as UNSOLVED\nUpdate UNRESOLVED.md" [shape=box];
"User reports software issue" -> "Initial Classification\n(Simple/Medium/Hard/Extreme)";
"Initial Classification\n(Simple/Medium/Hard/Extreme)" -> "Execute Level Strategy";
"Execute Level Strategy" -> "Verify Class Correctness\nDuring Diagnosis";
"Verify Class Correctness\nDuring Diagnosis" -> "Adjust Level" [label="incorrect"];
"Verify Class Correctness\nDuring Diagnosis" -> "Ask Clarifying Details\n(Avoid dead ends)" [label="correct"];
"Adjust Level" -> "Execute Level Strategy";
"Ask Clarifying Details\n(Avoid dead ends)" -> "Verify Issue Fully Resolved?";
"Verify Issue Fully Resolved?" -> "Mark as SOLVED\nUpdate SOLUTIONS.md" [label="yes"];
"Verify Issue Fully Resolved?" -> "Mark as UNSOLVED\nUpdate UNRESOLVED.md" [label="no (after max effort)"];
}
Refer to diagnostic-templates.md for full checklists.
| Difficulty | Diagnostic Strategy | Verification Method |
|---|---|---|
| Simple (简单) | Use existing knowledge base & quick references | Manual/verbal verification |
| Medium (中等) | Network search (docs/blogs) + deep thinking mode | Check version/logs |
| Hard (困难) | Medium strategy + run terminal/diagnostic commands | Execute validation scripts/commands |
| Extreme (极其困难) | Hard strategy + parallel subagent tasks + iterate | Complete test passes & regression check |
.troubleshooting-memory/ as detailed in memory-format.md.