@node9/proxy 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.
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/dist/cli.js CHANGED
@@ -19219,11 +19219,13 @@ function registerInitCommand(program2) {
19219
19219
  if (found.length === 0) {
19220
19220
  console.log(
19221
19221
  import_chalk16.default.gray(
19222
- "No AI agents detected. Install Claude Code, Gemini CLI, Cursor, Windsurf, VSCode, or Codex"
19222
+ "No AI agents detected. Install one of the supported agents (Claude Code, Codex, Gemini CLI, Cursor, Windsurf, VSCode, Claude Desktop, Opencode, or Pi)."
19223
19223
  )
19224
19224
  );
19225
19225
  console.log(
19226
- import_chalk16.default.gray("then run: node9 agents add <claude|gemini|cursor|windsurf|vscode|codex>")
19226
+ import_chalk16.default.gray(
19227
+ "then run: node9 agents add <claude|codex|gemini|cursor|windsurf|vscode|claudeDesktop|opencode|pi>"
19228
+ )
19227
19229
  );
19228
19230
  return;
19229
19231
  }
package/dist/cli.mjs CHANGED
@@ -19191,11 +19191,13 @@ function registerInitCommand(program2) {
19191
19191
  if (found.length === 0) {
19192
19192
  console.log(
19193
19193
  chalk16.gray(
19194
- "No AI agents detected. Install Claude Code, Gemini CLI, Cursor, Windsurf, VSCode, or Codex"
19194
+ "No AI agents detected. Install one of the supported agents (Claude Code, Codex, Gemini CLI, Cursor, Windsurf, VSCode, Claude Desktop, Opencode, or Pi)."
19195
19195
  )
19196
19196
  );
19197
19197
  console.log(
19198
- chalk16.gray("then run: node9 agents add <claude|gemini|cursor|windsurf|vscode|codex>")
19198
+ chalk16.gray(
19199
+ "then run: node9 agents add <claude|codex|gemini|cursor|windsurf|vscode|claudeDesktop|opencode|pi>"
19200
+ )
19199
19201
  );
19200
19202
  return;
19201
19203
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@node9/proxy",
3
- "version": "1.27.0",
4
- "description": "The Sudo Command for AI Agents. Execution Security for Claude Code & MCP.",
3
+ "version": "1.27.1",
4
+ "description": "The Sudo Command for AI Agents. Execution Security for Claude Code, Codex, Gemini, Cursor, Opencode, Pi, and any MCP server.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
7
7
  "types": "./dist/index.d.ts",
@@ -31,13 +31,19 @@
31
31
  "homepage": "https://github.com/node9-ai/node9-proxy#readme",
32
32
  "keywords": [
33
33
  "ai-security",
34
+ "agent-security",
35
+ "agentic-ai",
34
36
  "mcp",
35
37
  "mcp-proxy",
36
38
  "claude-code",
39
+ "claude-desktop",
40
+ "codex",
37
41
  "gemini-cli",
38
42
  "cursor",
39
- "agentic-ai",
40
- "agent-security",
43
+ "windsurf",
44
+ "vscode",
45
+ "opencode",
46
+ "pi-agent",
41
47
  "sudo",
42
48
  "security-proxy",
43
49
  "human-in-the-loop",