codeam-cli 2.12.6 → 2.12.7

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.12.6] — 2026-05-14
8
+
9
+ ### Fixed
10
+
11
+ - **cli:** Always-on info+ file logging so chunk-send outcomes survive without CODEAM_DEBUG
12
+
7
13
  ## [2.12.5] — 2026-05-14
8
14
 
9
15
  ### Fixed
package/dist/index.js CHANGED
@@ -1682,7 +1682,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
1682
1682
  // package.json
1683
1683
  var package_default = {
1684
1684
  name: "codeam-cli",
1685
- version: "2.12.6",
1685
+ version: "2.12.7",
1686
1686
  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.",
1687
1687
  type: "commonjs",
1688
1688
  main: "dist/index.js",
@@ -2011,14 +2011,15 @@ platform=${process.platform} node=${process.version} cwd=${process.cwd()}
2011
2011
  }
2012
2012
  }
2013
2013
  function emit(level, tag, msg, err) {
2014
- if (LEVELS[level] > currentLevel()) return;
2015
2014
  const detail = err instanceof Error ? `: ${err.message}` : err !== void 0 ? `: ${String(err)}` : "";
2016
2015
  const line = `[codeam:${level}] ${tag} \u2014 ${msg}${detail}
2017
2016
  `;
2018
- process.stderr.write(line);
2019
2017
  if (LEVELS[level] <= LEVELS.info || verboseFileEnabled) {
2020
2018
  appendToFile(`${(/* @__PURE__ */ new Date()).toISOString()} ${line}`);
2021
2019
  }
2020
+ if (LEVELS[level] <= currentLevel()) {
2021
+ process.stderr.write(line);
2022
+ }
2022
2023
  }
2023
2024
  var log = {
2024
2025
  error: (tag, msg, err) => emit("error", tag, msg, err),
@@ -10139,7 +10140,7 @@ async function stopWorkspaceFromLocal(target) {
10139
10140
  // src/commands/version.ts
10140
10141
  var import_picocolors11 = __toESM(require("picocolors"));
10141
10142
  function version() {
10142
- const v = true ? "2.12.6" : "unknown";
10143
+ const v = true ? "2.12.7" : "unknown";
10143
10144
  console.log(`${import_picocolors11.default.bold("codeam-cli")} ${import_picocolors11.default.cyan(v)}`);
10144
10145
  }
10145
10146
 
@@ -10274,7 +10275,7 @@ function checkForUpdates() {
10274
10275
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
10275
10276
  if (process.env.CI) return;
10276
10277
  if (!process.stdout.isTTY) return;
10277
- const current = true ? "2.12.6" : null;
10278
+ const current = true ? "2.12.7" : null;
10278
10279
  if (!current) return;
10279
10280
  const cache = readCache();
10280
10281
  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.12.6",
3
+ "version": "2.12.7",
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",