claude-warden 2.3.1 → 2.3.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "warden",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "Smart command safety filter for Claude Code — parses shell pipelines and evaluates per-command safety rules to auto-approve safe commands and block dangerous ones",
5
5
  "author": {
6
6
  "name": "banyudu"
package/dist/index.cjs CHANGED
@@ -20825,7 +20825,7 @@ async function main() {
20825
20825
  if (input.tool_name !== "Bash") {
20826
20826
  process.exit(0);
20827
20827
  }
20828
- if (input.permission_mode === "dangerously-skip-permissions") {
20828
+ if (input.permission_mode === "bypassPermissions") {
20829
20829
  process.exit(0);
20830
20830
  }
20831
20831
  if (process.env.WARDEN_YOLO === "true" || process.env.WARDEN_YOLO === "1") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-warden",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "Smart command safety filter for Claude Code — auto-approves safe commands, blocks dangerous ones",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",