claude-code-autoconfig 1.0.73 → 1.0.74
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.
- package/bin/cli.js +11 -5
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -190,10 +190,11 @@ cp .claude/migration/${timestamp}/settings.json .claude/settings.json
|
|
|
190
190
|
}
|
|
191
191
|
}
|
|
192
192
|
|
|
193
|
-
// Step 3: Copy minimal bootstrap (commands/,
|
|
193
|
+
// Step 3: Copy minimal bootstrap (commands/, docs/, agents/, feedback/)
|
|
194
194
|
const commandsSrc = path.join(packageDir, '.claude', 'commands');
|
|
195
|
-
const
|
|
195
|
+
const docsSrc = path.join(packageDir, '.claude', 'docs');
|
|
196
196
|
const agentsSrc = path.join(packageDir, '.claude', 'agents');
|
|
197
|
+
const feedbackSrc = path.join(packageDir, '.claude', 'feedback');
|
|
197
198
|
|
|
198
199
|
function copyDir(src, dest) {
|
|
199
200
|
fs.mkdirSync(dest, { recursive: true });
|
|
@@ -221,9 +222,9 @@ if (fs.existsSync(commandsSrc)) {
|
|
|
221
222
|
process.exit(1);
|
|
222
223
|
}
|
|
223
224
|
|
|
224
|
-
// Copy
|
|
225
|
-
if (fs.existsSync(
|
|
226
|
-
copyDir(
|
|
225
|
+
// Copy docs (interactive documentation)
|
|
226
|
+
if (fs.existsSync(docsSrc)) {
|
|
227
|
+
copyDir(docsSrc, path.join(claudeDest, 'docs'));
|
|
227
228
|
}
|
|
228
229
|
|
|
229
230
|
// Copy agents if exists
|
|
@@ -231,6 +232,11 @@ if (fs.existsSync(agentsSrc)) {
|
|
|
231
232
|
copyDir(agentsSrc, path.join(claudeDest, 'agents'));
|
|
232
233
|
}
|
|
233
234
|
|
|
235
|
+
// Copy feedback template
|
|
236
|
+
if (fs.existsSync(feedbackSrc)) {
|
|
237
|
+
copyDir(feedbackSrc, path.join(claudeDest, 'feedback'));
|
|
238
|
+
}
|
|
239
|
+
|
|
234
240
|
console.log('\x1b[32m%s\x1b[0m', '✅ Prepared /autoconfig command');
|
|
235
241
|
|
|
236
242
|
// Step 4: Show "READY TO CONFIGURE" message
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-autoconfig",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.74",
|
|
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",
|