codeam-cli 2.23.9 → 2.23.10

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.23.9] — 2026-05-27
8
+
9
+ ### Added
10
+
11
+ - **cli:** Auto-link the chosen agent's creds inside codeam pair (#197)
12
+
7
13
  ## [2.23.8] — 2026-05-26
8
14
 
9
15
  ### Added
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.9",
444
+ version: "2.23.10",
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.9" : "0.0.0-dev",
5777
+ cliVersion: true ? "2.23.10" : "0.0.0-dev",
5778
5778
  nodeVersion: process.version,
5779
5779
  platform: process.platform,
5780
5780
  arch: process.arch,
@@ -16301,6 +16301,18 @@ async function pairAuto(args2) {
16301
16301
  codespaceName: process.env.CODESPACE_NAME ?? void 0
16302
16302
  });
16303
16303
  console.log(` Paired with ${claimed.user.name} (${claimed.user.plan})`);
16304
+ if (process.env.CODEAM_SKIP_AGENT_LAUNCH === "true") {
16305
+ capture("pair_auto_skipped_launch", {
16306
+ sessionId: claimed.sessionId,
16307
+ pluginId,
16308
+ agentId: claimed.agent,
16309
+ codespaceName: process.env.CODESPACE_NAME ?? void 0
16310
+ });
16311
+ console.log(
16312
+ " Skipping agent launch \u2014 install an agent from the dashboard to start chatting."
16313
+ );
16314
+ return;
16315
+ }
16304
16316
  console.log(" Starting agent loop\u2026");
16305
16317
  await start();
16306
16318
  }
@@ -18547,7 +18559,7 @@ function checkChokidar() {
18547
18559
  }
18548
18560
  async function doctor(args2 = []) {
18549
18561
  const json = args2.includes("--json");
18550
- const cliVersion = true ? "2.23.9" : "0.0.0-dev";
18562
+ const cliVersion = true ? "2.23.10" : "0.0.0-dev";
18551
18563
  const apiBase = resolveApiBaseUrl();
18552
18564
  const diagnosticId = (0, import_node_crypto5.randomUUID)();
18553
18565
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -18746,7 +18758,7 @@ async function completion(args2) {
18746
18758
  // src/commands/version.ts
18747
18759
  var import_picocolors13 = __toESM(require("picocolors"));
18748
18760
  function version2() {
18749
- const v = true ? "2.23.9" : "unknown";
18761
+ const v = true ? "2.23.10" : "unknown";
18750
18762
  console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
18751
18763
  }
18752
18764
 
@@ -18974,7 +18986,7 @@ function checkForUpdates() {
18974
18986
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
18975
18987
  if (process.env.CI) return;
18976
18988
  if (!process.stdout.isTTY) return;
18977
- const current = true ? "2.23.9" : null;
18989
+ const current = true ? "2.23.10" : null;
18978
18990
  if (!current) return;
18979
18991
  const cache = readCache();
18980
18992
  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.9",
3
+ "version": "2.23.10",
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",