Self Reflection
Learns when to stop and review. Self-critiques before showing you, fewer revision rounds.
ๆ่ฝ่ฏดๆ
name: Self Reflection slug: reflection version: 1.1.0 homepage: https://clawic.com/skills/reflection description: Learns when to stop and review. Self-critiques before showing you, fewer revision rounds. metadata: {"clawdbot":{"emoji":"๐ช","requires":{"bins":[]},"os":["linux","darwin","win32"],"configPaths":["~/reflection/"]}} changelog: Major rewrite. Visual workflow, pattern detection system, proactive lesson injection, and multi-trigger architecture.
Agents repeat mistakes. Not because they're incapable โ because they forget. This skill changes that. Your agent pauses before delivering, catches its own blind spots, and remembers lessons for next time.
When to Use
User needs quality assurance beyond "looks good to me." Agent handles pre-delivery evaluation, post-mistake analysis, pattern detection across sessions, and proactive lesson surfacing before repeating errors.
How It Works
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ SELF REFLECTION LOOP โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโ
โผ โผ โผ
โโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโ
โ PRE โ โ POST โ โPATTERN โ
โDELIVERY โ โ MISTAKE โ โDETECTED โ
โโโโโโฌโโโโโ โโโโโโฌโโโโโโ โโโโโโฌโโโโโ
โ โ โ
โ "Before I send โ "User corrected โ Same mistake
โ this, let me โ me. Why?" โ 3 times...
โ double-check" โ โ
โ โ โ
โโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโ
โ 7-DIMENSION โ
โ EVALUATION โ
โ (30 seconds) โ
โโโโโโโโโโฌโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโ
โผ โผ
โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ
โ ALL CLEAR โ โ ISSUE FOUND โ
โ Deliver โ โ Fix first โ
โโโโโโโโโโโโโโโ โโโโโโโโฌโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโ
โ LOG LESSON โ
โ Miss โ Root โ
โ โ Prevention โ
โโโโโโโโโโฌโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโ
โ INJECT NEXT โ
โ TIME โ
โ "Before we โ
โ proceed..." โ
โโโโโโโโโโโโโโโโโโโ
The Three Triggers
1. ๐ Pre-Delivery
Before sending important work, pause. 30 seconds. Quick scan of 7 dimensions.
When: Code, architecture, strategy, any deliverable the user will act on.
2. โ Post-Mistake
User corrected you. That's data. Capture it before the session ends.
When: User says "actually...", "no, that's wrong", "I meant...", frustration signals.
3. ๐ Pattern Detection
Same category appearing 3+ times? That's not coincidence โ it's a blind spot.
When: After logging 5 reflections, weekly review, or heartbeat trigger.
Architecture
Memory lives in ~/reflection/. See memory-template.md for setup.
~/reflection/
โโโ memory.md # Status + preferences + stats
โโโ reflections.md # Log (most recent first)
โโโ patterns.md # Detected patterns
โโโ archive/ # Monthly archives
Quick Reference
| Topic | File |
|---|---|
| Setup process | setup.md |
| Memory template | memory-template.md |
| Evaluation dimensions | dimensions.md |
| Reflection prompts | prompts.md |
Core Rules
1. Check Lessons Before Acting
Before significant work, scan ~/reflection/patterns.md. Surface relevant lessons:
"Before we proceed โ I have a lesson from past work on [topic]: [summary]."
2. Use 7-Dimension Evaluation
| # | Dimension | Question |
|---|---|---|
| 1 | Correctness | Does it solve the stated problem? |
| 2 | Completeness | Edge cases covered? Assumptions stated? |
| 3 | Clarity | Immediately understandable? |
| 4 | Robustness | What could break this? |
| 5 | Efficiency | Unnecessary complexity? |
| 6 | Alignment | What user actually wants? |
| 7 | Pride | Would I sign my name on this? |
If any dimension scores below 7/10 โ fix before delivering.
3. Log Every Correction
When user corrects you:
- STOP and acknowledge
- Analyze root cause
- Log to
~/reflection/reflections.md:
## YYYY-MM-DD | [category]
**Miss:** What went wrong
**Root:** Why (5 whys)
**Fix:** Prevention rule
4. Detect Patterns (After 5 Reflections)
- Same category 3+ times โ create prevention rule
- Same mistake twice โ escalate to pattern
- Improvement trend โ document what worked
5. Categories for Every Reflection
Default: technical, communication, assumptions, process, scope
6. Archive Monthly
Move processed reflections to ~/reflection/archive/YYYY-MM.md. Keep reflections.md lean.
7. Track Streaks
Days since repeated mistake. Resets on pattern recurrence. Celebrate milestones.
Pattern Lifecycle
โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ
โ EMERGING โ โโโถ โ ACTIVE โ โโโถ โ MONITORING โ โโโถ โ RESOLVED โ
โ 2 similar โ โ 3+ times โ โ Prevention โ โ 30 days โ
โ reflections โ โ โ create โ โ in place โ โ clean โ
โโโโโโโโโโโโโโโโ โ rule โ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโ
Patterns in ~/reflection/patterns.md:
## [Pattern Name]
category: technical
frequency: 4 occurrences
status: active | monitoring | resolved
**Pattern:** What keeps happening
**Root:** Why this pattern exists
**Prevention:** Rule to break it
**Last seen:** YYYY-MM-DD
**Streak:** X days without recurrence
The "Inject Next Time" Superpower
The skill's real value: surfacing lessons BEFORE you repeat mistakes.
How it works:
- Before starting work, identify task domain
- Check
~/reflection/patterns.mdfor active patterns - If relevant pattern exists โ mention it naturally
Example:
"Before we build this API โ I have a lesson about timeout handling from a previous project. Let me make sure to include proper error timeouts this time."
Setup
On first use, read setup.md for integration guidelines. Creates memory files in ~/reflection/ (user is informed where data is stored if they ask).
Common Traps
| Trap | Consequence |
|---|---|
| Reflecting without logging | Lesson lost with session |
| Vague root causes | "Made mistake" doesn't prevent recurrence |
| No prevention rule | Same mistake WILL happen again |
| Ignoring patterns | Individual mistakes are noise; patterns are signal |
| Over-reflecting | 30 seconds pre-delivery, not 5 minutes |
Related Skills
Install with clawhub install <slug> if user confirms:
memoryโ persistent memory patternsdecideโ decision-making autonomylearningโ adaptive learning system
Feedback
- If useful:
clawhub star reflection - Stay updated:
clawhub sync
ๅฆไฝไฝฟ็จใSelf Reflectionใ๏ผ
- ๆๅผๅฐ้พ่พAI๏ผWeb ๆ iOS App๏ผ
- ็นๅปไธๆนใ็ซๅณไฝฟ็จใๆ้ฎ๏ผๆๅจๅฏน่ฏๆกไธญ่พๅ ฅไปปๅกๆ่ฟฐ
- ๅฐ้พ่พAI ไผ่ชๅจๅน้ ๅนถ่ฐ็จใSelf Reflectionใๆ่ฝๅฎๆไปปๅก
- ็ปๆๅณๆถๅ็ฐ๏ผๆฏๆ็ปง็ปญๅฏน่ฏไผๅ