fix(docs): deprecate hermes-memory-provider for Hermes + add HTTP transport#724
Merged
Merged
Conversation
…nsport - README: add deprecation notice for Hermes (removed 2026-06-29), clarify template is for pi/claude/cursor agents only - README: add transport mode section (subprocess vs HTTP) - plugin.yaml: bump to v1.1.0, add deprecation comment - __init__.py.tmpl: add dual transport support (subprocess + HTTP), add UTEKE_SERVER_URL/UTEKE_TOKEN config, refactor recall/remember into separate _subprocess/_http methods, extraction guard for missing binary - docs/integrations/hermes.md: link to extension template source in Mode B section
| Use HTTP mode when: | ||
| - The `uteke` binary is not available on PATH or hangs on your system | ||
| - `uteke-serve` is already running as a daemon | ||
| - You want container-based access (e.g., `http://uteke:8767`) |
🔍 Cora AI Code Review❌ Blocked — critical issues found. 🔴 Error (2)
Review powered by cora-cli · BYOK · MIT |
| def _extract_messages(self, messages: List[Dict[str, Any]]) -> None: | ||
| """Convert messages to clean text and run `import --extract` (blocking).""" | ||
| if not self._extract: | ||
| """Convert messages to clean text and run `import --extract` (blocking). |
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
The extension template was misleading — it presented Mode B (MemoryProvider) as active for Hermes, but this was deprecated on 2026-06-29. Users reading only the README would install a broken integration.
Changes
UTEKE_SERVER_URL), refactor recall/remember, extraction guard for missing binaryKey improvements
UTEKE_SERVER_URLfor container-based access (avoids subprocess hang issues)Scope