codeam-cli 2.4.35 → 2.4.37

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.4.36] — 2026-05-06
8
+
9
+ ### Fixed
10
+
11
+ - **shared:** Keep Claude reply when it lands right after the user echo
12
+
13
+ ## [2.4.35] — 2026-05-06
14
+
15
+ ### Added
16
+
17
+ - **cli:** Dump rendered lines when filterChrome returns empty
18
+
7
19
  ## [2.4.33] — 2026-05-05
8
20
 
9
21
  ### Fixed
package/dist/index.js CHANGED
@@ -1482,7 +1482,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
1482
1482
  // package.json
1483
1483
  var package_default = {
1484
1484
  name: "codeam-cli",
1485
- version: "2.4.35",
1485
+ version: "2.4.37",
1486
1486
  description: "Remote control Claude Code (and other AI coding agents) from your mobile phone. Pair your device, send prompts, stream responses in real-time, and approve commands \u2014 from anywhere.",
1487
1487
  type: "commonjs",
1488
1488
  main: "dist/index.js",
@@ -4958,6 +4958,8 @@ function filterChrome(lines) {
4958
4958
  skipEchoContinuation = false;
4959
4959
  continue;
4960
4960
  }
4961
+ if (/^[●⏺]\s/.test(t2)) skipEchoContinuation = false;
4962
+ if (/^│/.test(t2) && (t2.match(/│/g)?.length ?? 0) >= 2) continue;
4961
4963
  if (/^[✳✢✶✻✽✴✷✸✹⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏◐◑◒◓▁▂▃▄▅▆▇█]\s/.test(t2)) continue;
4962
4964
  if (/esc.{0,5}to.{0,5}interrupt/i.test(t2)) continue;
4963
4965
  if (/high\s*[·•]\s*\/effort/i.test(t2)) continue;
@@ -9046,7 +9048,7 @@ async function stopWorkspaceFromLocal(target) {
9046
9048
  // src/commands/version.ts
9047
9049
  var import_picocolors11 = __toESM(require("picocolors"));
9048
9050
  function version() {
9049
- const v = true ? "2.4.35" : "unknown";
9051
+ const v = true ? "2.4.37" : "unknown";
9050
9052
  console.log(`${import_picocolors11.default.bold("codeam-cli")} ${import_picocolors11.default.cyan(v)}`);
9051
9053
  }
9052
9054
 
@@ -9181,7 +9183,7 @@ function checkForUpdates() {
9181
9183
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
9182
9184
  if (process.env.CI) return;
9183
9185
  if (!process.stdout.isTTY) return;
9184
- const current = true ? "2.4.35" : null;
9186
+ const current = true ? "2.4.37" : null;
9185
9187
  if (!current) return;
9186
9188
  const cache = readCache();
9187
9189
  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.4.35",
3
+ "version": "2.4.37",
4
4
  "description": "Remote control Claude Code (and other AI coding agents) from your mobile phone. Pair your device, send prompts, stream responses in real-time, and approve commands — from anywhere.",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",