-
-
Notifications
You must be signed in to change notification settings - Fork 24
Upgrading to v2.8
SuperLocalMemory v2.8 is a drop-in upgrade. All existing memories, settings, and configurations are preserved.
Memories now automatically manage their own freshness. Active memories are prioritized, unused memories are archived, and storage growth is bounded. β Memory-Lifecycle
The system learns from action outcomes β which memories lead to success β and surfaces the best ones more often. β Behavioral-Learning
Access control, immutable audit trails, and retention policy management for regulated environments. β Enterprise-Compliance
| Tool | Purpose |
|---|---|
report_outcome |
Record action outcomes for behavioral learning |
get_lifecycle_status |
View memory lifecycle state distribution |
set_retention_policy |
Configure retention policies |
compact_memories |
Trigger lifecycle transitions |
get_behavioral_patterns |
View learned behavioral patterns |
audit_trail |
Query the compliance audit trail |
npm install -g superlocalmemory@latest
That's it. The system automatically:
- Migrates your database schema (backward compatible)
- Enables lifecycle management for existing memories
- Starts behavioral learning from your next session
- Creates audit.db for compliance logging
- All existing MCP tools work exactly as before
- All existing memories are preserved with ACTIVE lifecycle state
- Search results include the same memories (lifecycle-aware ranking is additive)
- No configuration changes required
v2.8 introduces two additional database files (created automatically):
-
~/.claude-memory/learning.dbβ Behavioral learning data (GDPR-erasable) -
~/.claude-memory/audit.dbβ Compliance audit trail (retention-governed)
Your existing memory.db is unchanged.
See also: Memory-Lifecycle Β· Behavioral-Learning Β· Enterprise-Compliance