feat: add ALIVE Context System memory provider - #5855
Closed
benslockedin wants to merge 1 commit into
Closed
Conversation
ALIVE is a Personal Context Manager (PCM) that gives Hermes persistent, structured world context across sessions. The provider exposes 3 tools: - alive_world — discover and survey all walnuts (context units) - alive_load — load a walnut's full briefing into conversation - alive_search — search across walnuts for decisions, people, files Smart prefetch injects context only when needed (turn 0, walnut switch, post-compress, orientation). Session end persists stash and writes squirrel YAML for session continuity. Requires: ALIVE Context System installed (claude plugin install alive@alivecontext) Docs: https://github.com/alivecontext/alive Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds ALIVE Context System as the 9th memory provider for Hermes Agent. ALIVE is a Personal Context Manager (PCM) — it gives Hermes persistent, structured world context across sessions.
3 tools:
alive_world— discover and survey all walnuts (context units)alive_load— load a walnut's full briefing into conversationalive_search— search across walnuts for decisions, people, filesKey features:
.alive/stash.json, squirrel YAML written for continuity3 files, 940 lines:
plugins/memory/alive/__init__.py(838 lines)plugins/memory/alive/plugin.yaml(13 lines)plugins/memory/alive/README.md(89 lines)Requires ALIVE Context System installed:
claude plugin install alive@alivecontextDocs: https://github.com/alivecontext/alive
Test plan
from plugins.memory.alive import ALIVEProvider; p = ALIVEProvider(); print(p.is_available())alive_worldreturns walnut list from a configured ALIVE worldalive_loadreturns full briefing for a known walnuton_session_endwrites stash + squirrel YAML🤖 Generated with Claude Code