codeam-cli 2.60.55 → 2.60.56

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.60.55] — 2026-07-14
8
+
9
+ ### Fixed
10
+
11
+ - **cli:** Two-tier ACP idle watchdog — context compaction no longer bricks the session
12
+
7
13
  ## [2.60.54] — 2026-07-13
8
14
 
9
15
  ### Fixed
package/dist/index.js CHANGED
@@ -5747,7 +5747,7 @@ function readAnonId() {
5747
5747
  }
5748
5748
  function superProperties() {
5749
5749
  return {
5750
- cliVersion: true ? "2.60.55" : "0.0.0-dev",
5750
+ cliVersion: true ? "2.60.56" : "0.0.0-dev",
5751
5751
  nodeVersion: process.version,
5752
5752
  platform: process.platform,
5753
5753
  arch: process.arch,
@@ -5928,7 +5928,7 @@ var os4 = __toESM(require("os"));
5928
5928
  // package.json
5929
5929
  var package_default = {
5930
5930
  name: "codeam-cli",
5931
- version: "2.60.55",
5931
+ version: "2.60.56",
5932
5932
  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.",
5933
5933
  type: "commonjs",
5934
5934
  main: "dist/index.js",
@@ -7037,7 +7037,7 @@ var CommandRelayService = class {
7037
7037
  // fresh + clear the "CLI update available" banner after a self-update
7038
7038
  // (a codespace that reinstalls @latest reconnects via heartbeat, not
7039
7039
  // pair/reconnect). Older backends ignore the extra field.
7040
- ..."2.60.55" ? { ideVersion: "2.60.55" } : {}
7040
+ ..."2.60.56" ? { ideVersion: "2.60.56" } : {}
7041
7041
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
7042
7042
  }
7043
7043
  /**
@@ -15701,8 +15701,13 @@ function runCoderabbitOAuthLogin(deps) {
15701
15701
  if (e.kind === "awaiting_browser") {
15702
15702
  setPendingCoderabbitLogin({
15703
15703
  deliver: (callbackUrl) => {
15704
- child.stdin?.write(`${callbackUrl}
15704
+ if (/^http:\/\/(127\.0\.0\.1|localhost|\[::1\])/i.test(callbackUrl)) {
15705
+ void fetch(callbackUrl, { signal: AbortSignal.timeout(15e3) }).catch(() => {
15706
+ });
15707
+ } else {
15708
+ child.stdin?.write(`${callbackUrl}
15705
15709
  `);
15710
+ }
15706
15711
  }
15707
15712
  });
15708
15713
  } else if (e.kind === "authenticated") {
@@ -17609,7 +17614,7 @@ async function autoUpgradeBeforeCriticalCommand() {
17609
17614
  if (process.env.NODE_ENV === "test") return;
17610
17615
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
17611
17616
  if (process.env.CI) return;
17612
- const current = true ? "2.60.55" : null;
17617
+ const current = true ? "2.60.56" : null;
17613
17618
  if (!current) return;
17614
17619
  const cache = readCache();
17615
17620
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -17626,7 +17631,7 @@ function checkForUpdates() {
17626
17631
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
17627
17632
  if (process.env.CI) return;
17628
17633
  if (!process.stdout.isTTY) return;
17629
- const current = true ? "2.60.55" : null;
17634
+ const current = true ? "2.60.56" : null;
17630
17635
  if (!current) return;
17631
17636
  const cache = readCache();
17632
17637
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -17646,7 +17651,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
17646
17651
  var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
17647
17652
  var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
17648
17653
  function currentCliVersion() {
17649
- return true ? "2.60.55" : null;
17654
+ return true ? "2.60.56" : null;
17650
17655
  }
17651
17656
  function runCmd(cmd, args2, timeoutMs) {
17652
17657
  return new Promise((resolve7) => {
@@ -34981,7 +34986,7 @@ function checkChokidar() {
34981
34986
  }
34982
34987
  async function doctor(args2 = []) {
34983
34988
  const json = args2.includes("--json");
34984
- const cliVersion = true ? "2.60.55" : "0.0.0-dev";
34989
+ const cliVersion = true ? "2.60.56" : "0.0.0-dev";
34985
34990
  const apiBase2 = resolveApiBaseUrl();
34986
34991
  const diagnosticId = (0, import_node_crypto12.randomUUID)();
34987
34992
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -35458,7 +35463,7 @@ async function mcpRun(args2) {
35458
35463
  // src/commands/version.ts
35459
35464
  var import_picocolors15 = __toESM(require("picocolors"));
35460
35465
  function version2() {
35461
- const v = true ? "2.60.55" : "unknown";
35466
+ const v = true ? "2.60.56" : "unknown";
35462
35467
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
35463
35468
  }
35464
35469
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.60.55",
3
+ "version": "2.60.56",
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",