codeam-cli 2.24.0 → 2.25.0

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,32 @@ 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.24.0] — 2026-06-02
8
+
9
+ ### Added
10
+
11
+ - **vsc-plugin,jetbrains-plugin:** Honor agent payload on install_cli_and_pair (#215)
12
+
13
+ ### CI
14
+
15
+ - **workflow:** Agent-implements-issue — Codex picks up labelled issues (#200)
16
+ - **workflow:** Allow external reporters to trigger codex-action (#211)
17
+ - **workflow:** Forward mobile-app + api bugs to the private repo (#212)
18
+ - **workflow:** Pass --repo to gh issue comment in the forward job (#213)
19
+ - **workflow:** Forward — idempotent re-dispatch (#214)
20
+
21
+ ### Chore
22
+
23
+ - **deps-dev:** Bump glob from 11.1.0 to 13.0.6 in /apps/vsc-plugin (#199)
24
+
25
+ ### Fixed
26
+
27
+ - **jetbrains-plugin:** Use ensurePluginId for telemetry distinct_id
28
+
29
+ ### Agent
30
+
31
+ - Implement issue #201 — docs(cli): document missing subcommands in README Commands table (#202)
32
+
7
33
  ## [2.23.37] — 2026-05-31
8
34
 
9
35
  ### 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.24.0",
444
+ version: "2.25.0",
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.24.0" : "0.0.0-dev",
5777
+ cliVersion: true ? "2.25.0" : "0.0.0-dev",
5778
5778
  nodeVersion: process.version,
5779
5779
  platform: process.platform,
5780
5780
  arch: process.arch,
@@ -15956,8 +15956,16 @@ var setKeepAlive = async (ctx, cmd) => {
15956
15956
  } catch {
15957
15957
  }
15958
15958
  };
15959
- var sessionTerminated = (ctx) => {
15959
+ var sessionTerminated = async (ctx, cmd) => {
15960
15960
  showInfo("Session was deleted from the app \u2014 exiting.");
15961
+ try {
15962
+ await ctx.relay.sendResult(cmd.id, "success", { ok: true });
15963
+ } catch {
15964
+ }
15965
+ try {
15966
+ removeSession(ctx.sessionId);
15967
+ } catch {
15968
+ }
15961
15969
  try {
15962
15970
  ctx.agent.kill();
15963
15971
  } catch {
@@ -19253,7 +19261,7 @@ function checkChokidar() {
19253
19261
  }
19254
19262
  async function doctor(args2 = []) {
19255
19263
  const json = args2.includes("--json");
19256
- const cliVersion = true ? "2.24.0" : "0.0.0-dev";
19264
+ const cliVersion = true ? "2.25.0" : "0.0.0-dev";
19257
19265
  const apiBase = resolveApiBaseUrl();
19258
19266
  const diagnosticId = (0, import_node_crypto6.randomUUID)();
19259
19267
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -19452,7 +19460,7 @@ async function completion(args2) {
19452
19460
  // src/commands/version.ts
19453
19461
  var import_picocolors13 = __toESM(require("picocolors"));
19454
19462
  function version2() {
19455
- const v = true ? "2.24.0" : "unknown";
19463
+ const v = true ? "2.25.0" : "unknown";
19456
19464
  console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
19457
19465
  }
19458
19466
 
@@ -19680,7 +19688,7 @@ function checkForUpdates() {
19680
19688
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
19681
19689
  if (process.env.CI) return;
19682
19690
  if (!process.stdout.isTTY) return;
19683
- const current = true ? "2.24.0" : null;
19691
+ const current = true ? "2.25.0" : null;
19684
19692
  if (!current) return;
19685
19693
  const cache = readCache();
19686
19694
  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.24.0",
3
+ "version": "2.25.0",
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",