memoryboard-js
v1.0.0
Published
Visual memory manager for AI agents.
Maintainers
Readme
MemoryBoard.js
Author: Vatistas Dimitris (vatistasdim)
Visual interface and manager for long-term memory in AI agents or smart apps.
Features
- Visual timeline of memories (text, images, etc.)
- Add, edit, delete memory chunks
- Can back memory by Pinecone, Redis, or local store
- Basic frontend UI
Usage
import MemoryBoard from 'memoryboard-js';
const board = new MemoryBoard({
backend: 'local',
container: document.getElementById('memory-board')
});
board.addMemory({ type: 'text', content: 'Agent observed: user opened the fridge.' });