claude-code-autoconfig 1.0.131 → 1.0.133

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 6 -->
2
+ <!-- @version 7 -->
3
3
 
4
4
  # Autoconfig
5
5
 
@@ -9,13 +9,13 @@ Analyze this project and configure Claude Code with real context.
9
9
 
10
10
  ## Step 0a: Bootstrap files from latest package
11
11
 
12
- Run this Bash command to ensure you have the latest commands, docs, and config files:
12
+ **MANDATORY: You MUST run this Bash command before doing anything else.** Do not skip it. Do not assume it will fail. It is designed to work inside Claude Code sessions:
13
13
 
14
14
  ```bash
15
15
  npx claude-code-autoconfig@latest --bootstrap
16
16
  ```
17
17
 
18
- This copies the latest slash commands, hooks, agents, docs, and settings into `.claude/`. It exits silently on success. If it fails (e.g., no network), continue anyway — the existing files will still work.
18
+ This downloads the latest package and copies slash commands, hooks, agents, docs, and settings into `.claude/`. The `--bootstrap` flag makes it safe to run inside Claude Code — it copies files and exits silently with code 0. If it fails (e.g., no network), continue anyway — the existing files will still work.
19
19
 
20
20
  ## Step 0b: Migrate FEEDBACK.md to Discoveries (one-time)
21
21
 
@@ -883,6 +883,11 @@
883
883
  <span class="tree-file-icon">📄</span>
884
884
  <span class="file">autoconfig.md</span>
885
885
  </div>
886
+ <div class="tree-item indent-3 hidden" data-info="autoconfig-update" data-parent="commands">
887
+ <span class="tree-spacer"></span>
888
+ <span class="tree-file-icon">📄</span>
889
+ <span class="file">autoconfig-update.md</span>
890
+ </div>
886
891
  <div class="tree-item indent-3 hidden" data-info="commit-and-push" data-parent="commands">
887
892
  <span class="tree-spacer"></span>
888
893
  <span class="tree-file-icon">📄</span>
@@ -893,6 +898,16 @@
893
898
  <span class="tree-file-icon">📄</span>
894
899
  <span class="file">enable-retro.md</span>
895
900
  </div>
901
+ <div class="tree-item indent-3 hidden" data-info="gls" data-parent="commands">
902
+ <span class="tree-spacer"></span>
903
+ <span class="tree-file-icon">📄</span>
904
+ <span class="file">gls.md</span>
905
+ </div>
906
+ <div class="tree-item indent-3 hidden" data-info="recover-context" data-parent="commands">
907
+ <span class="tree-spacer"></span>
908
+ <span class="tree-file-icon">📄</span>
909
+ <span class="file">recover-context.md</span>
910
+ </div>
896
911
  <div class="tree-item indent-3 hidden" data-info="docs-cmd" data-parent="commands">
897
912
  <span class="tree-spacer"></span>
898
913
  <span class="tree-file-icon">📄</span>
@@ -1291,6 +1306,21 @@
1291
1306
  desc: 'The command you just ran. Analyzes your project and populates CLAUDE.md with real context. Re-run anytime your stack changes.',
1292
1307
  trigger: '/autoconfig'
1293
1308
  },
1309
+ 'autoconfig-update': {
1310
+ title: 'autoconfig-update.md',
1311
+ desc: 'Checks for and installs configuration updates. Tracks which updates have been applied and only runs new ones.',
1312
+ trigger: '/autoconfig-update'
1313
+ },
1314
+ 'gls': {
1315
+ title: 'gls.md',
1316
+ desc: 'Gets and displays your latest screenshot(s) for visual context. Auto-detects your screenshot directory on first use.',
1317
+ trigger: '/gls'
1318
+ },
1319
+ 'recover-context': {
1320
+ title: 'recover-context.md',
1321
+ desc: 'Recovers conversation context after compaction. Reads the session transcript to rebuild awareness of what was discussed and decided.',
1322
+ trigger: '/recover-context'
1323
+ },
1294
1324
  'sync-claude-md': {
1295
1325
  title: 'sync-claude-md.md',
1296
1326
  desc: 'Re-analyzes your project and updates CLAUDE.md to reflect current state. Run when your stack changes significantly.',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-autoconfig",
3
- "version": "1.0.131",
3
+ "version": "1.0.133",
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",