631 B
631 B
name, description, type
| name | description | type |
|---|---|---|
| No loops - move forward | Don't get stuck in retry loops. If approach fails 2-3 times, switch strategy or skip and move on. | feedback |
Don't loop on the same problem repeatedly. If an approach fails 2-3 times, STOP and either:
- Try a completely different approach
- Skip it and move forward with what works
- Ask the user
Why: Wasted an hour retrying MicroOVN cluster joins with slight variations - same failure each time. User called it out as a "loop".
How to apply: Set a mental limit of 3 attempts per approach. After that, escalate or skip. Time is more valuable than completeness.