codeam-cli 2.39.4 → 2.39.5

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,18 @@ 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.39.4] — 2026-06-12
8
+
9
+ ### Fixed
10
+
11
+ - **cli:** Retry transient bd spawn ETXTBSY (not just ENOENT) so beads provisions
12
+
13
+ ## [2.39.3] — 2026-06-12
14
+
15
+ ### Fixed
16
+
17
+ - **cli:** Singleton guard for pair-auto — prevent split-brain sessions (codeagent-qi4)
18
+
7
19
  ## [2.39.2] — 2026-06-12
8
20
 
9
21
  ### Added
package/dist/index.js CHANGED
@@ -498,7 +498,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
498
498
  // package.json
499
499
  var package_default = {
500
500
  name: "codeam-cli",
501
- version: "2.39.4",
501
+ version: "2.39.5",
502
502
  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.",
503
503
  type: "commonjs",
504
504
  main: "dist/index.js",
@@ -5900,7 +5900,7 @@ function readAnonId() {
5900
5900
  }
5901
5901
  function superProperties() {
5902
5902
  return {
5903
- cliVersion: true ? "2.39.4" : "0.0.0-dev",
5903
+ cliVersion: true ? "2.39.5" : "0.0.0-dev",
5904
5904
  nodeVersion: process.version,
5905
5905
  platform: process.platform,
5906
5906
  arch: process.arch,
@@ -18131,12 +18131,18 @@ var _linkSeam = {
18131
18131
  const pathDirs = (process.env.PATH ?? "").split(path39.delimiter).filter(Boolean);
18132
18132
  const home = _linkSeam.homedir();
18133
18133
  const localBin = home ? path39.join(home, ".local", "bin") : null;
18134
+ if (localBin) {
18135
+ try {
18136
+ _linkSeam.ensureDir(localBin);
18137
+ } catch {
18138
+ }
18139
+ }
18134
18140
  const candidates = [];
18141
+ if (localBin) candidates.push(localBin);
18135
18142
  try {
18136
18143
  candidates.push(path39.dirname(process.execPath));
18137
18144
  } catch {
18138
18145
  }
18139
- if (localBin) candidates.push(localBin);
18140
18146
  candidates.push("/usr/local/bin");
18141
18147
  const entry = process.argv[1];
18142
18148
  if (entry) {
@@ -26729,7 +26735,7 @@ function checkChokidar() {
26729
26735
  }
26730
26736
  async function doctor(args2 = []) {
26731
26737
  const json = args2.includes("--json");
26732
- const cliVersion = true ? "2.39.4" : "0.0.0-dev";
26738
+ const cliVersion = true ? "2.39.5" : "0.0.0-dev";
26733
26739
  const apiBase = resolveApiBaseUrl();
26734
26740
  const diagnosticId = (0, import_node_crypto8.randomUUID)();
26735
26741
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -26928,7 +26934,7 @@ async function completion(args2) {
26928
26934
  // src/commands/version.ts
26929
26935
  var import_picocolors13 = __toESM(require("picocolors"));
26930
26936
  function version2() {
26931
- const v = true ? "2.39.4" : "unknown";
26937
+ const v = true ? "2.39.5" : "unknown";
26932
26938
  console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
26933
26939
  }
26934
26940
 
@@ -27214,7 +27220,7 @@ function checkForUpdates() {
27214
27220
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
27215
27221
  if (process.env.CI) return;
27216
27222
  if (!process.stdout.isTTY) return;
27217
- const current = true ? "2.39.4" : null;
27223
+ const current = true ? "2.39.5" : null;
27218
27224
  if (!current) return;
27219
27225
  const cache = readCache();
27220
27226
  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.39.4",
3
+ "version": "2.39.5",
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",