Files
SuperClaude/.claude/commands/shared/thinking-modes.yml
NomenAK bce31d52a8 Initial commit: SuperClaude v4.0.0 configuration framework
- Core configuration files (CLAUDE.md, RULES.md, PERSONAS.md, MCP.md)
- 17 slash commands for specialized workflows
- 25 shared YAML resources for advanced configurations
- Installation script for global deployment
- 9 cognitive personas for specialized thinking modes
- MCP integration patterns for intelligent tool usage
- Token economy and ultracompressed mode support

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-22 14:02:49 +02:00

61 lines
1.8 KiB
YAML

# Thinking Mode Config
## Thinking Mode Flags
```yaml
Command_Flags:
--think: "Standard thinking mode - Multi-file analysis (4K tokens)"
--think-hard: "Deep analysis mode - Arch level (10K tokens)"
--ultrathink: "Critical analysis mode - System redesign (32K tokens)"
Default_Behavior:
No_flag: "Basic mode - Single file, simple tasks"
Flag_Combinations:
With_planning: "--plan --think" # Plan w/ deeper analysis
With_other_flags: Compatible w/ all command-specific flags
Usage_Examples:
- /user:analyze --code --think # Standard code analysis
- /user:design --api --think-hard # Deep architectural design
- /user:troubleshoot --ultrathink # Critical debugging session
- /user:improve --perf --think # Perf analysis w/ context
```
## Mode Characteristics
```yaml
Basic (no flag):
Scope: Single file, <10 lines
Use_case: Quick fixes, simple edits, direct answers
Token_usage: Minimal
Standard (--think):
Scope: Multi-file coordination
Use_case: Feature implementation, moderate complexity
Token_usage: ~4K tokens
Deep (--think-hard):
Scope: System architecture, complex patterns
Use_case: Design decisions, optimization strategies
Token_usage: ~10K tokens
Critical (--ultrathink):
Scope: Complete system analysis
Use_case: Redesigns, security audits, critical issues
Token_usage: ~32K tokens
```
## Auto-Activation Rules
```yaml
Command_Triggers:
design + --api: Suggest --think-hard for architecture
troubleshoot + production: Suggest --ultrathink for critical issues
analyze + --security: Auto-apply --think for comprehensive review
Complexity_Detection:
Multi-file_reference: Upgrade to --think
Architecture_keywords: Suggest --think-hard
Critical_terms: Recommend --ultrathink
```
---
*Thinking modes: Control analysis depth through command flags*