codeam-cli 2.23.15 → 2.23.16

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,13 @@ 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.23.14] — 2026-05-28
8
+
9
+ ### Fixed
10
+
11
+ - **cli:** Pair-auto stays alive in heartbeat-only mode on CODEAM_SKIP_AGENT_LAUNCH
12
+ - **cli:** Pair-auto runs full infra-only loop (file watcher + IDE commands + heartbeat)
13
+
7
14
  ## [2.23.13] — 2026-05-28
8
15
 
9
16
  ### Fixed
package/dist/index.js CHANGED
@@ -441,7 +441,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
441
441
  // package.json
442
442
  var package_default = {
443
443
  name: "codeam-cli",
444
- version: "2.23.15",
444
+ version: "2.23.16",
445
445
  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.",
446
446
  type: "commonjs",
447
447
  main: "dist/index.js",
@@ -5774,7 +5774,7 @@ function readAnonId() {
5774
5774
  }
5775
5775
  function superProperties() {
5776
5776
  return {
5777
- cliVersion: true ? "2.23.15" : "0.0.0-dev",
5777
+ cliVersion: true ? "2.23.16" : "0.0.0-dev",
5778
5778
  nodeVersion: process.version,
5779
5779
  platform: process.platform,
5780
5780
  arch: process.arch,
@@ -10304,13 +10304,6 @@ var CODEX_OPTION_RE = /^\s*([>›]\s+)?(\d+)\.\s+(.+)/;
10304
10304
  var CODEX_OPTION_START_RE = /^\s*(?:[>›]\s+)?\d+\.\s/;
10305
10305
  var CODEX_FOOTER_RE = /\bpress\s+enter\s+to\s+(?:confirm|continue|select)\b/i;
10306
10306
  function detectCodexSelector(lines) {
10307
- for (let i = lines.length - 1; i >= 0; i--) {
10308
- const t2 = lines[i].trim();
10309
- if (!t2) continue;
10310
- if (/^[›>]\s*$/.test(t2) || /^▌\s*$/.test(t2)) return null;
10311
- if (/^send:\s*⏎|^esc to interrupt/i.test(t2)) return null;
10312
- break;
10313
- }
10314
10307
  let optionStartIdx = -1;
10315
10308
  for (let i = 0; i < lines.length; i++) {
10316
10309
  if (CODEX_OPTION_START_RE.test(lines[i])) {
@@ -18740,7 +18733,7 @@ function checkChokidar() {
18740
18733
  }
18741
18734
  async function doctor(args2 = []) {
18742
18735
  const json = args2.includes("--json");
18743
- const cliVersion = true ? "2.23.15" : "0.0.0-dev";
18736
+ const cliVersion = true ? "2.23.16" : "0.0.0-dev";
18744
18737
  const apiBase = resolveApiBaseUrl();
18745
18738
  const diagnosticId = (0, import_node_crypto5.randomUUID)();
18746
18739
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -18939,7 +18932,7 @@ async function completion(args2) {
18939
18932
  // src/commands/version.ts
18940
18933
  var import_picocolors13 = __toESM(require("picocolors"));
18941
18934
  function version2() {
18942
- const v = true ? "2.23.15" : "unknown";
18935
+ const v = true ? "2.23.16" : "unknown";
18943
18936
  console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
18944
18937
  }
18945
18938
 
@@ -19167,7 +19160,7 @@ function checkForUpdates() {
19167
19160
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
19168
19161
  if (process.env.CI) return;
19169
19162
  if (!process.stdout.isTTY) return;
19170
- const current = true ? "2.23.15" : null;
19163
+ const current = true ? "2.23.16" : null;
19171
19164
  if (!current) return;
19172
19165
  const cache = readCache();
19173
19166
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.23.15",
3
+ "version": "2.23.16",
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",