noisegate-hermes 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/README.md +11 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,12 +4,20 @@ This npm package is only a thin installer wrapper for the Python package [`noise
4
4
 
5
5
  Noisegate itself is a Python Hermes Agent plugin and CLI. The Python package is canonical.
6
6
 
7
- ## Install Noisegate for Hermes
7
+ ## Install or update Noisegate for Hermes
8
8
 
9
9
  ```bash
10
10
  npx -p noisegate-hermes noisegate install-hermes
11
11
  ```
12
12
 
13
+ Use the same command for first install and updates. It finds `hermes` on `PATH`, resolves the Python environment that runs Hermes, installs the matching `noisegate-hermes` Python package there, enables the `noisegate` plugin, and runs `noisegate doctor`.
14
+
15
+ Preview the exact commands first:
16
+
17
+ ```bash
18
+ npx -p noisegate-hermes noisegate install-hermes --dry-run
19
+ ```
20
+
13
21
  If your npm client does not resolve the single-bin shortcut, use the explicit bin name:
14
22
 
15
23
  ```bash
@@ -22,6 +30,8 @@ The wrapper delegates to:
22
30
  uvx --from noisegate-hermes==<this npm package version> noisegate install-hermes
23
31
  ```
24
32
 
33
+ If Hermes is running as a long-lived gateway/service, restart or reload that Hermes process through your normal maintenance flow after installing so the plugin/config change is picked up. Avoid interrupting in-flight agent work.
34
+
25
35
  ## Security posture
26
36
 
27
37
  - No `postinstall` scripts.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "noisegate-hermes",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Thin npm installer wrapper for the Noisegate Hermes Agent plugin and CLI.",
5
5
  "license": "MIT",
6
6
  "type": "module",