π¦ ClawHub
Memory Dreaming
by @ptburkis
A Markdown + JSON memory framework with conversation archiving for AI agents. Provides persistent long-term memory with biologically-inspired decay, recall b...
βοΈ Configuration
1. Copy scripts to your workspace
cp skills/memory-dreaming/scripts/*.js scripts/
Scripts use path.resolve(__dirname, '..') for workspace root β they must
live in .
2. Bootstrap (if you have an existing MEMORY.md)
node scripts/memory-bootstrap.js # seed memory-meta.json
node scripts/conversation-archive.js --discover # see available channels
Starting from scratch? See references/cold-start.md.
3. Set up conversation archiving (optional)
Create archives/archive-config.json to label your groups:
{
"agentName": "YourName",
"groups": { "": { "name": "my-group", "label": "My Group" } },
"topicNames": { "": { "1": "General" } }
}
Then archive and summarise:
node scripts/conversation-archive.js --all
node scripts/conversation-summarise.js --all
TERMINAL
clawhub install openclaw-memory-dreaming