claude-code-autoconfig 1.0.92 → 1.0.94
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.
|
@@ -60,22 +60,22 @@ Then stop.
|
|
|
60
60
|
|
|
61
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
62
|
|
|
63
|
-
Output the pending updates using this exact format. Use
|
|
63
|
+
Output the pending updates using this exact format. Use `═` horizontal dividers only (no vertical borders — they render poorly in Claude Code). Render the dividers and header in **yellow** (ANSI `\x1b[33m`) to visually match the CLI's yellow "READY TO UPDATE" box and distinguish this from regular Claude output:
|
|
64
64
|
|
|
65
65
|
```
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
66
|
+
════════════════════════════════════════════
|
|
67
|
+
Updates available ({count})
|
|
68
|
+
════════════════════════════════════════════
|
|
69
|
+
|
|
70
|
+
001 ─ Debug Methodology
|
|
71
|
+
002 ─ Some other feature
|
|
72
|
+
|
|
73
|
+
════════════════════════════════════════════
|
|
74
|
+
[1] Install all [2] Review each
|
|
75
|
+
════════════════════════════════════════════
|
|
76
76
|
```
|
|
77
77
|
|
|
78
|
-
Replace `{count}` with the number of pending updates. List each update with its ID and title.
|
|
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.
|
|
79
79
|
|
|
80
80
|
## Step 5a: Install All (User picked 1)
|
|
81
81
|
|
|
@@ -91,29 +91,27 @@ After all updates are applied, go to Step 6.
|
|
|
91
91
|
|
|
92
92
|
## Step 5b: Review Each (User picked 2)
|
|
93
93
|
|
|
94
|
-
For each pending update (in ID order), display
|
|
94
|
+
For each pending update (in ID order), display using horizontal dividers only (no vertical borders — they render poorly in Claude Code):
|
|
95
95
|
|
|
96
96
|
```
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
97
|
+
════════════════════════════════════════════
|
|
98
|
+
UPDATE {n} of {total} {type}
|
|
99
|
+
════════════════════════════════════════════
|
|
100
|
+
|
|
101
|
+
{title}
|
|
102
|
+
|
|
103
|
+
{description}
|
|
104
|
+
|
|
105
|
+
Files: {comma-separated list of files touched}
|
|
106
|
+
|
|
107
|
+
════════════════════════════════════════════
|
|
108
|
+
[y] Install [s] Skip [a] Install all remaining
|
|
109
|
+
════════════════════════════════════════════
|
|
110
110
|
```
|
|
111
111
|
|
|
112
|
-
**
|
|
113
|
-
-
|
|
114
|
-
-
|
|
115
|
-
- Pad content lines with spaces so right `║` aligns at column 58
|
|
116
|
-
- Wrap description text to fit within the borders (54 chars of content)
|
|
112
|
+
**Rendering rules:**
|
|
113
|
+
- Use `═` horizontal dividers only — no `║ ╔ ╗ ╠ ╣ ╚ ╝` vertical/corner characters
|
|
114
|
+
- Content lines are free-flowing (no padding or alignment needed)
|
|
117
115
|
- `{n}` is the position in the pending list (1, 2, 3...), `{total}` is count of pending
|
|
118
116
|
|
|
119
117
|
**User actions:**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-autoconfig",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.94",
|
|
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",
|