codeam-cli 2.4.36 → 2.4.38
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 +12 -0
- package/dist/index.js +3 -9
- package/package.json +1 -1
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.37] — 2026-05-06
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **shared:** Filter multi-column TUI box chrome (welcome banner)
|
|
12
|
+
|
|
13
|
+
## [2.4.36] — 2026-05-06
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- **shared:** Keep Claude reply when it lands right after the user echo
|
|
18
|
+
|
|
7
19
|
## [2.4.35] — 2026-05-06
|
|
8
20
|
|
|
9
21
|
### Added
|
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.
|
|
1485
|
+
version: "2.4.38",
|
|
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",
|
|
@@ -5201,12 +5201,6 @@ var OutputService = class _OutputService {
|
|
|
5201
5201
|
"outputSvc",
|
|
5202
5202
|
`tick empty content (raw=${this.rawBuffer.length}B lines=${lines.length} elapsed=${elapsed}ms)`
|
|
5203
5203
|
);
|
|
5204
|
-
if (lines.length > 0 && this.rawBuffer.length > 200) {
|
|
5205
|
-
const dump = lines.map((l, i) => `${i}: ${JSON.stringify(l)}`).join("\n");
|
|
5206
|
-
const preview = dump.length > 1500 ? dump.slice(0, 1500) + "\u2026(truncated)" : dump;
|
|
5207
|
-
log.trace("outputSvc", `lines dump:
|
|
5208
|
-
${preview}`);
|
|
5209
|
-
}
|
|
5210
5204
|
if (elapsed >= _OutputService.EMPTY_TIMEOUT_MS) this.finalize();
|
|
5211
5205
|
return;
|
|
5212
5206
|
}
|
|
@@ -9047,7 +9041,7 @@ async function stopWorkspaceFromLocal(target) {
|
|
|
9047
9041
|
// src/commands/version.ts
|
|
9048
9042
|
var import_picocolors11 = __toESM(require("picocolors"));
|
|
9049
9043
|
function version() {
|
|
9050
|
-
const v = true ? "2.4.
|
|
9044
|
+
const v = true ? "2.4.38" : "unknown";
|
|
9051
9045
|
console.log(`${import_picocolors11.default.bold("codeam-cli")} ${import_picocolors11.default.cyan(v)}`);
|
|
9052
9046
|
}
|
|
9053
9047
|
|
|
@@ -9182,7 +9176,7 @@ function checkForUpdates() {
|
|
|
9182
9176
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
9183
9177
|
if (process.env.CI) return;
|
|
9184
9178
|
if (!process.stdout.isTTY) return;
|
|
9185
|
-
const current = true ? "2.4.
|
|
9179
|
+
const current = true ? "2.4.38" : null;
|
|
9186
9180
|
if (!current) return;
|
|
9187
9181
|
const cache = readCache();
|
|
9188
9182
|
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.
|
|
3
|
+
"version": "2.4.38",
|
|
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",
|