claude-code-autoconfig 1.0.184 → 1.0.185

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.
@@ -0,0 +1,10 @@
1
+ <!-- @description Placeholder — drop your project's custom subagent definitions in this directory. -->
2
+
3
+ # Agents
4
+
5
+ This directory is where you define **subagents** — focused assistants Claude can delegate to during a task (e.g., a code reviewer, a test writer, a security auditor).
6
+
7
+ claude-code-autoconfig ships this folder empty so you can populate it with agents tuned to your project. Each agent is a single Markdown file with frontmatter describing its purpose, tools, and system prompt.
8
+
9
+ See Anthropic's subagents docs for the file format:
10
+ https://docs.anthropic.com/en/docs/claude-code/sub-agents
@@ -918,10 +918,10 @@
918
918
  <span class="tree-folder-icon">📁</span>
919
919
  <span class="folder">agents</span>
920
920
  </div>
921
- <div class="tree-item indent-3 hidden" data-info="docs-refresh-agent" data-parent="agents">
921
+ <div class="tree-item indent-3 hidden" data-info="README-agent" data-parent="agents">
922
922
  <span class="tree-spacer"></span>
923
923
  <span class="tree-file-icon">📄</span>
924
- <span class="file">docs-refresh.md</span>
924
+ <span class="file">README.md</span>
925
925
  </div>
926
926
  <div class="tree-item indent-2 folder-row hidden collapsed" data-info="feedback" data-folder="feedback" data-parent="claude-dir">
927
927
  <span class="tree-chevron">›</span>
@@ -1258,7 +1258,7 @@
1258
1258
  title: '.claude/ Directory',
1259
1259
  desc: 'Commands, rules, settings, and these docs. Keeps configuration organized as your project grows.'
1260
1260
  },
1261
- 'rules': {
1261
+ 'rules': {
1262
1262
  title: 'rules/',
1263
1263
  desc: 'Path-scoped context that loads when Claude works on matching files.'
1264
1264
  },
@@ -1328,9 +1328,9 @@
1328
1328
  desc: 'Validates your claude-code-autoconfig installation against the latest published version.<div style="margin-top: 12px;"><strong>Parameters</strong><div style="margin-top: 4px; opacity: 0.6;">None</div></div><div style="margin-top: 12px;"><strong>Responses</strong><table style="margin-top: 6px; border-collapse: collapse; font-size: 0.9em; text-align: left;"><tr style="text-align: left; border-bottom: 1px solid var(--border);"><th style="padding: 4px 8px 4px 0; white-space: nowrap;">Status</th><th style="padding: 4px 8px 4px 0;">Description</th></tr><tr style="border-bottom: 1px solid var(--border);"><td style="padding: 4px 8px 4px 0; vertical-align: top; white-space: nowrap;"><code>valid</code></td><td style="padding: 4px 8px 4px 0; vertical-align: top;">Install validated — all checks passed.</td></tr><tr style="border-bottom: 1px solid var(--border);"><td style="padding: 4px 8px 4px 0; vertical-align: top; white-space: nowrap;"><code>issues</code></td><td style="padding: 4px 8px 4px 0; vertical-align: top;">Validation found {N} issue(s) with fix suggestions.</td></tr></table></div><div style="margin-top: 12px;"><strong>Side Effects</strong><div style="margin-top: 4px; font-size: 0.9em;">Read-only. Downloads latest package to temp dir for comparison, then cleans up.</div></div><div style="margin-top: 12px;"><strong>Examples</strong><div style="margin-top: 6px; background: var(--bg-elevated); border-radius: 6px; padding: 8px 12px; font-family: monospace; font-size: 0.85em;"><div><code>/validate-cca-install</code> <span style="opacity: 0.6;">— Run full installation validation</span></div></div></div>',
1329
1329
  trigger: '/validate-cca-install'
1330
1330
  },
