codeam-cli 2.61.73 → 2.61.74

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.73] — 2026-07-29
8
+
9
+ ### Added
10
+
11
+ - **cli:** Honor suppressOnboardingWelcome on self-hosted/warm deploys (#562)
12
+
7
13
  ## [2.61.72] — 2026-07-29
8
14
 
9
15
  ### Fixed
package/dist/index.js CHANGED
@@ -7074,7 +7074,7 @@ function readAnonId() {
7074
7074
  }
7075
7075
  function superProperties() {
7076
7076
  return {
7077
- cliVersion: true ? "2.61.73" : "0.0.0-dev",
7077
+ cliVersion: true ? "2.61.74" : "0.0.0-dev",
7078
7078
  nodeVersion: process.version,
7079
7079
  platform: process.platform,
7080
7080
  arch: process.arch,
@@ -7255,7 +7255,7 @@ var os4 = __toESM(require("os"));
7255
7255
  // package.json
7256
7256
  var package_default = {
7257
7257
  name: "codeam-cli",
7258
- version: "2.61.73",
7258
+ version: "2.61.74",
7259
7259
  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.",
7260
7260
  type: "commonjs",
7261
7261
  main: "dist/index.js",
@@ -8487,7 +8487,7 @@ var CommandRelayService = class _CommandRelayService {
8487
8487
  // fresh + clear the "CLI update available" banner after a self-update
8488
8488
  // (a codespace that reinstalls @latest reconnects via heartbeat, not
8489
8489
  // pair/reconnect). Older backends ignore the extra field.
8490
- ..."2.61.73" ? { ideVersion: "2.61.73" } : {}
8490
+ ..."2.61.74" ? { ideVersion: "2.61.74" } : {}
8491
8491
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
8492
8492
  }
8493
8493
  /**
@@ -19601,7 +19601,7 @@ async function autoUpgradeBeforeCriticalCommand() {
19601
19601
  if (process.env.NODE_ENV === "test") return;
19602
19602
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
19603
19603
  if (process.env.CI) return;
19604
- const current = true ? "2.61.73" : null;
19604
+ const current = true ? "2.61.74" : null;
19605
19605
  if (!current) return;
19606
19606
  const cache = readCache();
19607
19607
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -19618,7 +19618,7 @@ function checkForUpdates() {
19618
19618
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
19619
19619
  if (process.env.CI) return;
19620
19620
  if (!process.stdout.isTTY) return;
19621
- const current = true ? "2.61.73" : null;
19621
+ const current = true ? "2.61.74" : null;
19622
19622
  if (!current) return;
19623
19623
  const cache = readCache();
19624
19624
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -19638,7 +19638,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
19638
19638
  var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
19639
19639
  var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
19640
19640
  function currentCliVersion() {
19641
- return true ? "2.61.73" : null;
19641
+ return true ? "2.61.74" : null;
19642
19642
  }
19643
19643
  function runCmd(cmd, args2, timeoutMs) {
19644
19644
  return new Promise((resolve9) => {
@@ -20809,7 +20809,7 @@ var HostAgentSupervisor = class {
20809
20809
  if (this.children.size > 0) return;
20810
20810
  const session = getActiveSession();
20811
20811
  if (!session || !session.pluginId || !session.pollSecret || !session.agent) return;
20812
- const cwd = process.cwd();
20812
+ const cwd = session.cwd && fs44.existsSync(session.cwd) ? session.cwd : process.cwd();
20813
20813
  const proc = this.resumeSpawner({ ...readHeadroomChildEnv() }, cwd);
20814
20814
  const child = {
20815
20815
  deployId: session.id,
@@ -25736,7 +25736,12 @@ async function pairAuto(args2) {
25736
25736
  pluginAuthToken: claimed.pluginAuthToken,
25737
25737
  // SEC crit1 (#813): persist so boot-time /reconnect proves possession.
25738
25738
  pollSecret,
25739
- agent: claimed.agent
25739
+ agent: claimed.agent,
25740
+ // The pair-auto child runs IN the deploy workspace, so this is the cwd the
25741
+ // agent's conversation lives under. Persist it so a supervisor-boot resume
25742
+ // (warm-codespace wake / restart) re-spawns in the SAME dir and resumes the
25743
+ // real conversation instead of a fresh one in the host-agent's cwd.
25744
+ cwd: process.cwd()
25740
25745
  };
25741
25746
  addSession(claimedSession);
25742
25747
  identifyUser({
@@ -40084,7 +40089,7 @@ function checkChokidar() {
40084
40089
  }
40085
40090
  async function doctor(args2 = []) {
40086
40091
  const json = args2.includes("--json");
40087
- const cliVersion = true ? "2.61.73" : "0.0.0-dev";
40092
+ const cliVersion = true ? "2.61.74" : "0.0.0-dev";
40088
40093
  const apiBase2 = resolveApiBaseUrl();
40089
40094
  const diagnosticId = (0, import_node_crypto13.randomUUID)();
40090
40095
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -40606,7 +40611,7 @@ async function mcpRun(args2) {
40606
40611
  // src/commands/version.ts
40607
40612
  var import_picocolors15 = __toESM(require("picocolors"));
40608
40613
  function version2() {
40609
- const v = true ? "2.61.73" : "unknown";
40614
+ const v = true ? "2.61.74" : "unknown";
40610
40615
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
40611
40616
  }
40612
40617
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.61.73",
3
+ "version": "2.61.74",
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",