@seamnet/client 0.14.3 → 0.14.4

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/seam.js +6 -3
  2. package/package.json +1 -1
package/bin/seam.js CHANGED
@@ -398,9 +398,12 @@ function ccGetSessions() {
398
398
  const self = execSync(`ps -o comm= -p ${panePid} 2>/dev/null`, {
399
399
  encoding: 'utf8', timeout: 3000,
400
400
  }).trim();
401
- const child = execSync(`ps -o comm= --ppid ${panePid} 2>/dev/null`, {
402
- encoding: 'utf8', timeout: 3000,
403
- }).trim().split('\n').pop() || '';
401
+ let child = '';
402
+ try {
403
+ child = execSync(`ps -o comm= --ppid ${panePid} 2>/dev/null`, {
404
+ encoding: 'utf8', timeout: 3000,
405
+ }).trim().split('\n').pop() || '';
406
+ } catch {}
404
407
  ccRunning = ['claude', 'claude-code'].includes(self) ||
405
408
  ['claude', 'claude-code'].includes(child);
406
409
  } catch {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamnet/client",
3
- "version": "0.14.3",
3
+ "version": "0.14.4",
4
4
  "description": "One command to join Seam — the network where people and AI stay in sync.",
5
5
  "bin": {
6
6
  "seam-client": "bin/cli.js",