Auto-sync memory 2026-04-22_00:55

This commit is contained in:
Claude Code
2026-04-22 00:55:09 +03:00
committed by Claude Code STORAI
parent ff854d485e
commit da5df6df40
8 changed files with 146 additions and 158 deletions

14
feedback_no_loops.md Normal file
View File

@@ -0,0 +1,14 @@
---
name: No loops - move forward
description: Don't get stuck in retry loops. If approach fails 2-3 times, switch strategy or skip and move on.
type: feedback
---
Don't loop on the same problem repeatedly. If an approach fails 2-3 times, STOP and either:
1. Try a completely different approach
2. Skip it and move forward with what works
3. 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.