claude-code-autoconfig 1.0.72 → 1.0.74

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.
@@ -188,16 +188,28 @@ This ensures double-clicking CLAUDE.md in the docs shows the real generated cont
188
188
 
189
189
  ### Open Docs & Finale
190
190
 
191
- Open the interactive docs in the user's browser:
191
+ **Only if `.claude/docs/autoconfig.docs.html` exists**, open it in the user's browser:
192
192
 
193
193
  - macOS: `open .claude/docs/autoconfig.docs.html`
194
194
  - Linux: `xdg-open .claude/docs/autoconfig.docs.html`
195
195
  - Windows: `start .claude/docs/autoconfig.docs.html`
196
196
 
197
- Then output this finale message (just output it directly as text, no bash command needed):
197
+ If the docs file exists, output:
198
198
 
199
199
  ---
200
200
 
201
201
  ✅ Setup complete! The interactive docs are now open in your browser.
202
202
 
203
+ ---
204
+
205
+ If the docs file does NOT exist (e.g., user ran `/autoconfig` without the full npx install), output:
206
+
207
+ ---
208
+
209
+ ✅ Setup complete!
210
+
211
+ Run `/show-docs` to view the interactive documentation (requires full install via `npx claude-code-autoconfig`).
212
+
213
+ ---
214
+
203
215
  **IMPORTANT**: Do not add any additional text, summaries, or details after this message. The finale should be clean and punchy - end here.
package/bin/cli.js CHANGED
@@ -190,10 +190,11 @@ cp .claude/migration/${timestamp}/settings.json .claude/settings.json
190
190
  }
191
191
  }
192
192
 
193
- // Step 3: Copy minimal bootstrap (commands/, guide/, agents/)
193
+ // Step 3: Copy minimal bootstrap (commands/, docs/, agents/, feedback/)
194
194
  const commandsSrc = path.join(packageDir, '.claude', 'commands');
195
- const guideSrc = path.join(packageDir, '.claude', 'guide');
195
+ const docsSrc = path.join(packageDir, '.claude', 'docs');
196
196
  const agentsSrc = path.join(packageDir, '.claude', 'agents');
197
+ const feedbackSrc = path.join(packageDir, '.claude', 'feedback');
197
198
 
198
199
  function copyDir(src, dest) {
199
200
  fs.mkdirSync(dest, { recursive: true });
@@ -221,9 +222,9 @@ if (fs.existsSync(commandsSrc)) {
221
222
  process.exit(1);
222
223
  }
223
224
 
224
- // Copy guide (too large to generate)
225
- if (fs.existsSync(guideSrc)) {
226
- copyDir(guideSrc, path.join(claudeDest, 'guide'));
225
+ // Copy docs (interactive documentation)
226
+ if (fs.existsSync(docsSrc)) {
227
+ copyDir(docsSrc, path.join(claudeDest, 'docs'));
227
228
  }
228
229
 
229
230
  // Copy agents if exists
@@ -231,6 +232,11 @@ if (fs.existsSync(agentsSrc)) {
231
232
  copyDir(agentsSrc, path.join(claudeDest, 'agents'));
232
233
  }
233
234
 
235
+ // Copy feedback template
236
+ if (fs.existsSync(feedbackSrc)) {
237
+ copyDir(feedbackSrc, path.join(claudeDest, 'feedback'));
238
+ }
239
+
234
240
  console.log('\x1b[32m%s\x1b[0m', '✅ Prepared /autoconfig command');
235
241
 
236
242
  // Step 4: Show "READY TO CONFIGURE" message
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-autoconfig",
3
- "version": "1.0.72",
3
+ "version": "1.0.74",
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",