codeam-cli 2.9.3 → 2.9.5
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 +5 -5
- 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.9.4] — 2026-05-10
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **cli:** Feed accumulated PTY buffer to API-error detector
|
|
12
|
+
|
|
13
|
+
## [2.9.3] — 2026-05-10
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- **cli:** Surface Anthropic API errors as status chunks
|
|
18
|
+
|
|
7
19
|
## [2.9.2] — 2026-05-09
|
|
8
20
|
|
|
9
21
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -1477,7 +1477,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
1477
1477
|
// package.json
|
|
1478
1478
|
var package_default = {
|
|
1479
1479
|
name: "codeam-cli",
|
|
1480
|
-
version: "2.9.
|
|
1480
|
+
version: "2.9.5",
|
|
1481
1481
|
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.",
|
|
1482
1482
|
type: "commonjs",
|
|
1483
1483
|
main: "dist/index.js",
|
|
@@ -5382,7 +5382,7 @@ var OutputService = class _OutputService {
|
|
|
5382
5382
|
);
|
|
5383
5383
|
this.tryExtractSessionId(raw);
|
|
5384
5384
|
this.tryDetectRateLimit(raw);
|
|
5385
|
-
this.tryDetectApiError(
|
|
5385
|
+
this.tryDetectApiError(this.pty.content);
|
|
5386
5386
|
}
|
|
5387
5387
|
dispose() {
|
|
5388
5388
|
this.stopPoll();
|
|
@@ -5553,7 +5553,7 @@ var OutputService = class _OutputService {
|
|
|
5553
5553
|
*/
|
|
5554
5554
|
tryDetectApiError(text) {
|
|
5555
5555
|
if (this.apiErrorEmittedThisTurn) return;
|
|
5556
|
-
const printable = text.replace(/\x1B\[[^@-~]*[@-~]/g, "").replace(/[\x00-\x1F\x7F]/g, "");
|
|
5556
|
+
const printable = text.replace(/\x1B\[[^@-~]*[@-~]/g, "").replace(/[\x00-\x09\x0B\x0C\x0E-\x1F\x7F]/g, "");
|
|
5557
5557
|
const message = extractApiErrorMessage(printable);
|
|
5558
5558
|
if (!message) return;
|
|
5559
5559
|
this.apiErrorEmittedThisTurn = true;
|
|
@@ -9371,7 +9371,7 @@ async function stopWorkspaceFromLocal(target) {
|
|
|
9371
9371
|
// src/commands/version.ts
|
|
9372
9372
|
var import_picocolors11 = __toESM(require("picocolors"));
|
|
9373
9373
|
function version() {
|
|
9374
|
-
const v = true ? "2.9.
|
|
9374
|
+
const v = true ? "2.9.5" : "unknown";
|
|
9375
9375
|
console.log(`${import_picocolors11.default.bold("codeam-cli")} ${import_picocolors11.default.cyan(v)}`);
|
|
9376
9376
|
}
|
|
9377
9377
|
|
|
@@ -9506,7 +9506,7 @@ function checkForUpdates() {
|
|
|
9506
9506
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
9507
9507
|
if (process.env.CI) return;
|
|
9508
9508
|
if (!process.stdout.isTTY) return;
|
|
9509
|
-
const current = true ? "2.9.
|
|
9509
|
+
const current = true ? "2.9.5" : null;
|
|
9510
9510
|
if (!current) return;
|
|
9511
9511
|
const cache = readCache();
|
|
9512
9512
|
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.9.
|
|
3
|
+
"version": "2.9.5",
|
|
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",
|