pando-ai 0.2.2 → 0.2.3
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
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
# pandō — AI coding firewall
|
|
2
2
|
|
|
3
|
-
`pando-ai` is an **AI coding firewall
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
3
|
+
`pando-ai` is an **AI coding firewall** for Codex and Claude Code. It installs
|
|
4
|
+
supervised launchers so developers keep running `codex ...` and `claude ...`
|
|
5
|
+
normally while Pando applies local policy on each launch.
|
|
6
|
+
|
|
7
|
+
Its jobs:
|
|
8
|
+
|
|
9
|
+
1. **Constrain tool use** — install the project-scoped Pando MCP server, deny
|
|
10
|
+
native tools where supported, and deny non-Pando MCP tools by default.
|
|
11
|
+
2. **Inspect tool traffic** — use Claude Code hooks on every Claude launch and
|
|
12
|
+
a local provider gateway where available to block off-policy tool calls and
|
|
13
|
+
tool results.
|
|
14
|
+
3. **Keep code local by default** — run indexing, search, snapshots, and edits
|
|
15
|
+
locally; optional working-set memory is off unless explicitly enabled.
|
|
10
16
|
|
|
11
17
|
It is built on the same indexing + MCP engine as the Pandō VS Code extension.
|
|
12
18
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pando-ai",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.2.3",
|
|
4
|
+
"description": "AI coding firewall for Codex and Claude Code: supervised launchers, Pando MCP, policy enforcement, Claude hooks, and local provider gateway.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"pando-ai": "bin/pando-ai.js"
|
|
7
7
|
},
|
|
@@ -45,7 +45,16 @@
|
|
|
45
45
|
"scripts": {
|
|
46
46
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
47
47
|
},
|
|
48
|
-
"keywords": [
|
|
48
|
+
"keywords": [
|
|
49
|
+
"ai",
|
|
50
|
+
"coding-agent",
|
|
51
|
+
"firewall",
|
|
52
|
+
"mcp",
|
|
53
|
+
"codex",
|
|
54
|
+
"claude-code",
|
|
55
|
+
"cursor",
|
|
56
|
+
"developer-tools"
|
|
57
|
+
],
|
|
49
58
|
"author": "",
|
|
50
59
|
"license": "ISC",
|
|
51
60
|
"type": "commonjs"
|
|
Binary file
|
|
Binary file
|