codeam-cli 2.39.84 → 2.39.85

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.39.84] — 2026-06-22
8
+
9
+ ### Added
10
+
11
+ - **cli:** Agent-agnostic credential validation in codeam link
12
+
13
+ ### Fixed
14
+
15
+ - **cli:** Make self-hosted git credential helper + gh install OS-agnostic
16
+
7
17
  ## [2.39.83] — 2026-06-22
8
18
 
9
19
  ### Added
package/dist/index.js CHANGED
@@ -5390,7 +5390,7 @@ function readAnonId() {
5390
5390
  }
5391
5391
  function superProperties() {
5392
5392
  return {
5393
- cliVersion: true ? "2.39.84" : "0.0.0-dev",
5393
+ cliVersion: true ? "2.39.85" : "0.0.0-dev",
5394
5394
  nodeVersion: process.version,
5395
5395
  platform: process.platform,
5396
5396
  arch: process.arch,
@@ -5549,7 +5549,7 @@ var os4 = __toESM(require("os"));
5549
5549
  // package.json
5550
5550
  var package_default = {
5551
5551
  name: "codeam-cli",
5552
- version: "2.39.84",
5552
+ version: "2.39.85",
5553
5553
  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.",
5554
5554
  type: "commonjs",
5555
5555
  main: "dist/index.js",
@@ -17704,7 +17704,7 @@ async function autoUpgradeBeforeCriticalCommand() {
17704
17704
  if (process.env.NODE_ENV === "test") return;
17705
17705
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
17706
17706
  if (process.env.CI) return;
17707
- const current = true ? "2.39.84" : null;
17707
+ const current = true ? "2.39.85" : null;
17708
17708
  if (!current) return;
17709
17709
  const cache = readCache();
17710
17710
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -17721,7 +17721,7 @@ function checkForUpdates() {
17721
17721
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
17722
17722
  if (process.env.CI) return;
17723
17723
  if (!process.stdout.isTTY) return;
17724
- const current = true ? "2.39.84" : null;
17724
+ const current = true ? "2.39.85" : null;
17725
17725
  if (!current) return;
17726
17726
  const cache = readCache();
17727
17727
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -18159,7 +18159,7 @@ var defaultSpawner = (env, cwd, args2 = []) => (0, import_node_child_process14.s
18159
18159
  detached: false
18160
18160
  });
18161
18161
  function currentCliVersion() {
18162
- return true ? "2.39.84" : null;
18162
+ return true ? "2.39.85" : null;
18163
18163
  }
18164
18164
  function runCmd(cmd, args2, timeoutMs) {
18165
18165
  return new Promise((resolve7) => {
@@ -18554,6 +18554,12 @@ var HostAgentSupervisor = class {
18554
18554
  API_TIMEOUT_MS: "3000000",
18555
18555
  CODEAM_AUTO_TOKEN: payload.autoPairToken
18556
18556
  };
18557
+ const houseConfigDir = path46.join(os33.homedir(), ".codeam", "house-claude");
18558
+ try {
18559
+ fs40.mkdirSync(houseConfigDir, { recursive: true, mode: 448 });
18560
+ } catch {
18561
+ }
18562
+ childEnv.CLAUDE_CONFIG_DIR = houseConfigDir;
18557
18563
  extraArgs = [`--agent=${agentKind || "claude"}`];
18558
18564
  } else {
18559
18565
  const auth = await this.resolveAgentAuth(this.identity, payload.sealedAgentAuth);
@@ -28964,7 +28970,7 @@ function checkChokidar() {
28964
28970
  }
28965
28971
  async function doctor(args2 = []) {
28966
28972
  const json = args2.includes("--json");
28967
- const cliVersion = true ? "2.39.84" : "0.0.0-dev";
28973
+ const cliVersion = true ? "2.39.85" : "0.0.0-dev";
28968
28974
  const apiBase2 = resolveApiBaseUrl();
28969
28975
  const diagnosticId = (0, import_node_crypto8.randomUUID)();
28970
28976
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -29163,7 +29169,7 @@ async function completion(args2) {
29163
29169
  // src/commands/version.ts
29164
29170
  var import_picocolors14 = __toESM(require("picocolors"));
29165
29171
  function version2() {
29166
- const v = true ? "2.39.84" : "unknown";
29172
+ const v = true ? "2.39.85" : "unknown";
29167
29173
  console.log(`${import_picocolors14.default.bold("codeam-cli")} ${import_picocolors14.default.cyan(v)}`);
29168
29174
  }
29169
29175
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.39.84",
3
+ "version": "2.39.85",
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",