claude-code-autoconfig 1.0.140 → 1.0.141

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,5 +1,5 @@
1
1
  <!-- @description The command you just ran. Analyzes your project and populates CLAUDE.md with real context. Re-run anytime your stack changes. -->
2
- <!-- @version 7 -->
2
+ <!-- @version 8 -->
3
3
 
4
4
  # Autoconfig
5
5
 
@@ -407,7 +407,7 @@ Run `/show-docs` to view the interactive documentation (requires full install vi
407
407
  On Windows, if a `nul` file was accidentally created in the project root (a common artifact from bash/Unix command translation), delete it silently using the Bash tool:
408
408
 
409
409
  ```bash
410
- del nul 2>NUL
410
+ [ -f nul ] && rm nul
411
411
  ```
412
412
 
413
413
  Do this cleanup silently without any output to the user.
@@ -1263,7 +1263,7 @@
1263
1263
  title: '.claude/ Directory',
1264
1264
  desc: 'Commands, rules, settings, and these docs. Keeps configuration organized as your project grows.'
1265
1265
  },
1266
- 'rules': {
1266
+ 'rules': {
1267
1267
  title: 'rules/',
1268
1268
  desc: 'Path-scoped context that loads when Claude works on matching files.'
1269
1269
  },
@@ -1569,7 +1569,7 @@ CRITICAL: A plausible-looking cause from code reading is NOT confirmed evidence.
1569
1569
 
1570
1570
  > Run \`/autoconfig\` to populate this based on your project.`
1571
1571
  },
1572
- 'autoconfig-update': {
1572
+ 'autoconfig-update': {
1573
1573
  filename: 'autoconfig-update.md',
1574
1574
  content: `<!-- @applied
1575
1575
  -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-autoconfig",
3
- "version": "1.0.140",
3
+ "version": "1.0.141",
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",