codeam-cli 2.58.1 → 2.59.0

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,16 @@ 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.58.1] — 2026-07-08
8
+
9
+ ### CI
10
+
11
+ - **workflow:** Add win32-native cursor-agent PATH resolution gate
12
+
13
+ ### Fixed
14
+
15
+ - **cli:** Resolve cursor-agent by absolute path on Windows (stale-PATH ENOENT)
16
+
7
17
  ## [2.58.0] — 2026-07-07
8
18
 
9
19
  ### CI
package/dist/index.js CHANGED
@@ -5652,7 +5652,7 @@ function readAnonId() {
5652
5652
  }
5653
5653
  function superProperties() {
5654
5654
  return {
5655
- cliVersion: true ? "2.58.1" : "0.0.0-dev",
5655
+ cliVersion: true ? "2.59.0" : "0.0.0-dev",
5656
5656
  nodeVersion: process.version,
5657
5657
  platform: process.platform,
5658
5658
  arch: process.arch,
@@ -5833,7 +5833,7 @@ var os4 = __toESM(require("os"));
5833
5833
  // package.json
5834
5834
  var package_default = {
5835
5835
  name: "codeam-cli",
5836
- version: "2.58.1",
5836
+ version: "2.59.0",
5837
5837
  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.",
5838
5838
  type: "commonjs",
5839
5839
  main: "dist/index.js",
@@ -6881,7 +6881,7 @@ var CommandRelayService = class {
6881
6881
  // fresh + clear the "CLI update available" banner after a self-update
6882
6882
  // (a codespace that reinstalls @latest reconnects via heartbeat, not
6883
6883
  // pair/reconnect). Older backends ignore the extra field.
6884
- ..."2.58.1" ? { ideVersion: "2.58.1" } : {}
6884
+ ..."2.59.0" ? { ideVersion: "2.59.0" } : {}
6885
6885
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
6886
6886
  }
6887
6887
  /**
@@ -15888,7 +15888,7 @@ async function autoUpgradeBeforeCriticalCommand() {
15888
15888
  if (process.env.NODE_ENV === "test") return;
15889
15889
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
15890
15890
  if (process.env.CI) return;
15891
- const current = true ? "2.58.1" : null;
15891
+ const current = true ? "2.59.0" : null;
15892
15892
  if (!current) return;
15893
15893
  const cache = readCache();
15894
15894
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -15905,7 +15905,7 @@ function checkForUpdates() {
15905
15905
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
15906
15906
  if (process.env.CI) return;
15907
15907
  if (!process.stdout.isTTY) return;
15908
- const current = true ? "2.58.1" : null;
15908
+ const current = true ? "2.59.0" : null;
15909
15909
  if (!current) return;
15910
15910
  const cache = readCache();
15911
15911
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -15925,7 +15925,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
15925
15925
  var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
15926
15926
  var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
15927
15927
  function currentCliVersion() {
15928
- return true ? "2.58.1" : null;
15928
+ return true ? "2.59.0" : null;
15929
15929
  }
15930
15930
  function runCmd(cmd, args2, timeoutMs) {
15931
15931
  return new Promise((resolve7) => {
@@ -31909,7 +31909,7 @@ function checkChokidar() {
31909
31909
  }
31910
31910
  async function doctor(args2 = []) {
31911
31911
  const json = args2.includes("--json");
31912
- const cliVersion = true ? "2.58.1" : "0.0.0-dev";
31912
+ const cliVersion = true ? "2.59.0" : "0.0.0-dev";
31913
31913
  const apiBase2 = resolveApiBaseUrl();
31914
31914
  const diagnosticId = (0, import_node_crypto8.randomUUID)();
31915
31915
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -32108,7 +32108,7 @@ async function completion(args2) {
32108
32108
  // src/commands/version.ts
32109
32109
  var import_picocolors15 = __toESM(require("picocolors"));
32110
32110
  function version2() {
32111
- const v = true ? "2.58.1" : "unknown";
32111
+ const v = true ? "2.59.0" : "unknown";
32112
32112
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
32113
32113
  }
32114
32114
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.58.1",
3
+ "version": "2.59.0",
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",