claude-code-autoconfig 1.0.36 → 1.0.38

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.
@@ -378,7 +378,7 @@
378
378
  background: var(--bg-secondary);
379
379
  border-radius: 8px;
380
380
  overflow: hidden;
381
- height: 340px;
381
+ min-height: 340px;
382
382
  position: relative;
383
383
  }
384
384
 
@@ -830,11 +830,6 @@
830
830
  <span class="tree-folder-icon">📁</span>
831
831
  <span class="folder">agents</span>
832
832
  </div>
833
- <div class="tree-item indent-3 hidden" data-info="agents-md" data-parent="agents">
834
- <span class="tree-spacer"></span>
835
- <span class="tree-file-icon">📄</span>
836
- <span class="file">AGENTS.md</span>
837
- </div>
838
833
  <div class="tree-item indent-3 hidden" data-info="create-retro-item" data-parent="agents">
839
834
  <span class="tree-spacer"></span>
840
835
  <span class="tree-file-icon">📄</span>
@@ -1188,10 +1183,6 @@
1188
1183
  title: 'agents/',
1189
1184
  desc: 'Custom agent definitions for specialized tasks. Agents are autonomous workers that can be spawned to handle complex operations independently.'
1190
1185
  },
1191
- 'agents-md': {
1192
- title: 'AGENTS.md',
1193
- desc: 'Documentation and overview of the agents available in this project.'
1194
- },
1195
1186
  'create-retro-item': {
1196
1187
  title: 'create-retro-item.md',
1197
1188
  desc: '(Experimental) Agent that creates structured retro items for tech debt tracking. Used by the /enable-retro feature.'
@@ -1467,6 +1458,74 @@
1467
1458
 
1468
1459
  // Add your MCP server configs here when you're ready.
1469
1460
  // See: https://docs.anthropic.com/en/docs/claude-code/mcp`
1461
+ },
1462
+ 'create-retro-item': {
1463
+ filename: 'create-retro-item.md',
1464
+ content: `# Create Retro Item Agent
1465
+
1466
+ Create a fully-scoped story file in \`.claude/retro/\` when tech debt or improvement opportunities are identified.
1467
+
1468
+ ## When to Trigger
1469
+
1470
+ Call this agent when you notice:
1471
+ - Tech debt that should be addressed later
1472
+ - Code that works but could be improved
1473
+ - Missing tests, documentation, or error handling
1474
+ - Architectural improvements worth tracking
1475
+
1476
+ ## Input
1477
+
1478
+ Provide these details when calling:
1479
+ - **title**: Short descriptive name (used for filename)
1480
+ - **problem**: What's wrong or what friction was encountered
1481
+ - **criteria**: Specific, testable acceptance criteria
1482
+ - **approach**: How to fix it
1483
+ - **priority**: Critical | High | Medium | Low
1484
+ - **effort**: S | M | L | XL
1485
+ - **files**: List of files involved
1486
+
1487
+ ## Behavior
1488
+
1489
+ 1. Generate filename from title: \`kebab-case.md\`
1490
+ 2. Create story file in \`.claude/retro/\` using the template format
1491
+ 3. Confirm creation with filename
1492
+
1493
+ ## Guidelines
1494
+
1495
+ - **Be concise**: Keep descriptions actionable, not verbose
1496
+ - **Be specific**: Include actual file paths and line numbers when relevant
1497
+ - **Don't duplicate**: Check if similar item already exists first
1498
+ - **Don't block**: Create the item and continue with the main task`
1499
+ },
1500
+ 'guide-refresh-agent': {
1501
+ filename: 'guide-refresh.md',
1502
+ content: `# Guide Refresh Agent
1503
+
1504
+ Incrementally update the guide's treeInfo when \`.claude/\` files are added or modified.
1505
+
1506
+ ## Trigger
1507
+
1508
+ - PostToolUse hook on Edit|Write to \`.claude/\`
1509
+
1510
+ ## Scope
1511
+
1512
+ - Read \`.claude/**/*.md\` for \`@description\` comments
1513
+ - Update \`.claude/guide/autoconfig.guide.html\` treeInfo
1514
+
1515
+ ## Behavior
1516
+
1517
+ 1. Check which \`.claude/\` file was just modified
1518
+ 2. Extract the \`<!-- @description ... -->\` comment from the top
1519
+ 3. Find the corresponding entry in the guide's \`treeInfo\` object
1520
+ 4. Update only that entry's \`desc\` field
1521
+ 5. If file is new, add a new treeInfo entry
1522
+ 6. If file was deleted, remove the treeInfo entry
1523
+
1524
+ ## Guidelines
1525
+
1526
+ - **Be fast**: Only touch the affected entry
1527
+ - **Be minimal**: Don't reformat or reorganize unrelated code
1528
+ - **Be silent**: Run in background, no output unless error`
1470
1529
  },
1471
1530
  'autoconfig': {
1472
1531
  filename: 'autoconfig.md',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-autoconfig",
3
- "version": "1.0.36",
3
+ "version": "1.0.38",
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,29 +0,0 @@
1
- # Subagents
2
-
3
- Define autonomous background workers here. Each .md file becomes a subagent Claude can spawn.
4
-
5
- <!-- ╔══════════════════════════════════════════════════════════════════╗
6
- ║ ║
7
- ║ TEMPLATE BELOW — DELETE THIS BLOCK WHEN ADDING REAL AGENTS ║
8
- ║ ║
9
- ╠══════════════════════════════════════════════════════════════════╣
10
- ║ ║
11
- ║ ## agent-name.md ║
12
- ║ ║
13
- ║ <!-- Brief description for guide hover --> ║
14
- ║ ║
15
- ║ # Agent Name ║
16
- ║ ║
17
- ║ Describe what this agent does, when it runs, ║
18
- ║ and what it has access to. ║
19
- ║ ║
20
- ║ ## Trigger ║
21
- ║ - Via hook (PostToolUse, Stop, etc.) ║
22
- ║ - Via slash command ║
23
- ║ - Via another agent ║
24
- ║ ║
25
- ║ ## Scope ║
26
- ║ What files/directories can this agent access? ║
27
- ║ What actions can it take? ║
28
- ║ ║
29
- ╚══════════════════════════════════════════════════════════════════╝ -->