pub const TUTORIAL_CAPTURE: &str = r#"
## Capturing Memories
Memories are the core unit of Subcog. Here's how to capture them effectively:
### Basic Capture
```bash
subcog capture --namespace decisions "Use PostgreSQL for primary storage"
```
### With Metadata
```bash
subcog capture --namespace patterns \
--tags "rust,error-handling" \
--source "src/main.rs:42" \
"Always use thiserror for custom error types"
```
### What to Capture
- **Decisions**: Why you chose X over Y
- **Patterns**: Recurring approaches that work
- **Learnings**: "Aha!" moments and gotchas
- **Context**: Important background information
### Best Practices
1. Be specific - include the "why"
2. Add relevant tags for searchability
3. Reference source files when applicable
4. Use the right namespace
"#;