claude-code-autoconfig 1.0.186 → 1.0.191
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 +4 -9
- package/.claude/docs/autoconfig.docs.html +2158 -2148
- package/.claude/hooks/.titles/25869694-a68e-449f-8240-f1ff2b80c1d4.txt +1 -0
- package/.claude/hooks/.titles/_debug.log +43 -0
- package/.claude/hooks/terminal-title.directive.md +71 -0
- package/.claude/hooks/terminal-title.js +235 -0
- package/.claude/scripts/sync-docs.js +662 -662
- package/.claude/settings.json +140 -88
- package/CHANGELOG.md +19 -15
- package/README.md +7 -1
- package/bin/cli.js +1013 -779
- package/package.json +49 -48
|
@@ -270,12 +270,7 @@ Run `/show-docs` to view the interactive documentation (requires full install vi
|
|
|
270
270
|
|
|
271
271
|
**IMPORTANT**: Do not add any additional text, summaries, or details after this message. The finale should be clean and punchy - end here.
|
|
272
272
|
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
```bash
|
|
278
|
-
[ -f nul ] && rm nul
|
|
279
|
-
```
|
|
280
|
-
|
|
281
|
-
Do this cleanup silently without any output to the user.
|
|
273
|
+
> Note: any stray `nul` file (a Windows bash-translation artifact) is cleaned up
|
|
274
|
+
> automatically by `bin/cli.js` (`cleanupNulFile()` runs on startup and on Claude
|
|
275
|
+
> exit). Do NOT instruct the model to `rm nul` here — a Bash cleanup after the
|
|
276
|
+
> finale only triggers a permission prompt and contradicts the "end here" rule above.
|