claude-code-autoconfig 1.0.89 → 1.0.91
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.
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
|
|
8
8
|
Check for and install pending updates to your Claude Code configuration.
|
|
9
9
|
|
|
10
|
+
**Style guideline**: Work silently through Steps 1-3. Do not narrate internal steps, implementation details, or progress messages (e.g., "Let me check...", "The @applied block is empty..."). The first output the user sees should be the formatted summary in Step 4 (or the "up to date" message).
|
|
11
|
+
|
|
10
12
|
## Step 1: Pull Latest Updates
|
|
11
13
|
|
|
12
14
|
Run this command via Bash to pull new update files from the latest package:
|
|
@@ -56,20 +58,24 @@ Then stop.
|
|
|
56
58
|
|
|
57
59
|
## Step 4: Display Summary
|
|
58
60
|
|
|
59
|
-
|
|
61
|
+
**Important**: Do NOT narrate your internal steps (e.g., "The @applied block is empty" or "Let me check..."). Go straight to the formatted output below. The user doesn't need to see implementation details.
|
|
62
|
+
|
|
63
|
+
Output the pending updates using this exact format:
|
|
60
64
|
|
|
61
65
|
```
|
|
62
|
-
|
|
66
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
67
|
+
Updates available ({count})
|
|
68
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
63
69
|
|
|
64
|
-
001
|
|
65
|
-
002
|
|
66
|
-
003 - Another update
|
|
70
|
+
001 ─ Debug Methodology
|
|
71
|
+
002 ─ Some other feature
|
|
67
72
|
|
|
68
|
-
|
|
69
|
-
|
|
73
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
74
|
+
[1] Install all [2] Review each
|
|
75
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
70
76
|
```
|
|
71
77
|
|
|
72
|
-
Wait for the user to respond with 1 or 2.
|
|
78
|
+
Replace `{count}` with the number of pending updates. List each update with its ID and title. Wait for the user to respond with 1 or 2.
|
|
73
79
|
|
|
74
80
|
## Step 5a: Install All (User picked 1)
|
|
75
81
|
|
|
@@ -7,6 +7,12 @@
|
|
|
7
7
|
|
|
8
8
|
Add the following to the user's `MEMORY.md` file (Claude's persistent auto memory). This ensures the debugging methodology is always loaded into Claude's system prompt for every session.
|
|
9
9
|
|
|
10
|
+
## Locate MEMORY.md
|
|
11
|
+
|
|
12
|
+
The file lives at `~/.claude/projects/{encoded-project-path}/memory/MEMORY.md` where the project path is encoded by replacing path separators with dashes and removing colons (e.g., `C:\CODE\my-project` becomes `C--CODE-my-project`).
|
|
13
|
+
|
|
14
|
+
**Important**: Do NOT write MEMORY.md to the project root. It must go in the Claude Code user directory above. Create the directory if it doesn't exist. Append if the file already exists.
|
|
15
|
+
|
|
10
16
|
## Content to Add
|
|
11
17
|
|
|
12
18
|
```markdown
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-autoconfig",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.91",
|
|
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",
|