pando-ai 1.2.1 → 1.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 +10 -6
- package/dist/cli.js +215 -208
- package/dist/watcher-process.js +310 -303
- package/dist/workers/{chunk-6CRK2JH6.mjs → chunk-FYNDUGD2.mjs} +12 -12
- package/dist/workers/indexer-worker.mjs +1 -1
- package/dist/workers/snapshot-worker.mjs +1 -1
- package/package.json +1 -1
- package/tools/clojure-editor/lib/pando-clojure-editor-standalone.jar +0 -0
- package/tools/clojure-indexer/lib/pando-clojure-indexer-standalone.jar +0 -0
package/README.md
CHANGED
|
@@ -69,11 +69,11 @@ Four layers, one ruleset:
|
|
|
69
69
|
|
|
70
70
|
Pando's security model has three separate jobs:
|
|
71
71
|
|
|
72
|
-
- **
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
72
|
+
- **Tool-traffic enforcement**: policy is applied on the wire, not by
|
|
73
|
+
sandboxing the process. Claude Code hooks and the local provider gateway block
|
|
74
|
+
off-policy tool definitions, tool calls, and tool results before the agent can
|
|
75
|
+
act on them. Pando MCP is always allowed; native tools and non-Pando MCP are
|
|
76
|
+
denied by default.
|
|
77
77
|
- **Audit and recovery**: mutating Pando tools and `shell-command` create Pando
|
|
78
78
|
snapshots around workspace changes. These are local, commit-like history
|
|
79
79
|
records for inspection and restore; they are not commits to the user's Git
|
|
@@ -84,7 +84,11 @@ Pando's security model has three separate jobs:
|
|
|
84
84
|
keep requests bounded, make intent inspectable, require stable paths/hashes
|
|
85
85
|
where relevant, and reduce the need for raw shell/file access.
|
|
86
86
|
|
|
87
|
-
|
|
87
|
+
Workspace roots are also gated: paths under system, credential, and container
|
|
88
|
+
directories cannot become a Pando workspace root (see `forbidden-roots`), so
|
|
89
|
+
model-triggered mutation stays scoped to real project roots.
|
|
90
|
+
|
|
91
|
+
Snapshots are the fallback safety boundary. The Pando tools are
|
|
88
92
|
the preferred control plane: they make ordinary coding work narrower, more
|
|
89
93
|
auditable, and more semantically meaningful than arbitrary command execution.
|
|
90
94
|
Shell remains available for tests, builds, package managers, generated files,
|