Persistent memory toolkit for AI agents. Save context, recall insights, track decisions across sessions.
clawhub install session-memoryOr clone:
git clone https://github.com/voidborne-d/session-memory-skill.git- Relevance-scored search — multi-keyword AND matching with importance + recency weighting
- Importance levels — low / normal / high / critical
- Session context loader — smart startup that loads recent + important memories
- Topic consolidation — group and review memories by topic
- Export / Import — backup and restore with deduplication
- Memory stats — totals, date range, avg/day, storage size, topic breakdown
- Edit / Delete — modify or remove entries by timestamp
- Pure bash + node — no npm dependencies
# Save
./scripts/save.sh "decision" "Chose Postgres over SQLite" database
MEMORY_IMPORTANCE=high ./scripts/save.sh "insight" "Users prefer dark mode"
# Recall
./scripts/recall.sh "database"
# Session startup
./scripts/context.sh
# Stats
./scripts/stats.sh
# Weekly review
./scripts/consolidate.sh --since 2026-03-01JSONL files in ~/.agent-memory/YYYY/MM/DD.jsonl:
{"ts":1706793600000,"topic":"decision","content":"Chose X because Y","tags":["project"],"importance":"high"}See SKILL.md for full documentation.
MIT
Created by Voidborne 🔹
