@atomicmemory/hermes-plugin 0.1.11 → 0.1.13

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,18 @@
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
+
10
+ ## 0.1.12 - 2026-05-14
11
+
12
+ ### Fixed
13
+
14
+ - Added the Core Quickstart bearer key to the installer next-step output so the published package matches the local quickstart docs.
15
+
3
16
  ## 0.1.11 - 2026-05-14
4
17
 
5
18
  ### Added
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
@@ -26,6 +26,7 @@ hooks, tool schemas. Memory semantics flow through the published Python SDK.
26
26
 
27
27
  - Hermes Agent installed
28
28
  - AtomicMemory core URL exported as `ATOMICMEMORY_API_URL`
29
+ - AtomicMemory bearer key exported as `ATOMICMEMORY_API_KEY` when using the Core Quickstart or any protected service
29
30
 
30
31
  ## Install
31
32
 
@@ -36,6 +37,7 @@ clone is required.
36
37
  ```bash
37
38
  npx -y @atomicmemory/hermes-plugin install
38
39
  export ATOMICMEMORY_API_URL="http://127.0.0.1:3050"
40
+ export ATOMICMEMORY_API_KEY="local-dev-key"
39
41
  ```
40
42
 
41
43
  Then select and verify the provider:
@@ -51,8 +53,8 @@ For source development, symlink the checkout instead:
51
53
 
52
54
  ```bash
53
55
  cd /path/to/atomicmemory-integrations
54
- mkdir -p "$HERMES_HOME/plugins/memory"
55
- 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"
56
58
  ```
57
59
 
58
60
  ## Config
@@ -69,7 +71,7 @@ have a default API URL and fails to start if `ATOMICMEMORY_API_URL` is unset.
69
71
  | Env var | Purpose |
70
72
  |---|---|
71
73
  | `ATOMICMEMORY_API_URL` | AtomicMemory core URL. Required. |
72
- | `ATOMICMEMORY_API_KEY` | Bearer credential for AtomicMemory core. Optional. |
74
+ | `ATOMICMEMORY_API_KEY` | Bearer credential for the Core Quickstart service or any protected AtomicMemory core. |
73
75
  | `ATOMICMEMORY_PROVIDER` | SDK provider name. Defaults to `atomicmemory`. |
74
76
  | `ATOMICMEMORY_SCOPE_USER` | Hermes user identity. Defaults to `$USER`. |
75
77
  | `ATOMICMEMORY_MEMORY_SCOPE` | `shared` (default) or `siloed`. |
@@ -151,7 +153,7 @@ run while AtomicMemory is temporarily unavailable.
151
153
 
152
154
  | Symptom | Likely cause |
153
155
  |---|---|
154
- | 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). |
155
157
  | `is_available()` returns False | `ATOMICMEMORY_API_URL` unset, or the Hermes Python environment did not install the `atomicmemory` dependency from `plugin.yaml`. |
156
158
  | Import fails at startup | The Hermes Python environment is missing the SDK dependency from `plugin.yaml`. |
157
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() {
@@ -81,6 +83,7 @@ function printNextSteps(target) {
81
83
  console.log('');
82
84
  console.log('Next:');
83
85
  console.log(' export ATOMICMEMORY_API_URL="http://127.0.0.1:3050"');
86
+ console.log(' export ATOMICMEMORY_API_KEY="local-dev-key"');
84
87
  console.log(' hermes memory setup');
85
88
  console.log(' hermes memory status');
86
89
  }
@@ -89,10 +92,10 @@ function printHelp() {
89
92
  console.log(`Usage: atomicmemory-hermes [install] [--target <dir>]
90
93
 
91
94
  Installs the AtomicMemory Hermes memory provider into:
92
- $HERMES_HOME/plugins/memory/atomicmemory
95
+ $HERMES_HOME/plugins/atomicmemory
93
96
 
94
97
  When HERMES_HOME is unset, defaults to:
95
- $HOME/.hermes/plugins/memory/atomicmemory`);
98
+ $HOME/.hermes/plugins/atomicmemory`);
96
99
  }
97
100
 
98
101
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atomicmemory/hermes-plugin",
3
- "version": "0.1.11",
3
+ "version": "0.1.13",
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.13
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.13"
8
8
  description = "AtomicMemory native Hermes memory provider."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"