claude-code-autoconfig 1.0.5 → 1.0.6

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.
@@ -4,6 +4,38 @@
4
4
 
5
5
  Analyze this project and configure Claude Code with real context.
6
6
 
7
+ ## Step 0: Migrate Existing Feedback (if CLAUDE.md exists)
8
+
9
+ If a CLAUDE.md already exists, read it and look for **team feedback** that should be preserved:
10
+
11
+ **Feedback patterns to look for:**
12
+ - Corrections: "Don't use X", "Always use Y instead", "Never do Z"
13
+ - Preferences: "We prefer...", "Team convention is...", "Boris's setup uses..."
14
+ - Warnings: "Be careful with...", "Watch out for...", "This is deprecated"
15
+ - Custom guidance: Anything that sounds like learned behavior or team-specific knowledge
16
+ - Notes about past mistakes or things Claude got wrong
17
+
18
+ **NOT feedback (standard config - will be regenerated):**
19
+ - Project name and description
20
+ - Tech stack listing
21
+ - Build/test/run commands
22
+ - File structure descriptions
23
+ - Standard conventions from frameworks
24
+
25
+ **If feedback is found:**
26
+ 1. Extract the feedback sections
27
+ 2. Append them to `.claude/feedback/FEEDBACK.md` with a header:
28
+ ```markdown
29
+ ## [Date]: Migrated from CLAUDE.md
30
+
31
+ The following feedback was preserved from the previous CLAUDE.md during autoconfig:
32
+
33
+ [extracted feedback here]
34
+ ```
35
+ 3. Notify the user: "Migrated team feedback from CLAUDE.md to .claude/feedback/FEEDBACK.md"
36
+
37
+ **If no feedback found:** Proceed silently.
38
+
7
39
  ## Step 1: Detect Environment
8
40
 
9
41
  **Operating System:**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-autoconfig",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
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",