claude-code-autoconfig 1.0.16 → 1.0.17

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.
@@ -171,6 +171,10 @@ This ensures double-clicking CLAUDE.md in the guide shows the real generated con
171
171
 
172
172
  ## After Completion
173
173
 
174
- Once autoconfig is complete, prompt the user:
174
+ Once autoconfig is complete, open the interactive guide in the user's browser:
175
175
 
176
- **Run `/show-guide` for an interactive walkthrough of your new Claude Code project setup.**
176
+ - macOS: `open .claude/guide/autoconfig.guide.html`
177
+ - Linux: `xdg-open .claude/guide/autoconfig.guide.html`
178
+ - Windows: `start .claude/guide/autoconfig.guide.html`
179
+
180
+ This shows the user what got installed and how to use it.
@@ -825,6 +825,11 @@
825
825
  <span class="tree-folder-icon">📁</span>
826
826
  <span class="folder">.claude</span>
827
827
  </div>
828
+ <div class="tree-item indent-2 hidden" data-info="agents" data-parent="claude-dir">
829
+ <span class="tree-spacer"></span>
830
+ <span class="tree-folder-icon">📁</span>
831
+ <span class="folder">agents</span>
832
+ </div>
828
833
  <div class="tree-item indent-2 folder-row hidden collapsed" data-info="commands" data-folder="commands" data-parent="claude-dir">
829
834
  <span class="tree-chevron">›</span>
830
835
  <span class="tree-folder-icon">📁</span>
@@ -1164,6 +1169,10 @@
1164
1169
  title: '.mcp.json',
1165
1170
  desc: 'MCP (Model Context Protocol) server configuration. Add your MCP server configs here when you\'re ready.<br><br>See <a href="https://docs.anthropic.com/en/docs/claude-code/mcp" target="_blank" style="color: var(--accent-cyan);">MCP documentation</a> for setup instructions.'
1166
1171
  },
1172
+ 'agents': {
1173
+ title: 'agents/',
1174
+ desc: 'Custom agent definitions for specialized tasks. Agents are autonomous workers that can be spawned to handle complex operations independently.'
1175
+ },
1167
1176
  'commands': {
1168
1177
  title: 'commands/',
1169
1178
  desc: 'On-demand workflows you trigger with <code>/name</code>. Each .md file becomes a <a href="https://docs.anthropic.com/en/docs/claude-code/slash-commands" target="_blank" style="color: var(--accent-cyan);">slash command</a>.'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-autoconfig",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
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",