claude-code-autoconfig 1.0.55 → 1.0.56
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 +3 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -273,7 +273,9 @@ rl.question('\x1b[90mPress ENTER to continue...\x1b[0m', () => {
|
|
|
273
273
|
'Bash(open:*)',
|
|
274
274
|
'Bash(xdg-open:*)'
|
|
275
275
|
].join(' ');
|
|
276
|
-
|
|
276
|
+
// Build command with proper quoting for shell
|
|
277
|
+
const cmd = `claude -p --allowedTools "${allowedTools}" "/autoconfig"`;
|
|
278
|
+
const claude = spawn(cmd, [], {
|
|
277
279
|
cwd: cwd,
|
|
278
280
|
stdio: 'inherit',
|
|
279
281
|
shell: true
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-autoconfig",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.56",
|
|
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",
|