shiva-code 0.8.7 → 0.8.9

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/dist/index.js +4 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -4209,7 +4209,8 @@ async function spawnInTmux(projects, sessionName) {
4209
4209
  project.projectPath,
4210
4210
  "claude",
4211
4211
  ...claudeArgs
4212
- ], { stdio: "inherit" });
4212
+ ], { stdio: "ignore" });
4213
+ spawnSync2("tmux", ["select-window", "-t", safeName], { stdio: "ignore" });
4213
4214
  } else {
4214
4215
  if (i === 0) {
4215
4216
  spawnSync2("tmux", [
@@ -17298,8 +17299,7 @@ async function showDashboard() {
17298
17299
  newSession: false
17299
17300
  }], detectTerminal());
17300
17301
  if (isInsideTmux()) {
17301
- await waitForKeypress();
17302
- await showDashboard();
17302
+ process.exit(0);
17303
17303
  }
17304
17304
  }
17305
17305
  break;
@@ -17313,8 +17313,7 @@ async function showDashboard() {
17313
17313
  if (launches.length > 0) {
17314
17314
  await spawnProjects(launches, detectTerminal());
17315
17315
  if (isInsideTmux()) {
17316
- await waitForKeypress();
17317
- await showDashboard();
17316
+ process.exit(0);
17318
17317
  }
17319
17318
  }
17320
17319
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shiva-code",
3
- "version": "0.8.7",
3
+ "version": "0.8.9",
4
4
  "description": "Makes Claude Code Persistent - Cross-Project Memory CLI",
5
5
  "author": "SHIVA AI",
6
6
  "license": "MIT",