mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-25 00:51:20 +00:00
feat: add CerebroCortex memory provider plugin
Brain-analogous AI memory with associative networks, ACT-R/FSRS decay, spreading activation, and LLM-powered dream consolidation. Features: - 5 tools: cc_remember, cc_recall, cc_todo, cc_message, cc_health - Automatic prefetch (relevant memories injected before each turn) - Background sync (significant user messages auto-stored) - Session end summaries - Built-in memory mirroring (MEMORY.md writes → CerebroCortex) - Delegation capture (subagent results stored as memories) - Multi-agent messaging (send_message/check_inbox) - Zero cloud dependencies — SQLite + ChromaDB + igraph, all local Install: pip install cerebro-cortex Repo: https://github.com/buckster123/CerebroCortex Closes #7896
This commit is contained in:
parent
af9caec44f
commit
20cfccdf1f
3 changed files with 610 additions and 0 deletions
9
plugins/memory/cerebrocortex/plugin.yaml
Normal file
9
plugins/memory/cerebrocortex/plugin.yaml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
name: cerebrocortex
|
||||
version: 0.1.0
|
||||
description: "CerebroCortex — brain-analogous memory with associative networks, ACT-R/FSRS decay, spreading activation, and dream consolidation. Local-first (SQLite + ChromaDB + igraph)."
|
||||
pip_dependencies:
|
||||
- cerebro-cortex
|
||||
hooks:
|
||||
- on_session_end
|
||||
- on_memory_write
|
||||
- on_delegation
|
||||
Loading…
Add table
Add a link
Reference in a new issue