Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ mcp_servers:
command: npx
args: ["-y", "@agentmemory/mcp"]

Verify with `curl http://localhost:3111/agentmemory/health`. Open http://localhost:3113 for the real-time viewer. For deeper 6-hook memory provider integration (pre-LLM context injection, turn capture, MEMORY.md mirroring, system prompt block), copy integrations/hermes from the agentmemory repo to ~/.hermes/plugins/memory/agentmemory.
Verify with `curl http://localhost:3111/agentmemory/health`. Open http://localhost:3113 for the real-time viewer. For deeper 6-hook memory provider integration (pre-LLM context injection, turn capture, MEMORY.md mirroring, system prompt block), copy integrations/hermes from the agentmemory repo to ~/.hermes/plugins/agentmemory.
```

Full guide: [`integrations/hermes/`](integrations/hermes/)
Expand Down
4 changes: 2 additions & 2 deletions integrations/hermes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ http://localhost:3113 to watch memories being captured live.
If I want deeper integration — pre-LLM context injection, turn-level
capture, memory-write mirroring to MEMORY.md, and system prompt block
injection — copy `integrations/hermes` from the agentmemory repo to
`~/.hermes/plugins/memory/agentmemory` instead. That gives me the
`~/.hermes/plugins/agentmemory` instead. That gives me the
6-hook memory provider plugin on top of the MCP server.
```

Expand Down Expand Up @@ -75,7 +75,7 @@ npx @agentmemory/agentmemory
Copy this folder to your Hermes plugins directory:

```bash
cp -r integrations/hermes ~/.hermes/plugins/memory/agentmemory
cp -r integrations/hermes ~/.hermes/plugins/agentmemory
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Find all references to the old nested plugin path

# Search for the old nested path pattern
rg -n "\.hermes/plugins/memory/agentmemory" --type-add 'doc:*.{md,py,txt,yaml,yml}' --type doc

Repository: rohitg00/agentmemory

Length of output: 158


Update the installation path in integrations/hermes/__init__.py docstring.

The README correctly updates the installation path to ~/.hermes/plugins/agentmemory/, but the docstring in integrations/hermes/__init__.py (line 4) still references the old nested path: ~/.hermes/plugins/memory/agentmemory/.

Suggested fix
 """
 agentmemory memory provider for Hermes Agent.
 
-Drop this folder into ~/.hermes/plugins/memory/agentmemory/
+Drop this folder into ~/.hermes/plugins/agentmemory/
 or install via: hermes plugin install agentmemory
 
 Requires agentmemory server running: npx `@agentmemory/agentmemory`
 """
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@integrations/hermes/README.md` at line 78, The package docstring in
integrations/hermes/__init__.py still references the old installation path
"~/.hermes/plugins/memory/agentmemory/"; update that docstring string to match
the README and use the correct installation path
"~/.hermes/plugins/agentmemory/" so documentation is consistent (locate the
top-level module docstring in integrations/hermes/__init__.py and replace the
old path substring).

```

Start the agentmemory server:
Expand Down
Loading