claudemesh-cli 0.9.2 → 0.9.3

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 +16 -2
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -54099,7 +54099,21 @@ async function runLaunch(flags, rawArgs) {
54099
54099
  ...filtered
54100
54100
  ];
54101
54101
  const isWindows = process.platform === "win32";
54102
- const child = spawn("claude", claudeArgs, {
54102
+ let claudeBin = "claude";
54103
+ if (!isWindows) {
54104
+ const candidates = [
54105
+ join4(homedir4(), ".local", "bin", "claude"),
54106
+ "/usr/local/bin/claude",
54107
+ join4(homedir4(), ".claude", "bin", "claude")
54108
+ ];
54109
+ for (const c of candidates) {
54110
+ if (existsSync3(c)) {
54111
+ claudeBin = c;
54112
+ break;
54113
+ }
54114
+ }
54115
+ }
54116
+ const child = spawn(claudeBin, claudeArgs, {
54103
54117
  stdio: "inherit",
54104
54118
  shell: isWindows,
54105
54119
  env: {
@@ -54163,7 +54177,7 @@ init_config();
54163
54177
  // package.json
54164
54178
  var package_default = {
54165
54179
  name: "claudemesh-cli",
54166
- version: "0.9.2",
54180
+ version: "0.9.3",
54167
54181
  description: "Claude Code MCP client for claudemesh — peer mesh messaging between Claude sessions.",
54168
54182
  keywords: [
54169
54183
  "claude-code",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudemesh-cli",
3
- "version": "0.9.2",
3
+ "version": "0.9.3",
4
4
  "description": "Claude Code MCP client for claudemesh — peer mesh messaging between Claude sessions.",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -50,8 +50,8 @@
50
50
  "vitest": "4.0.14",
51
51
  "@turbostarter/eslint-config": "0.1.0",
52
52
  "@turbostarter/prettier-config": "0.1.0",
53
- "@turbostarter/tsconfig": "0.1.0",
54
- "@turbostarter/vitest-config": "0.1.0"
53
+ "@turbostarter/vitest-config": "0.1.0",
54
+ "@turbostarter/tsconfig": "0.1.0"
55
55
  },
56
56
  "scripts": {
57
57
  "build": "bun build src/index.ts --target=node --outfile dist/index.js --banner \"#!/usr/bin/env node\" && chmod +x dist/index.js",