claude-code-autoconfig 1.0.46 → 1.0.47

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