claudemesh-cli 0.9.6 → 0.9.7

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 +1 -13
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -40093,7 +40093,7 @@ var package_default;
40093
40093
  var init_package = __esm(() => {
40094
40094
  package_default = {
40095
40095
  name: "claudemesh-cli",
40096
- version: "0.9.6",
40096
+ version: "0.9.7",
40097
40097
  description: "Claude Code MCP client for claudemesh — peer mesh messaging between Claude sessions.",
40098
40098
  keywords: [
40099
40099
  "claude-code",
@@ -53953,15 +53953,6 @@ function drawTopBar(extra) {
53953
53953
  const gap = Math.max(1, cols - left.length - right.length - mid.length);
53954
53954
  process.stdout.write(moveTo(1, 1) + bg + left + mid + " ".repeat(gap) + right + reset);
53955
53955
  }
53956
- function drawBottomBar(left, right) {
53957
- const { cols, rows } = termSize();
53958
- const bg = "\x1B[48;5;208m\x1B[30m";
53959
- const reset = "\x1B[0m";
53960
- const l = ` ${left}`;
53961
- const r = right ? `${right} ` : "";
53962
- const gap = Math.max(1, cols - l.length - r.length);
53963
- process.stdout.write(moveTo(rows, 1) + bg + l + " ".repeat(gap) + r + reset);
53964
- }
53965
53956
  function enterFullScreen() {
53966
53957
  process.stdout.write(HIDE_CURSOR + CLEAR_SCREEN);
53967
53958
  drawTopBar();
@@ -54137,7 +54128,6 @@ async function runLaunchWizard(opts) {
54137
54128
  const { rows } = termSize();
54138
54129
  enterFullScreen();
54139
54130
  drawTopBar();
54140
- drawBottomBar("↑↓ navigate ⏎ select esc skip ctrl-c quit", `mesh: ${opts.meshSlug}`);
54141
54131
  const logoTop = Math.floor((rows - FRAME_HEIGHT - 16) / 2);
54142
54132
  const brandRow = logoTop + FRAME_HEIGHT + 1;
54143
54133
  const subtitleRow = brandRow + 1;
@@ -54229,7 +54219,6 @@ async function runLaunchWizard(opts) {
54229
54219
  }
54230
54220
  row += 2;
54231
54221
  writeCentered(row, dim("Launching Claude Code..."));
54232
- drawBottomBar(`${opts.displayName} on ${opts.meshSlug}`, `mode: ${messageMode}`);
54233
54222
  await new Promise((r) => setTimeout(r, 800));
54234
54223
  spinner.stop();
54235
54224
  exitFullScreen();
@@ -54901,7 +54890,6 @@ async function runWelcome() {
54901
54890
  const { rows } = termSize();
54902
54891
  enterFullScreen();
54903
54892
  drawTopBar();
54904
- drawBottomBar("↑↓ navigate ⏎ select ctrl-c quit", "claudemesh.com");
54905
54893
  const logoTop = Math.floor((rows - FRAME_HEIGHT - 10) / 2);
54906
54894
  const brandRow = logoTop + FRAME_HEIGHT + 1;
54907
54895
  const subtitleRow = brandRow + 1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudemesh-cli",
3
- "version": "0.9.6",
3
+ "version": "0.9.7",
4
4
  "description": "Claude Code MCP client for claudemesh — peer mesh messaging between Claude sessions.",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -49,9 +49,9 @@
49
49
  "typescript": "5.9.3",
50
50
  "vitest": "4.0.14",
51
51
  "@turbostarter/vitest-config": "0.1.0",
52
- "@turbostarter/tsconfig": "0.1.0",
52
+ "@turbostarter/eslint-config": "0.1.0",
53
53
  "@turbostarter/prettier-config": "0.1.0",
54
- "@turbostarter/eslint-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",