superlocalmemory 3.4.21 → 3.4.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -1
- package/package.json +1 -1
- package/pyproject.toml +2 -2
- package/scripts/build_entry.py +1 -1
- package/scripts/release_manifest.py +2 -2
- package/skills/slm-build-graph/SKILL.md +1 -1
- package/skills/slm-list-recent/SKILL.md +1 -1
- package/skills/slm-recall/SKILL.md +3 -3
- package/skills/slm-remember/SKILL.md +1 -1
- package/skills/slm-status/SKILL.md +1 -1
- package/skills/slm-switch-profile/SKILL.md +1 -1
- package/src/superlocalmemory/__init__.py +3 -0
- package/src/superlocalmemory/cli/commands.py +40 -5
- package/src/superlocalmemory/cli/context_commands.py +1 -1
- package/src/superlocalmemory/cli/db_migrate.py +1 -1
- package/src/superlocalmemory/cli/escape_hatch.py +1 -1
- package/src/superlocalmemory/cli/main.py +3 -3
- package/src/superlocalmemory/core/context_cache.py +2 -2
- package/src/superlocalmemory/core/ram_lock.py +1 -1
- package/src/superlocalmemory/core/recall_pipeline.py +5 -5
- package/src/superlocalmemory/core/security_primitives.py +2 -2
- package/src/superlocalmemory/core/shadow_router.py +2 -2
- package/src/superlocalmemory/core/slm_disabled.py +1 -1
- package/src/superlocalmemory/core/slmignore.py +1 -1
- package/src/superlocalmemory/core/topic_signature.py +3 -3
- package/src/superlocalmemory/evolution/budget.py +1 -1
- package/src/superlocalmemory/evolution/llm_dispatch.py +2 -2
- package/src/superlocalmemory/hooks/_outcome_common.py +1 -1
- package/src/superlocalmemory/hooks/adapter_base.py +1 -1
- package/src/superlocalmemory/hooks/antigravity_adapter.py +1 -1
- package/src/superlocalmemory/hooks/context_payload.py +2 -2
- package/src/superlocalmemory/hooks/copilot_adapter.py +1 -1
- package/src/superlocalmemory/hooks/cross_platform_connector.py +1 -1
- package/src/superlocalmemory/hooks/cursor_adapter.py +1 -1
- package/src/superlocalmemory/hooks/hook_handlers.py +1 -1
- package/src/superlocalmemory/hooks/ide_connector.py +2 -2
- package/src/superlocalmemory/hooks/post_tool_async_hook.py +1 -1
- package/src/superlocalmemory/hooks/post_tool_outcome_hook.py +1 -1
- package/src/superlocalmemory/hooks/prewarm_auth.py +1 -1
- package/src/superlocalmemory/hooks/session_registry.py +1 -1
- package/src/superlocalmemory/hooks/stop_outcome_hook.py +1 -1
- package/src/superlocalmemory/hooks/sync_loop.py +2 -2
- package/src/superlocalmemory/hooks/user_prompt_hook.py +1 -1
- package/src/superlocalmemory/hooks/user_prompt_rehash_hook.py +1 -1
- package/src/superlocalmemory/learning/arm_catalog.py +1 -1
- package/src/superlocalmemory/learning/bandit.py +1 -1
- package/src/superlocalmemory/learning/bandit_cache.py +1 -1
- package/src/superlocalmemory/learning/consolidation_cycle.py +4 -4
- package/src/superlocalmemory/learning/consolidation_worker.py +1 -1
- package/src/superlocalmemory/learning/database.py +5 -5
- package/src/superlocalmemory/learning/dedup_hnsw.py +1 -1
- package/src/superlocalmemory/learning/ensemble.py +2 -2
- package/src/superlocalmemory/learning/fact_outcome_joins.py +1 -1
- package/src/superlocalmemory/learning/forgetting_scheduler.py +2 -2
- package/src/superlocalmemory/learning/hnsw_dedup.py +2 -2
- package/src/superlocalmemory/learning/labeler.py +3 -3
- package/src/superlocalmemory/learning/legacy_migration.py +1 -1
- package/src/superlocalmemory/learning/memory_merge.py +1 -1
- package/src/superlocalmemory/learning/model_cache.py +1 -1
- package/src/superlocalmemory/learning/model_rollback.py +2 -2
- package/src/superlocalmemory/learning/outcome_queue.py +2 -2
- package/src/superlocalmemory/learning/pattern_miner.py +1 -1
- package/src/superlocalmemory/learning/pattern_miner_constants.py +1 -1
- package/src/superlocalmemory/learning/ranker.py +3 -3
- package/src/superlocalmemory/learning/ranker_common.py +1 -1
- package/src/superlocalmemory/learning/ranker_retrain_legacy.py +3 -3
- package/src/superlocalmemory/learning/ranker_retrain_online.py +4 -4
- package/src/superlocalmemory/learning/reward.py +1 -1
- package/src/superlocalmemory/learning/reward_archive.py +2 -2
- package/src/superlocalmemory/learning/reward_boost.py +2 -2
- package/src/superlocalmemory/learning/reward_proxy.py +4 -4
- package/src/superlocalmemory/learning/shadow_test.py +1 -1
- package/src/superlocalmemory/learning/signal_worker.py +2 -2
- package/src/superlocalmemory/learning/signals.py +2 -2
- package/src/superlocalmemory/learning/trigram_index.py +1 -1
- package/src/superlocalmemory/mcp/tools_context.py +1 -1
- package/src/superlocalmemory/mcp/tools_core.py +2 -2
- package/src/superlocalmemory/parameterization/soft_prompt_generator.py +3 -3
- package/src/superlocalmemory/server/bandit_loops.py +2 -2
- package/src/superlocalmemory/server/middleware/__init__.py +2 -2
- package/src/superlocalmemory/server/middleware/security_headers.py +3 -3
- package/src/superlocalmemory/server/routes/brain.py +10 -10
- package/src/superlocalmemory/server/routes/prewarm.py +1 -1
- package/src/superlocalmemory/server/security_middleware.py +21 -3
- package/src/superlocalmemory/server/unified_daemon.py +111 -9
- package/src/superlocalmemory/skills/slm-build-graph/SKILL.md +423 -0
- package/src/superlocalmemory/skills/slm-list-recent/SKILL.md +348 -0
- package/src/superlocalmemory/skills/slm-recall/SKILL.md +343 -0
- package/src/superlocalmemory/skills/slm-remember/SKILL.md +194 -0
- package/src/superlocalmemory/skills/slm-show-patterns/SKILL.md +224 -0
- package/src/superlocalmemory/skills/slm-status/SKILL.md +363 -0
- package/src/superlocalmemory/skills/slm-switch-profile/SKILL.md +442 -0
- package/src/superlocalmemory/storage/migration_runner.py +4 -4
- package/src/superlocalmemory/storage/migrations/M001_add_signal_features_columns.py +1 -1
- package/src/superlocalmemory/storage/migrations/M002_model_state_history.py +2 -2
- package/src/superlocalmemory/storage/migrations/M003_migration_log.py +1 -1
- package/src/superlocalmemory/storage/migrations/M004_cross_platform_sync_log.py +1 -1
- package/src/superlocalmemory/storage/migrations/M005_bandit_tables.py +1 -1
- package/src/superlocalmemory/storage/migrations/M006_action_outcomes_reward.py +1 -1
- package/src/superlocalmemory/storage/migrations/M007_pending_outcomes.py +1 -1
- package/src/superlocalmemory/storage/migrations/M009_model_lineage.py +1 -1
- package/src/superlocalmemory/storage/migrations/M010_evolution_config.py +2 -2
- package/src/superlocalmemory/storage/migrations/M011_archive_and_merge.py +1 -1
- package/src/superlocalmemory/storage/migrations/M012_shadow_observations.py +1 -1
- package/src/superlocalmemory/storage/migrations/M013_bi_temporal_columns.py +2 -2
- package/src/superlocalmemory/storage/migrations/__init__.py +3 -3
- package/src/superlocalmemory/ui/index.html +4 -0
- package/src/superlocalmemory/ui/js/core.js +96 -1
- package/src/superlocalmemory.egg-info/PKG-INFO +655 -0
- package/src/superlocalmemory.egg-info/SOURCES.txt +426 -0
- package/src/superlocalmemory.egg-info/dependency_links.txt +1 -0
- package/src/superlocalmemory.egg-info/entry_points.txt +2 -0
- package/src/superlocalmemory.egg-info/requires.txt +58 -0
- package/src/superlocalmemory.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,363 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: slm-status
|
|
3
|
+
description: Check SuperLocalMemory system status, health, and statistics. Use when the user wants to know memory count, graph stats, patterns learned, database health, or system diagnostics. Shows comprehensive system health dashboard.
|
|
4
|
+
version: "3.4.22"
|
|
5
|
+
license: AGPL-3.0-or-later
|
|
6
|
+
compatibility: "Requires SuperLocalMemory V2 installed at ~/.claude-memory/"
|
|
7
|
+
attribution:
|
|
8
|
+
creator: Varun Pratap Bhardwaj
|
|
9
|
+
role: Solution Architect & Original Creator
|
|
10
|
+
project: SuperLocalMemory V2
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# SuperLocalMemory: Status
|
|
14
|
+
|
|
15
|
+
Check system status, health metrics, and statistics for your local memory system.
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
slm status [--verbose] [--check-integrity]
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Example Output
|
|
24
|
+
|
|
25
|
+
### Basic Status
|
|
26
|
+
```bash
|
|
27
|
+
$ slm status
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
**Output:**
|
|
31
|
+
```
|
|
32
|
+
╔══════════════════════════════════════════════════════╗
|
|
33
|
+
║ SuperLocalMemory V2 - System Status ║
|
|
34
|
+
╚══════════════════════════════════════════════════════╝
|
|
35
|
+
|
|
36
|
+
📊 Memory Statistics
|
|
37
|
+
Total Memories: 1,247
|
|
38
|
+
This Month: 143
|
|
39
|
+
This Week: 28
|
|
40
|
+
Today: 5
|
|
41
|
+
|
|
42
|
+
📈 Knowledge Graph
|
|
43
|
+
Nodes (Entities): 892
|
|
44
|
+
Edges (Relationships): 3,456
|
|
45
|
+
Clusters: 47
|
|
46
|
+
Avg Cluster Size: 19 memories
|
|
47
|
+
|
|
48
|
+
🎯 Pattern Learning
|
|
49
|
+
Coding Patterns: 34
|
|
50
|
+
Framework Preferences: React (72%), Vue (18%), Angular (10%)
|
|
51
|
+
Testing Style: TDD (65%), BDD (35%)
|
|
52
|
+
Performance Priority: High (78%)
|
|
53
|
+
|
|
54
|
+
💾 Database Health
|
|
55
|
+
Size: 4.2 MB
|
|
56
|
+
Integrity: ✅ OK
|
|
57
|
+
Last Backup: 2026-02-07 09:15
|
|
58
|
+
Backup Count: 12
|
|
59
|
+
|
|
60
|
+
🔧 Current Profile
|
|
61
|
+
Name: default
|
|
62
|
+
Created: 2026-01-15
|
|
63
|
+
Last Used: 2026-02-07 14:23
|
|
64
|
+
|
|
65
|
+
⚙️ System Info
|
|
66
|
+
Install Path: ~/.claude-memory
|
|
67
|
+
Database: memory.db
|
|
68
|
+
Python Version: 3.11.7
|
|
69
|
+
SQLite Version: 3.43.2
|
|
70
|
+
|
|
71
|
+
✅ Status: HEALTHY
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
### Verbose Mode
|
|
75
|
+
```bash
|
|
76
|
+
$ slm status --verbose
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
**Additional information:**
|
|
80
|
+
- Recent memory IDs
|
|
81
|
+
- Top entities in graph
|
|
82
|
+
- Pattern confidence scores
|
|
83
|
+
- Database table sizes
|
|
84
|
+
- Index statistics
|
|
85
|
+
|
|
86
|
+
### Integrity Check
|
|
87
|
+
```bash
|
|
88
|
+
$ slm status --check-integrity
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
**Runs full database integrity check:**
|
|
92
|
+
```
|
|
93
|
+
Running integrity check...
|
|
94
|
+
|
|
95
|
+
Database Structure: ✅ OK
|
|
96
|
+
FTS5 Index: ✅ OK
|
|
97
|
+
Graph Consistency: ✅ OK
|
|
98
|
+
Orphaned Nodes: 0 found
|
|
99
|
+
Duplicate Memories: 0 found
|
|
100
|
+
Corrupted Entries: 0 found
|
|
101
|
+
|
|
102
|
+
✅ All checks passed
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
## What This Shows
|
|
106
|
+
|
|
107
|
+
### 1. Memory Statistics
|
|
108
|
+
- **Total:** All memories ever saved
|
|
109
|
+
- **This Month:** Memories added in current month
|
|
110
|
+
- **This Week:** Last 7 days
|
|
111
|
+
- **Today:** Memories added today
|
|
112
|
+
|
|
113
|
+
**Useful for:**
|
|
114
|
+
- Understanding usage patterns
|
|
115
|
+
- Tracking growth
|
|
116
|
+
- Identifying active periods
|
|
117
|
+
|
|
118
|
+
### 2. Knowledge Graph
|
|
119
|
+
- **Nodes:** Unique entities extracted (people, technologies, concepts)
|
|
120
|
+
- **Edges:** Relationships between entities
|
|
121
|
+
- **Clusters:** Auto-discovered topic groups
|
|
122
|
+
- **Avg Cluster Size:** Memories per cluster
|
|
123
|
+
|
|
124
|
+
**Health indicators:**
|
|
125
|
+
- High edges/nodes ratio = well-connected knowledge
|
|
126
|
+
- Many clusters = diverse topics
|
|
127
|
+
- Large clusters = focused work
|
|
128
|
+
|
|
129
|
+
### 3. Pattern Learning
|
|
130
|
+
- **Coding Patterns:** Identified preferences and decisions
|
|
131
|
+
- **Framework Preferences:** Usage distribution
|
|
132
|
+
- **Testing Style:** TDD vs BDD preference
|
|
133
|
+
- **Performance Priority:** How important performance is to you
|
|
134
|
+
|
|
135
|
+
**Based on:**
|
|
136
|
+
- Keywords in memories ("prefer", "use", "avoid")
|
|
137
|
+
- Frequency of mentions
|
|
138
|
+
- Importance levels
|
|
139
|
+
- Recency (recent patterns weighted higher)
|
|
140
|
+
|
|
141
|
+
### 4. Database Health
|
|
142
|
+
- **Size:** Database file size
|
|
143
|
+
- **Integrity:** PRAGMA integrity_check result
|
|
144
|
+
- **Last Backup:** Most recent backup timestamp
|
|
145
|
+
- **Backup Count:** Total backups available
|
|
146
|
+
|
|
147
|
+
**Warning signs:**
|
|
148
|
+
- ❌ Integrity: NOT OK → Database corrupted
|
|
149
|
+
- ⚠️ Size > 100MB → Consider archiving old memories
|
|
150
|
+
- ⚠️ No backups → Enable backup system
|
|
151
|
+
|
|
152
|
+
### 5. Current Profile
|
|
153
|
+
- **Name:** Active profile (default, work, personal, etc.)
|
|
154
|
+
- **Created:** When profile was created
|
|
155
|
+
- **Last Used:** Last access timestamp
|
|
156
|
+
|
|
157
|
+
**Profiles allow:**
|
|
158
|
+
- Profile isolation
|
|
159
|
+
- Context switching
|
|
160
|
+
- Separate memory spaces
|
|
161
|
+
|
|
162
|
+
### 6. System Info
|
|
163
|
+
- **Install Path:** Where SuperLocalMemory is installed
|
|
164
|
+
- **Database:** Database filename
|
|
165
|
+
- **Python Version:** Python interpreter version
|
|
166
|
+
- **SQLite Version:** SQLite engine version
|
|
167
|
+
|
|
168
|
+
## Options
|
|
169
|
+
|
|
170
|
+
| Option | Description | Use Case |
|
|
171
|
+
|--------|-------------|----------|
|
|
172
|
+
| `--verbose` | Show detailed stats | Debugging, analysis |
|
|
173
|
+
| `--check-integrity` | Run full DB check | Troubleshooting |
|
|
174
|
+
| `--format json` | JSON output | Scripting |
|
|
175
|
+
| `--format text` | Human-readable (default) | Terminal use |
|
|
176
|
+
|
|
177
|
+
## Use Cases
|
|
178
|
+
|
|
179
|
+
### 1. Health Check Before Important Work
|
|
180
|
+
```bash
|
|
181
|
+
slm status --check-integrity
|
|
182
|
+
# Ensure DB is healthy before big import
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
### 2. Understanding Memory Usage
|
|
186
|
+
```bash
|
|
187
|
+
slm status
|
|
188
|
+
# "Do I have enough memories for pattern learning?"
|
|
189
|
+
# (Need 20+ for basic patterns, 50+ for advanced)
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
### 3. Performance Monitoring
|
|
193
|
+
```bash
|
|
194
|
+
slm status --verbose
|
|
195
|
+
# Check graph stats, optimize if needed
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
### 4. Backup Verification
|
|
199
|
+
```bash
|
|
200
|
+
slm status | grep "Last Backup"
|
|
201
|
+
# Ensure recent backup exists
|
|
202
|
+
```
|
|
203
|
+
|
|
204
|
+
### 5. Profile Switching Context
|
|
205
|
+
```bash
|
|
206
|
+
# Before switching
|
|
207
|
+
slm status
|
|
208
|
+
# Note: "Current Profile: work"
|
|
209
|
+
|
|
210
|
+
slm switch-profile personal
|
|
211
|
+
|
|
212
|
+
slm status
|
|
213
|
+
# Note: "Current Profile: personal"
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
## Advanced Usage
|
|
217
|
+
|
|
218
|
+
### Scripting & Automation
|
|
219
|
+
|
|
220
|
+
**Daily health check (cron job):**
|
|
221
|
+
```bash
|
|
222
|
+
#!/bin/bash
|
|
223
|
+
# Daily at 9 AM
|
|
224
|
+
|
|
225
|
+
status=$(slm status --check-integrity)
|
|
226
|
+
if echo "$status" | grep -q "NOT OK"; then
|
|
227
|
+
echo "SuperLocalMemory: Integrity check FAILED" | mail -s "Alert" you@example.com
|
|
228
|
+
fi
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
**Monitoring script:**
|
|
232
|
+
```bash
|
|
233
|
+
#!/bin/bash
|
|
234
|
+
# Monitor memory growth
|
|
235
|
+
|
|
236
|
+
count=$(slm status | grep "Total Memories:" | awk '{print $3}' | tr -d ',')
|
|
237
|
+
echo "$(date),${count}" >> memory-growth.csv
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
**JSON output for dashboards:**
|
|
241
|
+
```bash
|
|
242
|
+
slm status --format json > status.json
|
|
243
|
+
# Parse with jq, send to monitoring system
|
|
244
|
+
```
|
|
245
|
+
|
|
246
|
+
### Performance Indicators
|
|
247
|
+
|
|
248
|
+
**Good indicators:**
|
|
249
|
+
- Graph nodes > 100 → Rich knowledge base
|
|
250
|
+
- Edges/nodes ratio > 2 → Well-connected
|
|
251
|
+
- Patterns learned > 10 → AI understands your style
|
|
252
|
+
- Integrity: OK → Database healthy
|
|
253
|
+
|
|
254
|
+
**Warning signs:**
|
|
255
|
+
- Database size > 50MB but <100 memories → Possible issue
|
|
256
|
+
- Backup count: 0 → No disaster recovery
|
|
257
|
+
- Last used: >30 days ago → Stale data
|
|
258
|
+
|
|
259
|
+
## Troubleshooting
|
|
260
|
+
|
|
261
|
+
### "Status command hangs"
|
|
262
|
+
**Cause:** Database locked by another process
|
|
263
|
+
|
|
264
|
+
**Solution:**
|
|
265
|
+
```bash
|
|
266
|
+
# Check for locks
|
|
267
|
+
lsof ~/.claude-memory/memory.db
|
|
268
|
+
|
|
269
|
+
# Kill hanging processes
|
|
270
|
+
killall python3
|
|
271
|
+
|
|
272
|
+
# Try again
|
|
273
|
+
slm status
|
|
274
|
+
```
|
|
275
|
+
|
|
276
|
+
### "Integrity check fails"
|
|
277
|
+
**Cause:** Database corruption
|
|
278
|
+
|
|
279
|
+
**Solution:**
|
|
280
|
+
```bash
|
|
281
|
+
# Restore from backup
|
|
282
|
+
cp ~/.claude-memory/backups/memory.db.backup.* ~/.claude-memory/memory.db
|
|
283
|
+
|
|
284
|
+
# Verify
|
|
285
|
+
slm status --check-integrity
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
### "Pattern stats missing"
|
|
289
|
+
**Cause:** Need more memories (minimum 20)
|
|
290
|
+
|
|
291
|
+
**Solution:**
|
|
292
|
+
```bash
|
|
293
|
+
# Check memory count
|
|
294
|
+
slm status | grep "Total Memories"
|
|
295
|
+
|
|
296
|
+
# Add more memories
|
|
297
|
+
slm remember "Prefer React hooks over classes"
|
|
298
|
+
# ... add 20+ memories ...
|
|
299
|
+
|
|
300
|
+
# Rebuild patterns
|
|
301
|
+
slm build-graph
|
|
302
|
+
```
|
|
303
|
+
|
|
304
|
+
## Output Interpretation
|
|
305
|
+
|
|
306
|
+
### Status: HEALTHY
|
|
307
|
+
✅ All systems operational
|
|
308
|
+
- Database intact
|
|
309
|
+
- Graph built
|
|
310
|
+
- Patterns learned
|
|
311
|
+
- Backups available
|
|
312
|
+
|
|
313
|
+
### Status: WARNING
|
|
314
|
+
⚠️ Minor issues detected
|
|
315
|
+
- Old backups
|
|
316
|
+
- Large database
|
|
317
|
+
- Few patterns learned
|
|
318
|
+
|
|
319
|
+
**Action:** Review verbose output
|
|
320
|
+
|
|
321
|
+
### Status: ERROR
|
|
322
|
+
❌ Critical issues
|
|
323
|
+
- Database corrupted
|
|
324
|
+
- Integrity check failed
|
|
325
|
+
- No accessible data
|
|
326
|
+
|
|
327
|
+
**Action:** Restore from backup immediately
|
|
328
|
+
|
|
329
|
+
## Performance Benchmarks
|
|
330
|
+
|
|
331
|
+
| Command | Typical Time | Notes |
|
|
332
|
+
|---------|-------------|-------|
|
|
333
|
+
| `slm status` | ~200ms | Fast, lightweight |
|
|
334
|
+
| `slm status --verbose` | ~500ms | More data fetching |
|
|
335
|
+
| `slm status --check-integrity` | ~2s | Full DB scan |
|
|
336
|
+
|
|
337
|
+
**For large databases (10,000+ memories):**
|
|
338
|
+
- Basic status: ~500ms
|
|
339
|
+
- Verbose: ~1.5s
|
|
340
|
+
- Integrity check: ~10s
|
|
341
|
+
|
|
342
|
+
## Notes
|
|
343
|
+
|
|
344
|
+
- **Non-destructive:** Status check never modifies data
|
|
345
|
+
- **Real-time:** Shows current state (not cached)
|
|
346
|
+
- **Cross-tool:** Same status from all AI tools
|
|
347
|
+
- **Privacy:** All checks local, no external calls
|
|
348
|
+
|
|
349
|
+
## Related Commands
|
|
350
|
+
|
|
351
|
+
- `slm list` - List recent memories
|
|
352
|
+
- `slm build-graph` - Rebuild knowledge graph
|
|
353
|
+
- `slm switch-profile` - Switch memory profile
|
|
354
|
+
- `slm recall` - Search memories
|
|
355
|
+
|
|
356
|
+
---
|
|
357
|
+
|
|
358
|
+
**Created by:** [Varun Pratap Bhardwaj](https://github.com/varun369) (Solution Architect)
|
|
359
|
+
**Project:** SuperLocalMemory V2
|
|
360
|
+
**License:** MIT (see [LICENSE](../../LICENSE))
|
|
361
|
+
**Repository:** https://github.com/varun369/SuperLocalMemoryV2
|
|
362
|
+
|
|
363
|
+
*Open source doesn't mean removing credit. Attribution must be preserved per MIT License terms.*
|