@lifeaitools/clauth 1.5.48 → 1.5.49

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.
@@ -5269,8 +5269,8 @@ async function startChitchatSession(name) {
5269
5269
  const binary = findClaudeBinary();
5270
5270
  if (binary) {
5271
5271
  try {
5272
- const cmd = `start cmd /k "cd /d ${CHITCHAT_CWD} && ${binary} /rdc:collab --session ${session_id}"`;
5273
- require('child_process').exec(cmd, { shell: true });
5272
+ const child = spawnProc('wt.exe', ['new-tab', '--title', 'rdc:collab', 'cmd', '/k', `cd /d ${CHITCHAT_CWD} && ${binary} /rdc:collab --session ${session_id}`], { detached: true, stdio: 'ignore', shell: false });
5273
+ child.unref();
5274
5274
  console.log(`[ClaudeAItoCLI] spawned terminal for session ${session_id}`);
5275
5275
  } catch (err) {
5276
5276
  console.warn(`[ClaudeAItoCLI] could not spawn terminal: ${err.message}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lifeaitools/clauth",
3
- "version": "1.5.48",
3
+ "version": "1.5.49",
4
4
  "description": "Hardware-bound credential vault for the LIFEAI infrastructure stack",
5
5
  "type": "module",
6
6
  "bin": {