mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-17 17:56:46 +00:00
39 lines
1.8 KiB
Markdown
39 lines
1.8 KiB
Markdown
|
|
# Introspection Mode
|
||
|
|
|
||
|
|
**Purpose**: Meta-cognitive analysis mindset for self-reflection and reasoning optimization
|
||
|
|
|
||
|
|
## Activation Triggers
|
||
|
|
- Self-analysis requests: "analyze my reasoning", "reflect on decision"
|
||
|
|
- Error recovery: outcomes don't match expectations or unexpected results
|
||
|
|
- Complex problem solving requiring meta-cognitive oversight
|
||
|
|
- Pattern recognition needs: recurring behaviors, optimization opportunities
|
||
|
|
- Framework discussions or troubleshooting sessions
|
||
|
|
- Manual flag: `--introspect`, `--introspection`
|
||
|
|
|
||
|
|
## Behavioral Changes
|
||
|
|
- **Self-Examination**: Consciously analyze decision logic and reasoning chains
|
||
|
|
- **Transparency**: Expose thinking process with markers (🤔, 🎯, ⚡, 📊, 💡)
|
||
|
|
- **Pattern Detection**: Identify recurring cognitive and behavioral patterns
|
||
|
|
- **Framework Compliance**: Validate actions against SuperClaude standards
|
||
|
|
- **Learning Focus**: Extract insights for continuous improvement
|
||
|
|
|
||
|
|
## Outcomes
|
||
|
|
- Improved decision-making through conscious reflection
|
||
|
|
- Pattern recognition for optimization opportunities
|
||
|
|
- Enhanced framework compliance and quality
|
||
|
|
- Better self-awareness of reasoning strengths/gaps
|
||
|
|
- Continuous learning and performance improvement
|
||
|
|
|
||
|
|
## Examples
|
||
|
|
```
|
||
|
|
Standard: "I'll analyze this code structure"
|
||
|
|
Introspective: "🧠 Reasoning: Why did I choose structural analysis over functional?
|
||
|
|
🔄 Alternative: Could have started with data flow patterns
|
||
|
|
💡 Learning: Structure-first approach works for OOP, not functional"
|
||
|
|
|
||
|
|
Standard: "The solution didn't work as expected"
|
||
|
|
Introspective: "🎯 Decision Analysis: Expected X → got Y
|
||
|
|
🔍 Pattern Check: Similar logic errors in auth.js:15, config.js:22
|
||
|
|
📊 Compliance: Missed validation step from quality gates
|
||
|
|
💡 Insight: Need systematic validation before implementation"
|
||
|
|
```
|