axconfig 3.2.0 → 3.2.1

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.
@@ -149,10 +149,6 @@ function build(config, output) {
149
149
  if (denyBash.length > 0) {
150
150
  rules.push(generateBashRule(denyBash, "deny", 499));
151
151
  }
152
- // Default deny for shell commands not explicitly allowed
153
- if (allowBash.length > 0 || denyBash.length > 0) {
154
- rules.push(generateToolRule(["run_shell_command"], "deny", 1));
155
- }
156
152
  }
157
153
  // Write policy file
158
154
  const policyPath = path.join(policiesDirectory, "axconfig.toml");
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "axconfig",
3
3
  "author": "Łukasz Jerciński",
4
4
  "license": "MIT",
5
- "version": "3.2.0",
5
+ "version": "3.2.1",
6
6
  "description": "Unified configuration management for AI coding agents - common API for permissions, settings, and config across Claude Code, Codex, Gemini CLI, and OpenCode",
7
7
  "repository": {
8
8
  "type": "git",
@@ -68,7 +68,7 @@
68
68
  "dependencies": {
69
69
  "@commander-js/extra-typings": "^14.0.0",
70
70
  "@iarna/toml": "^2.2.5",
71
- "axshared": "^1.5.0",
71
+ "axshared": "^1.7.0",
72
72
  "commander": "^14.0.2"
73
73
  },
74
74
  "devDependencies": {
@@ -78,18 +78,18 @@
78
78
  "@types/iarna__toml": "^2.0.5",
79
79
  "@types/node": "^25.0.3",
80
80
  "@vitest/coverage-v8": "^4.0.16",
81
- "@vitest/eslint-plugin": "^1.5.4",
81
+ "@vitest/eslint-plugin": "^1.6.5",
82
82
  "eslint": "^9.39.2",
83
83
  "eslint-config-prettier": "^10.1.8",
84
84
  "eslint-plugin-unicorn": "^62.0.0",
85
85
  "fta-check": "^1.5.1",
86
86
  "fta-cli": "^3.0.0",
87
- "globals": "^16.5.0",
88
- "knip": "^5.76.1",
87
+ "globals": "^17.0.0",
88
+ "knip": "^5.79.0",
89
89
  "prettier": "3.7.4",
90
90
  "semantic-release": "^25.0.2",
91
91
  "typescript": "^5.9.3",
92
- "typescript-eslint": "^8.50.0",
92
+ "typescript-eslint": "^8.51.0",
93
93
  "vitest": "^4.0.16"
94
94
  }
95
95
  }