claude-code-autoconfig 1.0.17 → 1.0.19
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/commands/autoconfig.md +13 -1
- package/bin/cli.js +1 -1
- package/package.json +1 -1
|
@@ -171,7 +171,19 @@ This ensures double-clicking CLAUDE.md in the guide shows the real generated con
|
|
|
171
171
|
|
|
172
172
|
## After Completion
|
|
173
173
|
|
|
174
|
-
|
|
174
|
+
### Windows Cleanup
|
|
175
|
+
|
|
176
|
+
On Windows, a `nul` file may be accidentally created when commands redirect to null. Before finishing, check for and delete this file if it exists:
|
|
177
|
+
|
|
178
|
+
```
|
|
179
|
+
del nul 2>nul
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
This is safe to run even if the file doesn't exist.
|
|
183
|
+
|
|
184
|
+
### Open Guide
|
|
185
|
+
|
|
186
|
+
Open the interactive guide in the user's browser:
|
|
175
187
|
|
|
176
188
|
- macOS: `open .claude/guide/autoconfig.guide.html`
|
|
177
189
|
- Linux: `xdg-open .claude/guide/autoconfig.guide.html`
|
package/bin/cli.js
CHANGED
|
@@ -237,7 +237,7 @@ console.log('\x1b[32m%s\x1b[0m', '✅ Prepared /autoconfig command');
|
|
|
237
237
|
console.log();
|
|
238
238
|
console.log('\x1b[33m╔════════════════════════════════════╗\x1b[0m');
|
|
239
239
|
console.log('\x1b[33m║ ║\x1b[0m');
|
|
240
|
-
console.log('\x1b[33m║\x1b[0m' + '
|
|
240
|
+
console.log('\x1b[33m║\x1b[0m' + ' ⚠️ \x1b[1;33mONE MORE STEP\x1b[0m' + ' \x1b[33m║\x1b[0m');
|
|
241
241
|
console.log('\x1b[33m║ ║\x1b[0m');
|
|
242
242
|
console.log('\x1b[33m║\x1b[0m' + ' Run \x1b[36m/autoconfig\x1b[0m in Claude Code' + ' \x1b[33m║\x1b[0m');
|
|
243
243
|
console.log('\x1b[33m║\x1b[0m' + ' to complete setup' + ' \x1b[33m║\x1b[0m');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-autoconfig",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.19",
|
|
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",
|