@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 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/memory/atomicmemory/__init__.py
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/memory"
57
- ln -s "$(pwd)/plugins/hermes" "$HERMES_HOME/plugins/memory/atomicmemory"
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/memory/<name>/`. |
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 are filesystem plugins under
6
- * `$HERMES_HOME/plugins/memory/<name>`. The npm package already contains the
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', 'memory', 'atomicmemory');
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/memory/atomicmemory
95
+ $HERMES_HOME/plugins/atomicmemory
94
96
 
95
97
  When HERMES_HOME is unset, defaults to:
96
- $HOME/.hermes/plugins/memory/atomicmemory`);
98
+ $HOME/.hermes/plugins/atomicmemory`);
97
99
  }
98
100
 
99
101
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atomicmemory/hermes-plugin",
3
- "version": "0.1.12",
3
+ "version": "0.1.14",
4
4
  "description": "AtomicMemory native Hermes memory provider — Python SDK-backed, cross-tool memory by default.",
5
5
  "publishConfig": {
6
6
  "access": "public",
package/plugin.yaml CHANGED
@@ -1,5 +1,5 @@
1
1
  name: atomicmemory
2
- version: 0.1.11
2
+ version: 0.1.14
3
3
  description: "AtomicMemory native Hermes memory provider — Python SDK-backed, cross-tool memory by default."
4
4
  pip_dependencies:
5
5
  - "atomicmemory>=1.0.1,<2.0.0"
package/pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "atomicmemory-hermes"
7
- version = "0.1.11"
7
+ version = "0.1.14"
8
8
  description = "AtomicMemory native Hermes memory provider."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"