claude-code-autoconfig 1.0.13 → 1.0.15
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/.claude/settings.json +13 -0
- package/bin/cli.js +8 -8
- package/package.json +1 -1
package/.claude/settings.json
CHANGED
|
@@ -34,5 +34,18 @@
|
|
|
34
34
|
"Bash(curl:*)",
|
|
35
35
|
"Bash(wget:*)"
|
|
36
36
|
]
|
|
37
|
+
},
|
|
38
|
+
"hooks": {
|
|
39
|
+
"SessionStart": [
|
|
40
|
+
{
|
|
41
|
+
"matcher": "",
|
|
42
|
+
"hooks": [
|
|
43
|
+
{
|
|
44
|
+
"type": "command",
|
|
45
|
+
"command": "case \"$OSTYPE\" in darwin*|linux-gnu*) printf '\\033]0;claude\\007';; msys*|cygwin*) cmd.exe /c \"title claude\" 2>/dev/null;; esac"
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
]
|
|
37
50
|
}
|
|
38
51
|
}
|
package/bin/cli.js
CHANGED
|
@@ -198,14 +198,14 @@ console.log('\x1b[32m%s\x1b[0m', '✅ Prepared /autoconfig command');
|
|
|
198
198
|
|
|
199
199
|
// Step 4: Show "ONE MORE STEP" message
|
|
200
200
|
console.log();
|
|
201
|
-
console.log('\x1b[33m
|
|
202
|
-
console.log('\x1b[33m║
|
|
203
|
-
console.log('\x1b[33m║\x1b[0m
|
|
204
|
-
console.log('\x1b[33m║
|
|
205
|
-
console.log('\x1b[33m║\x1b[0m Run \x1b[36m/autoconfig\x1b[0m in Claude Code
|
|
206
|
-
console.log('\x1b[33m║\x1b[0m to complete setup
|
|
207
|
-
console.log('\x1b[33m║
|
|
208
|
-
console.log('\x1b[33m
|
|
201
|
+
console.log('\x1b[33m╔════════════════════════════════════╗\x1b[0m');
|
|
202
|
+
console.log('\x1b[33m║ ║\x1b[0m');
|
|
203
|
+
console.log('\x1b[33m║\x1b[0m' + ' \x1b[1;33mONE MORE STEP\x1b[0m' + ' \x1b[33m║\x1b[0m');
|
|
204
|
+
console.log('\x1b[33m║ ║\x1b[0m');
|
|
205
|
+
console.log('\x1b[33m║\x1b[0m' + ' Run \x1b[36m/autoconfig\x1b[0m in Claude Code' + ' \x1b[33m║\x1b[0m');
|
|
206
|
+
console.log('\x1b[33m║\x1b[0m' + ' to complete setup' + ' \x1b[33m║\x1b[0m');
|
|
207
|
+
console.log('\x1b[33m║ ║\x1b[0m');
|
|
208
|
+
console.log('\x1b[33m╚════════════════════════════════════╝\x1b[0m');
|
|
209
209
|
console.log();
|
|
210
210
|
|
|
211
211
|
// Step 5: Wait for Enter, then launch Claude Code
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-autoconfig",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
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",
|