1331
- 'docs-refresh-agent': {
1332
- title: 'docs-refresh.md',
1333
- desc: 'Background worker that syncs the docs when .claude/ files change.',
1331
+ 'README-agent': {
1332
+ title: 'README.md',
1333
+ desc: 'Placeholder drop your project\'s custom subagent definitions in this directory.',
1334
1334
  trigger: 'Background agent'
1335
1335
  },
1336
1336
  'feedback-rule-check-hook': {
@@ -1559,7 +1559,7 @@ CRITICAL: A plausible-looking cause from code reading is NOT confirmed evidence.
1559
1559
 
1560
1560
  > Run \`/autoconfig\` to populate this based on your project.`
1561
1561
  },
1562
- 'autoconfig-update': {
1562
+ 'autoconfig-update': {
1563
1563
  filename: 'autoconfig-update.md',
1564
1564
  content: `<!-- @applied
1565
1565
  -->
@@ -1847,27 +1847,16 @@ echo "$TMPDIR/package"
1847
1847
 
1848
1848
  Store the extracted path as \`$PKG_DIR\`. This gives us the ground truth for what files and versions should be installed.`
1849
1849
  },
1850
- 'docs-refresh-agent': {
1851
- filename: 'docs-refresh.md',
1852
- content: `# Docs Refresh Agent
1850
+ 'README-agent': {
1851
+ filename: 'README.md',
1852
+ content: `# Agents
1853
1853
 
1854
- Sync the interactive docs with the current state of \`.claude/\`.
1854
+ This directory is where you define **subagents** focused assistants Claude can delegate to during a task (e.g., a code reviewer, a test writer, a security auditor).
1855
1855
 
1856
- ## How
1856
+ claude-code-autoconfig ships this folder empty so you can populate it with agents tuned to your project. Each agent is a single Markdown file with frontmatter describing its purpose, tools, and system prompt.
1857
1857
 
1858
- Run:
1859
-
1860
- \`\`\`bash
1861
- node .claude/scripts/sync-docs.js
1862
- \`\`\`
1863
-
1864
- This scans \`.claude/\` for all files, extracts \`@description\` metadata, and updates the docs HTML (file tree, info cards, and content previews).
1865
-
1866
- ## When to Use
1867
-
1868
- - After adding, modifying, or deleting files in \`.claude/\`
1869
- - Before opening docs with \`/show-docs\` (already built in)
1870
- - As a background task when \`.claude/\` files change`
1858
+ See Anthropic's subagents docs for the file format:
1859
+ https://docs.anthropic.com/en/docs/claude-code/sub-agents`
1871
1860
  },
1872
1861
  'feedback-rule-check-hook': {
1873
1862
  filename: 'feedback-rule-check.js',
package/CHANGELOG.md CHANGED
@@ -141,6 +141,3 @@
141
141
  ## v1.0.136
142
142
  - fix: modernize permission syntax and merge perms on upgrade
143
143
 
144
- ## v1.0.135
145
- - feat: auto-sync docs with .claude/ contents via sync-docs.js
146
-
package/README.md CHANGED
@@ -54,8 +54,8 @@ your-project/
54
54
  │ ├── show-docs.md # /show-docs - interactive walkthrough
55
55
  │ ├── test.md # /test - run tests
56
56
  │ └── validate-cca-install.md # /validate-cca-install - verify installation
57
- ├── agents/ # Agent definitions
58
- │ └── docs-refresh.md # Docs sync agent
57
+ ├── agents/ # Custom subagents (add your own)
58
+ │ └── README.md # How to define agents
59
59
  ├── feedback/ # Team corrections for Claude
60
60
  │ └── FEEDBACK.md # Add entries when Claude errs
61
61
  ├── hooks/ # Hook scripts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-autoconfig",
3
- "version": "1.0.184",
3
+ "version": "1.0.185",
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",
@@ -1,21 +0,0 @@
1
- <!-- @description Background worker that syncs the docs when .claude/ files change. -->
2
-
3
- # Docs Refresh Agent
4
-
5
- Sync the interactive docs with the current state of `.claude/`.
6
-
7
- ## How
8
-
9
- Run:
10
-
11
- ```bash
12
- node .claude/scripts/sync-docs.js
13
- ```
14
-
15
- This scans `.claude/` for all files, extracts `@description` metadata, and updates the docs HTML (file tree, info cards, and content previews).
16
-
17
- ## When to Use
18
-
19
- - After adding, modifying, or deleting files in `.claude/`
20
- - Before opening docs with `/show-docs` (already built in)
21
- - As a background task when `.claude/` files change