claude-code-autoconfig 1.0.32 → 1.0.33

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.
@@ -120,6 +120,13 @@ Edit(./.env)
120
120
  Edit(./.env.*)
121
121
  ```
122
122
 
123
+ **Always deny (Windows artifacts):**
124
+ ```
125
+ Write(./nul)
126
+ Edit(./nul)
127
+ ```
128
+ These prevent accidental `nul` file creation from bash/Windows command translation issues.
129
+
123
130
  **Often deny (generated/vendor):**
124
131
  ```
125
132
  Edit(./node_modules/**)
@@ -30,6 +30,8 @@
30
30
  "Read(./**/credentials.*)",
31
31
  "Read(./**/*.pem)",
32
32
  "Read(./**/*.key)",
33
+ "Write(./nul)",
34
+ "Edit(./nul)",
33
35
  "Bash(rm -rf:*)",
34
36
  "Bash(curl:*)",
35
37
  "Bash(wget:*)"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-autoconfig",
3
- "version": "1.0.32",
3
+ "version": "1.0.33",
4
4
  "description": "Intelligent, self-configuring setup for Claude Code. One command analyzes your project, configures Claude, and shows you what it did.",
5
5
  "author": "ADAC 1001 <info@adac1001.com>",
6
6
  "license": "MIT",