node9-ai 2.5.0 → 2.6.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 +14 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -151,11 +151,24 @@ npm install -g node9-ai
151
151
 
152
152
  ```bash
153
153
  node9 init # auto-wires all detected agents + MCP servers
154
- node9 doctor # verify everything is wired correctly
154
+ node9 login # connect this machine to your workspace (approve it in the browser)
155
+ node9 doctor # verify everything is wired and reporting
155
156
  ```
156
157
 
157
158
  Requires Node.js 18+.
158
159
 
160
+ `init` on its own gives you full local enforcement: rules, shields, DLP and
161
+ approvals all work offline, on this machine.
162
+
163
+ `login` is what puts the machine on your dashboard. It prints a code, opens
164
+ the browser, and you approve the machine there; if you don't have an account
165
+ yet, signing up mid-flow returns you to the same approval with the code
166
+ intact. Until you run it, everything is enforced locally but nothing reaches
167
+ Mission Control, so the dashboard stays empty.
168
+
169
+ `node9 logout` disconnects a machine again. It revokes that machine's key;
170
+ local enforcement keeps running.
171
+
159
172
  ## Shields — curated rule packs
160
173
 
161
174
  Each shield is a curated rule set for a service or domain. Enable only what you need.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node9-ai",
3
- "version": "2.5.0",
3
+ "version": "2.6.2",
4
4
  "description": "Security layer for AI coding agents — intercepts dangerous tool calls before they execute",
5
5
  "keywords": [
6
6
  "ai",
@@ -25,7 +25,7 @@
25
25
  "node9-ai": "bin/node9.js"
26
26
  },
27
27
  "dependencies": {
28
- "@node9/proxy": "2.5.0"
28
+ "@node9/proxy": "2.6.2"
29
29
  },
30
30
  "type": "module",
31
31
  "engines": {