pub const TUTORIAL_OVERVIEW: &str = r#"
## What is Subcog?
Subcog is a **persistent memory system** for AI coding assistants. It helps you:
- **Remember decisions** you've made across sessions
- **Recall learnings** when they're relevant
- **Build up patterns** and best practices over time
- **Maintain context** even after compaction
## Key Concepts
1. **Memories**: Pieces of knowledge captured from your coding sessions
2. **Namespaces**: Categories like `decisions`, `patterns`, `learnings`
3. **Search**: Hybrid semantic + text search to find relevant memories
4. **Hooks**: Automatic integration with Claude Code
## Quick Start
```bash
# Capture a decision
subcog capture --namespace decisions "Use PostgreSQL for storage"
# Search for memories
subcog recall "database choice"
# Check status
subcog status
```
Would you like me to dive deeper into any of these areas?
"#;