| name | error-handling-process |
| description | Structured error handling - stop, assess, log, route, then fix or escalate. Prevents compounding problems. |
Error Handling Process
Trigger
A command fails or error occurs.
Steps
- STOP - Don't compound the problem
- ASSESS - What exactly failed? Read error message.
- LOG - Record error in Memory MCP if significant
- ROUTE - Can I fix this? Or need user input?
- FIX or ESCALATE - Apply fix, or ask user
Don't Do
- Ignore errors and continue
- Retry same thing without understanding why it failed
- Hide failures from user