pando-ai 0.5.0 → 0.5.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pando-ai",
3
- "version": "0.5.0",
3
+ "version": "0.5.2",
4
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"
@@ -2021,7 +2021,7 @@
2021
2021
  "name": "shell-command",
2022
2022
  "category": "pando",
2023
2023
  "signature": "shell-command(command, reason, timeoutMs, shell, maxOutputBytes)",
2024
- "description": "Run a shell command with cwd fixed to the selected Pando project root, then synchronously snapshot any worktree changes before another modifying Pando operation can run. The project-root confinement is also enforced by the host environment. reason is required and is written into the snapshot receipt/trailers for auditability. Command failures are returned to the agent with exit code, stdout, stderr, timeout state, and snapshot metadata. Example: { command:'npm test', reason:'Verify the current change.' }",
2024
+ "description": "Strongly discouraged: prefer Pando AST/index tools before raw shell for code search, navigation, references, and edits. Use shell freely for tests, builds/compiles, package managers, git, generated or non-code files, unsupported languages, and anything Pando itself does not support. Every operation that goes through Pando, including this shell command, is snapshotted before and after; snapshots are not touchable by the agent. If needed, read ../../../pando-backend/docs/tools.md for tool behavior details. Run a shell command with cwd fixed to the selected Pando project root, then synchronously snapshot any worktree changes before another modifying Pando operation can run. The project-root confinement is also enforced by the host environment. reason is required and is written into the snapshot receipt/trailers for auditability. Command failures are returned to the agent with exit code, stdout, stderr, timeout state, and snapshot metadata. Example: { command:'npm test', reason:'Verify the current change.' }",
2025
2025
  "parameters": {
2026
2026
  "type": "object",
2027
2027
  "properties": {
@@ -2031,7 +2031,7 @@
2031
2031
  },
2032
2032
  "reason": {
2033
2033
  "type": "string",
2034
- "description": "Required audit reason for running this command. This is persisted in the snapshot metadata."
2034
+ "description": "Required audit reason for running this command. State why shell is appropriate instead of a Pando AST/index tool. This is persisted in the snapshot metadata."
2035
2035
  },
2036
2036
  "timeoutMs": {
2037
2037
  "type": "number",