node9-ai 1.27.0 → 1.27.1

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 +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  Node9 sits between your AI agent and the tools it can use — **discover** what it's already been doing, **protect** against risky actions in real time, and **review** what happened over any time window.
12
12
 
13
- Works with **Claude Code · Codex CLI · Gemini CLI · Cursor · Windsurf · any MCP server**.
13
+ Works with **Claude Code · Codex CLI · Gemini CLI · Cursor · Windsurf · VSCode · Claude Desktop · Opencode · Pi · any MCP server**.
14
14
 
15
15
  ## What Node9 does
16
16
 
@@ -66,7 +66,7 @@ npm install -g node9-ai
66
66
  ```
67
67
 
68
68
  ```bash
69
- node9 init # auto-wires Claude Code, Gemini CLI, Cursor, Codex, MCP servers
69
+ node9 init # auto-wires all detected agents + MCP servers
70
70
  node9 doctor # verify everything is wired correctly
71
71
  ```
72
72
 
@@ -195,7 +195,7 @@ def run_command(cmd: str) -> str:
195
195
  ## Under the hood
196
196
 
197
197
  - **Scan** reads raw agent history from `~/.claude/projects/`, `~/.gemini/tmp/`, `~/.codex/sessions/` — no API calls, fully offline
198
- - **Runtime** wires PreToolUse hooks into Claude Code, Gemini CLI, and Codex hooks write to `~/.node9/audit.log` atomically
198
+ - **Runtime** intercepts tool calls via pre-execution hooks (Claude Code, Codex, Gemini CLI, Opencode, Pi) or via the MCP gateway (Cursor, Windsurf, VSCode, Claude Desktop). All decisions land in `~/.node9/audit.log` atomically.
199
199
  - **MCP gateway** is a stdio proxy; intercepts `tools/list` + `tools/call` JSON-RPC, forwards the rest
200
200
  - **Policy engine** uses [mvdan-sh](https://github.com/mvdan/sh) for bash AST analysis — defeats obfuscation via backslash escaping, variable substitution, eval of remote download
201
201
  - **Shadow repo** for auto-undo lives at `~/.node9/snapshots/<hash16>/` — never touches your `.git`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node9-ai",
3
- "version": "1.27.0",
3
+ "version": "1.27.1",
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": "1.27.0"
28
+ "@node9/proxy": "1.27.1"
29
29
  },
30
30
  "type": "module",
31
31
  "engines": {