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.
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/dist/cli.cjs +1 -0
- package/dist/codex-export.cjs +1 -0
- package/dist/copilot.cjs +1 -0
- package/dist/index.cjs +1 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "warden",
|
|
3
|
-
"version": "2.5.
|
|
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
|
};
|
package/dist/codex-export.cjs
CHANGED
|
@@ -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
|
};
|