create-claude-workspace 1.1.74 → 1.1.75

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.
@@ -388,7 +388,7 @@ async function main() {
388
388
  console.log('');
389
389
  // No -T flag — Docker allocates a TTY, which natively forwards Ctrl+C to the container.
390
390
  // async spawn keeps the event loop alive so our SIGINT handler (docker compose kill) fires as backup.
391
- const code = await composeAsync(['run', '--rm', 'claude', '-c', `exec npx create-claude-workspace run ${escaped.join(' ')}`]);
391
+ const code = await composeAsync(['run', '--rm', 'claude', '-c', `exec npx -y create-claude-workspace run ${escaped.join(' ')}`]);
392
392
  process.exit(code);
393
393
  }
394
394
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-claude-workspace",
3
- "version": "1.1.74",
3
+ "version": "1.1.75",
4
4
  "description": "Scaffold a project with Claude Code agents for autonomous AI-driven development",
5
5
  "type": "module",
6
6
  "bin": {