codeam-cli 2.61.34 → 2.61.35

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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ All notable changes to `codeam-cli` are documented here.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [2.61.34] — 2026-07-24
8
+
9
+ ### Added
10
+
11
+ - **box:** Pre-install every agent + gh/glab + beads/dolt/headroom in the fleet image
12
+
7
13
  ## [2.61.33] — 2026-07-24
8
14
 
9
15
  ### Added
package/dist/index.js CHANGED
@@ -6355,7 +6355,7 @@ function readAnonId() {
6355
6355
  }
6356
6356
  function superProperties() {
6357
6357
  return {
6358
- cliVersion: true ? "2.61.34" : "0.0.0-dev",
6358
+ cliVersion: true ? "2.61.35" : "0.0.0-dev",
6359
6359
  nodeVersion: process.version,
6360
6360
  platform: process.platform,
6361
6361
  arch: process.arch,
@@ -6536,7 +6536,7 @@ var os4 = __toESM(require("os"));
6536
6536
  // package.json
6537
6537
  var package_default = {
6538
6538
  name: "codeam-cli",
6539
- version: "2.61.34",
6539
+ version: "2.61.35",
6540
6540
  description: "Workflow-continuity bridge for AI coding agents. Wrap Claude Code or Codex in a PTY and supervise, approve, and redirect the session from any device \u2014 async. The terminal companion for CodeAgent Mobile.",
6541
6541
  type: "commonjs",
6542
6542
  main: "dist/index.js",
@@ -7707,7 +7707,7 @@ var CommandRelayService = class _CommandRelayService {
7707
7707
  // fresh + clear the "CLI update available" banner after a self-update
7708
7708
  // (a codespace that reinstalls @latest reconnects via heartbeat, not
7709
7709
  // pair/reconnect). Older backends ignore the extra field.
7710
- ..."2.61.34" ? { ideVersion: "2.61.34" } : {}
7710
+ ..."2.61.35" ? { ideVersion: "2.61.35" } : {}
7711
7711
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
7712
7712
  }
7713
7713
  /**
@@ -18691,7 +18691,7 @@ async function autoUpgradeBeforeCriticalCommand() {
18691
18691
  if (process.env.NODE_ENV === "test") return;
18692
18692
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
18693
18693
  if (process.env.CI) return;
18694
- const current = true ? "2.61.34" : null;
18694
+ const current = true ? "2.61.35" : null;
18695
18695
  if (!current) return;
18696
18696
  const cache = readCache();
18697
18697
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -18708,7 +18708,7 @@ function checkForUpdates() {
18708
18708
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
18709
18709
  if (process.env.CI) return;
18710
18710
  if (!process.stdout.isTTY) return;
18711
- const current = true ? "2.61.34" : null;
18711
+ const current = true ? "2.61.35" : null;
18712
18712
  if (!current) return;
18713
18713
  const cache = readCache();
18714
18714
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -18728,7 +18728,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
18728
18728
  var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
18729
18729
  var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
18730
18730
  function currentCliVersion() {
18731
- return true ? "2.61.34" : null;
18731
+ return true ? "2.61.35" : null;
18732
18732
  }
18733
18733
  function runCmd(cmd, args2, timeoutMs) {
18734
18734
  return new Promise((resolve8) => {
@@ -38737,7 +38737,7 @@ function checkChokidar() {
38737
38737
  }
38738
38738
  async function doctor(args2 = []) {
38739
38739
  const json = args2.includes("--json");
38740
- const cliVersion = true ? "2.61.34" : "0.0.0-dev";
38740
+ const cliVersion = true ? "2.61.35" : "0.0.0-dev";
38741
38741
  const apiBase2 = resolveApiBaseUrl();
38742
38742
  const diagnosticId = (0, import_node_crypto13.randomUUID)();
38743
38743
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -39248,7 +39248,7 @@ async function mcpRun(args2) {
39248
39248
  // src/commands/version.ts
39249
39249
  var import_picocolors15 = __toESM(require("picocolors"));
39250
39250
  function version2() {
39251
- const v = true ? "2.61.34" : "unknown";
39251
+ const v = true ? "2.61.35" : "unknown";
39252
39252
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
39253
39253
  }
39254
39254
 
@@ -0,0 +1,33 @@
1
+ #!/usr/bin/env node
2
+ "use strict";
3
+
4
+ // src/postinstall.ts
5
+ var c = {
6
+ reset: "\x1B[0m",
7
+ bold: "\x1B[1m",
8
+ dim: "\x1B[2m",
9
+ green: "\x1B[32m",
10
+ cyan: "\x1B[36m",
11
+ violet: "\x1B[35m",
12
+ white: "\x1B[97m"
13
+ };
14
+ var lines = [
15
+ "",
16
+ ` ${c.violet}${c.bold}codeam-cli${c.reset} ${c.dim}\u2014 Claude Code remote control${c.reset}`,
17
+ "",
18
+ ` ${c.dim}1.${c.reset} Pair your phone:`,
19
+ ` ${c.cyan}codeam pair${c.reset}`,
20
+ "",
21
+ ` ${c.dim}2.${c.reset} Launch Claude Code with mobile control:`,
22
+ ` ${c.cyan}codeam${c.reset}`,
23
+ "",
24
+ ` ${c.dim}Other commands:${c.reset}`,
25
+ ` ${c.white}codeam sessions${c.reset} ${c.dim}list paired devices${c.reset}`,
26
+ ` ${c.white}codeam status${c.reset} ${c.dim}show connection info${c.reset}`,
27
+ ` ${c.white}codeam logout${c.reset} ${c.dim}remove all sessions${c.reset}`,
28
+ "",
29
+ ` ${c.dim}Requires Claude Code:${c.reset} ${c.green}npm install -g @anthropic-ai/claude-code${c.reset}`,
30
+ ` ${c.dim}Mobile app:${c.reset} ${c.green}https://www.codeagent-mobile.com${c.reset}`,
31
+ ""
32
+ ];
33
+ process.stdout.write(lines.join("\n") + "\n");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.61.34",
3
+ "version": "2.61.35",
4
4
  "description": "Workflow-continuity bridge for AI coding agents. Wrap Claude Code or Codex in a PTY and supervise, approve, and redirect the session from any device — async. The terminal companion for CodeAgent Mobile.",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",