codeam-cli 2.30.0 → 2.31.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,19 @@ 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.30.0] — 2026-06-06
8
+
9
+ ### Added
10
+
11
+ - **vsc-plugin:** Banner recommends update when marketplace ships a fix
12
+ - **jetbrains-plugin:** Banner recommends update when marketplace ships a fix
13
+
14
+ ### Fixed
15
+
16
+ - **cli:** Forward mobile image attachments to ACP as image blocks (QA #290)
17
+ - **cli, vsc-plugin:** Echo mobile prompts + clear Reconnecting UX (QA #287/#291)
18
+ - **cli:** Replace pair pollStatus with SSE pair_completed event (QA #285)
19
+
7
20
  ## [2.29.0] — 2026-06-06
8
21
 
9
22
  ### 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.30.0",
501
+ version: "2.31.0",
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",
@@ -685,7 +685,7 @@ var _execSeam = {
685
685
  // src/services/pairing.service.ts
686
686
  var API_BASE = resolveApiBaseUrl();
687
687
  var REQUEST_CODE_TIMEOUT_MS = 1e4;
688
- async function requestCode(pluginId, options = {}) {
688
+ async function requestCode(pluginId) {
689
689
  try {
690
690
  const runtime = process.env.CODESPACES === "true" ? "github-codespaces" : "local";
691
691
  const codespaceName = process.env.CODESPACE_NAME;
@@ -697,12 +697,7 @@ async function requestCode(pluginId, options = {}) {
697
697
  hostname: os2.hostname(),
698
698
  runtime,
699
699
  branch,
700
- ...codespaceName ? { codespaceName } : {},
701
- ...options.originatorSessionId && options.originatorPluginId && options.originatorAuthToken ? {
702
- originatorSessionId: options.originatorSessionId,
703
- originatorPluginId: options.originatorPluginId,
704
- originatorAuthToken: options.originatorAuthToken
705
- } : {}
700
+ ...codespaceName ? { codespaceName } : {}
706
701
  });
707
702
  let timer;
708
703
  const timeoutSentinel = /* @__PURE__ */ Symbol("request-code-timeout");
@@ -5849,7 +5844,7 @@ function readAnonId() {
5849
5844
  }
5850
5845
  function superProperties() {
5851
5846
  return {
5852
- cliVersion: true ? "2.30.0" : "0.0.0-dev",
5847
+ cliVersion: true ? "2.31.0" : "0.0.0-dev",
5853
5848
  nodeVersion: process.version,
5854
5849
  platform: process.platform,
5855
5850
  arch: process.arch,
@@ -16514,12 +16509,7 @@ async function link(args2 = []) {
16514
16509
  const pluginId = (0, import_node_crypto6.randomUUID)();
16515
16510
  const spin = dist_exports.spinner();
16516
16511
  spin.start("Requesting pairing code...");
16517
- const originator = getActiveSession();
16518
- const pairing = await requestCode(pluginId, {
16519
- originatorSessionId: originator?.id,
16520
- originatorPluginId: originator?.pluginId,
16521
- originatorAuthToken: originator?.pluginAuthToken
16522
- });
16512
+ const pairing = await requestCode(pluginId);
16523
16513
  if (!pairing) {
16524
16514
  spin.stop("Failed");
16525
16515
  showError("Could not reach the server. Check your connection and try again.");
@@ -24826,7 +24816,7 @@ function checkChokidar() {
24826
24816
  }
24827
24817
  async function doctor(args2 = []) {
24828
24818
  const json = args2.includes("--json");
24829
- const cliVersion = true ? "2.30.0" : "0.0.0-dev";
24819
+ const cliVersion = true ? "2.31.0" : "0.0.0-dev";
24830
24820
  const apiBase = resolveApiBaseUrl();
24831
24821
  const diagnosticId = (0, import_node_crypto8.randomUUID)();
24832
24822
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -25025,7 +25015,7 @@ async function completion(args2) {
25025
25015
  // src/commands/version.ts
25026
25016
  var import_picocolors13 = __toESM(require("picocolors"));
25027
25017
  function version2() {
25028
- const v = true ? "2.30.0" : "unknown";
25018
+ const v = true ? "2.31.0" : "unknown";
25029
25019
  console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
25030
25020
  }
25031
25021
 
@@ -25311,7 +25301,7 @@ function checkForUpdates() {
25311
25301
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
25312
25302
  if (process.env.CI) return;
25313
25303
  if (!process.stdout.isTTY) return;
25314
- const current = true ? "2.30.0" : null;
25304
+ const current = true ? "2.31.0" : null;
25315
25305
  if (!current) return;
25316
25306
  const cache = readCache();
25317
25307
  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.30.0",
3
+ "version": "2.31.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",