@atomicmemory/hermes-plugin 0.1.12 → 0.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/README.md +4 -4
- package/install.mjs +7 -5
- package/package.json +1 -1
- package/plugin.yaml +1 -1
- package/pyproject.toml +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.13 - 2026-05-15
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Installer now writes the provider to `$HERMES_HOME/plugins/atomicmemory/`, the path Hermes actually scans for user-installed memory providers. Previously the files landed under `$HERMES_HOME/plugins/memory/atomicmemory/`, where Hermes' discovery never looked, so `hermes memory setup` did not list AtomicMemory as a choice.
|
|
8
|
+
- Normalized the npm `bin` path in `package.json` so the binary resolves on platforms that reject the `./install.mjs` form.
|
|
9
|
+
|
|
3
10
|
## 0.1.12 - 2026-05-14
|
|
4
11
|
|
|
5
12
|
### Fixed
|
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ has touched (Claude Code, Codex, the web extension, etc.). Set
|
|
|
13
13
|
|
|
14
14
|
```
|
|
15
15
|
Hermes Agent (Python)
|
|
16
|
-
→ plugins/
|
|
16
|
+
→ $HERMES_HOME/plugins/atomicmemory/__init__.py
|
|
17
17
|
→ AtomicMemoryClient (Python protocol)
|
|
18
18
|
→ PythonSdkAtomicMemoryClient
|
|
19
19
|
→ published atomicmemory Python SDK MemoryClient
|
|
@@ -53,8 +53,8 @@ For source development, symlink the checkout instead:
|
|
|
53
53
|
|
|
54
54
|
```bash
|
|
55
55
|
cd /path/to/atomicmemory-integrations
|
|
56
|
-
mkdir -p "$HERMES_HOME/plugins
|
|
57
|
-
ln -s "$(pwd)/plugins/hermes" "$HERMES_HOME/plugins/
|
|
56
|
+
mkdir -p "$HERMES_HOME/plugins"
|
|
57
|
+
ln -s "$(pwd)/plugins/hermes" "$HERMES_HOME/plugins/atomicmemory"
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
## Config
|
|
@@ -153,7 +153,7 @@ run while AtomicMemory is temporarily unavailable.
|
|
|
153
153
|
|
|
154
154
|
| Symptom | Likely cause |
|
|
155
155
|
|---|---|
|
|
156
|
-
| Provider does not appear in `hermes memory setup` | Wrong install path. User-installed memory providers must live under `$HERMES_HOME/plugins
|
|
156
|
+
| Provider does not appear in `hermes memory setup` | Wrong install path. User-installed memory providers must live directly under `$HERMES_HOME/plugins/<name>/` (the `plugins/memory/` layout is for providers bundled inside hermes-agent itself). |
|
|
157
157
|
| `is_available()` returns False | `ATOMICMEMORY_API_URL` unset, or the Hermes Python environment did not install the `atomicmemory` dependency from `plugin.yaml`. |
|
|
158
158
|
| Import fails at startup | The Hermes Python environment is missing the SDK dependency from `plugin.yaml`. |
|
|
159
159
|
| Calls fail with `PROVIDER_UNSUPPORTED` while `memory_scope=siloed` | The configured SDK provider is not the AtomicMemory core (e.g. it's `mem0`). Either switch `ATOMICMEMORY_PROVIDER=atomicmemory` or move to `memory_scope=shared`. |
|
package/install.mjs
CHANGED
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* Install the AtomicMemory Hermes provider from the published npm package.
|
|
4
4
|
*
|
|
5
|
-
* Hermes memory providers
|
|
6
|
-
* `$HERMES_HOME/plugins
|
|
5
|
+
* Hermes discovers user-installed memory providers as direct children of
|
|
6
|
+
* `$HERMES_HOME/plugins/<name>` (bundled providers live under
|
|
7
|
+
* `plugins/memory/<name>` inside hermes-agent itself, but user-installed
|
|
8
|
+
* plugins are flat under `plugins/`). The npm package already contains the
|
|
7
9
|
* Python provider files, so this installer copies only that managed provider
|
|
8
10
|
* surface into the active Hermes profile without requiring a Git checkout.
|
|
9
11
|
*/
|
|
@@ -53,7 +55,7 @@ function parseArgs(argv) {
|
|
|
53
55
|
|
|
54
56
|
function defaultTarget() {
|
|
55
57
|
const hermesHome = process.env.HERMES_HOME || defaultHermesHome();
|
|
56
|
-
return join(hermesHome, 'plugins', '
|
|
58
|
+
return join(hermesHome, 'plugins', 'atomicmemory');
|
|
57
59
|
}
|
|
58
60
|
|
|
59
61
|
function defaultHermesHome() {
|
|
@@ -90,10 +92,10 @@ function printHelp() {
|
|
|
90
92
|
console.log(`Usage: atomicmemory-hermes [install] [--target <dir>]
|
|
91
93
|
|
|
92
94
|
Installs the AtomicMemory Hermes memory provider into:
|
|
93
|
-
$HERMES_HOME/plugins/
|
|
95
|
+
$HERMES_HOME/plugins/atomicmemory
|
|
94
96
|
|
|
95
97
|
When HERMES_HOME is unset, defaults to:
|
|
96
|
-
$HOME/.hermes/plugins/
|
|
98
|
+
$HOME/.hermes/plugins/atomicmemory`);
|
|
97
99
|
}
|
|
98
100
|
|
|
99
101
|
try {
|
package/package.json
CHANGED
package/plugin.yaml
CHANGED
package/pyproject.toml
CHANGED