claude-warden 2.5.2 → 2.5.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.
@@ -8,7 +8,7 @@
8
8
  {
9
9
  "name": "warden",
10
10
  "description": "Auto-approves safe commands, blocks dangerous ones, prompts for the rest",
11
- "version": "2.5.2",
11
+ "version": "2.5.3",
12
12
  "author": {
13
13
  "name": "banyudu"
14
14
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "warden",
3
- "version": "2.5.2",
3
+ "version": "2.5.3",
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/cli.cjs CHANGED
@@ -18872,6 +18872,7 @@ function pkgManagerRule(command, extraSafeCmds = []) {
18872
18872
  decision: "allow",
18873
18873
  description: `Standard ${command} commands`
18874
18874
  },
18875
+ safeDevToolsPattern(),
18875
18876
  VERSION_HELP_FLAGS
18876
18877
  ]
18877
18878
  };
@@ -18876,6 +18876,7 @@ function pkgManagerRule(command, extraSafeCmds = []) {
18876
18876
  decision: "allow",
18877
18877
  description: `Standard ${command} commands`
18878
18878
  },
18879
+ safeDevToolsPattern(),
18879
18880
  VERSION_HELP_FLAGS
18880
18881
  ]
18881
18882
  };
package/dist/copilot.cjs CHANGED
@@ -18872,6 +18872,7 @@ function pkgManagerRule(command, extraSafeCmds = []) {
18872
18872
  decision: "allow",
18873
18873
  description: `Standard ${command} commands`
18874
18874
  },
18875
+ safeDevToolsPattern(),
18875
18876
  VERSION_HELP_FLAGS
18876
18877
  ]
18877
18878
  };
package/dist/index.cjs CHANGED
@@ -18872,6 +18872,7 @@ function pkgManagerRule(command, extraSafeCmds = []) {
18872
18872
  decision: "allow",
18873
18873
  description: `Standard ${command} commands`
18874
18874
  },
18875
+ safeDevToolsPattern(),
18875
18876
  VERSION_HELP_FLAGS
18876
18877
  ]
18877
18878
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-warden",
3
- "version": "2.5.2",
3
+ "version": "2.5.3",
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",