You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Documents the anonymous telemetry feature including:
- What data is collected and what is never collected
- How to opt out via CLI or environment variable
- Link to detailed documentation
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <[email protected]>
Signed-off-by: phernandez <[email protected]>
Basic Memory collects anonymous usage statistics to help improve the software. This follows the [Homebrew model](https://docs.brew.sh/Analytics) - telemetry is on by default with easy opt-out.
472
+
473
+
**What we collect:**
474
+
- App version, Python version, OS, architecture
475
+
- Feature usage (which MCP tools and CLI commands are used)
476
+
- Error types (sanitized - no file paths or personal data)
477
+
478
+
**What we NEVER collect:**
479
+
- Note content, file names, or paths
480
+
- Personal information
481
+
- IP addresses
482
+
483
+
**Opting out:**
484
+
```bash
485
+
# Disable telemetry
486
+
basic-memory telemetry disable
487
+
488
+
# Check status
489
+
basic-memory telemetry status
490
+
491
+
# Re-enable
492
+
basic-memory telemetry enable
493
+
```
494
+
495
+
Or set the environment variable:
496
+
```bash
497
+
export BASIC_MEMORY_TELEMETRY_ENABLED=false
498
+
```
499
+
500
+
For more details, see the [Telemetry documentation](https://basicmemory.com/telemetry).
0 commit comments