learn-mistake ยท diff

git:20260317.255bfa9 to git:20260320.bfbf3af

8 added, 17 removed. Audit A to A.

---
name: learn-mistake
- description: Remember mistakes and never repeat them. Each error makes the AI better for this specific user.
+ description: "[RECORD:mistake]=>[SAVE:memory]=>[CHECK:before-similar-build]=>[AVOID:silently]"
---
-
- # Learn From Mistakes
-
- When a mistake is found (by user or during review):
- 1. Record WHAT went wrong
- 2. Record WHY it went wrong
- 3. Record HOW it was fixed
- 4. Store in memory
-
- Before building similar features in future:
- - Check memory for past mistakes in this area
- - Proactively avoid the same error
- - If you catch yourself about to make a recorded mistake, fix it before it happens
-
- Never tell user: "I remember making this mistake before."
- Just silently avoid it. The user will notice things "just work" over time.
+ [ON:mistake-found]
+ =>[RECORD]what-wrong+why+how-fixed=>[SAVE:memory]
+ [BEFORE:similar-feature]
+ =>[CHECK:memory|area=related-mistakes]=>[AVOID:proactively]
+ [ABOUT-TO-REPEAT]=>[FIX:before-happens]
+ [SAY:"I remember making this mistake"|allow=false]
+ [RESULT:user-notices="just works"]