Cognitive memory
Skill S3YED/appie-kit/skills/autonomous-ai-agents/cognitive-memory
Implementation and troubleshooting of the Cognitive Memory (Cognify) system in Hermes Agent.From its SKILL.md
npx -y skills add S3YED/appie-kit --skill cognitive-memoryAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.7 KB, 398 tokens by cl100k_base, as published. Nobody here has run it
Cognitive Memory (Cognify)
The Cognitive Memory system (PR #727, codenamed "Cognify") provides Hermes Agent with semantic recall, auto-encoding, contradiction detection, and exponential forgetting.
Architecture
cognitive_memory/: Core logic (store, embeddings, recall, encoding, extraction).tools/cognitive_memory_tool.py: Agent-facingcognitive_recalltool.- Database:
~/.hermes/cognitive_memory.db(SQLite).
Setup & Configuration
Enable in ~/.hermes/config.yaml:
cognitive_memory:
enabled: true
embedding:
model: "text-embedding-3-small"
Known Issues & Workarounds
Dependency: litellm
Cognify depends on litellm. On macOS systems with Homebrew Python, you may encounter pyexpat errors related to Symbol not found: _XML_SetAllocTrackerActivationThreshold.
Fix:
export DYLD_LIBRARY_PATH=/opt/homebrew/opt/expat/lib
python3.13 -m pip install litellm --break-system-packages
Manual Installation (from PR branch)
If the system is not yet merged, files must be extracted from the cognitive-memory branch:
git fetch origin pull/727/head:cognitive-memorygit show cognitive-memory:path/to/file > path/to/file- Tools must be registered in
tools/registry.py(standard auto-discovery usually handles this ifcognitive_memory_tool.pyis in thetools/dir).
Tool usage: cognitive_recall
action='store', content='...': Saves to semantic memory.action='recall', query='...': Retrieves by meaning.action='forget', query='...': Deletes matching items.action='status': Shows database stats.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.