🦀 ClawHub
Biomorphic Memory
by @dario-github
Brain-inspired memory for AI agents. Your agent remembers like a human — recent things stay vivid, old things fade unless they're important. Uses spreading a...
💡 Examples
from biomorphic_memory.graph import MemoryGraph
from biomorphic_memory.recall import spreading_activationgraph = MemoryGraph()
graph.add_memory("Prefer dark mode in all UIs", tags=["preference", "ui"])
graph.add_memory("Last deploy failed due to OOM on staging", tags=["deploy", "incident"])
Later, when "deploy" comes up:
relevant = spreading_activation(graph, query="preparing to deploy v2.1")
Returns: deploy incident memory + related context, ranked by relevance
TERMINAL
clawhub install biomorphic-memory