codeam-cli 2.35.6 → 2.35.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 +6 -0
- package/dist/index.js +12 -6
- package/package.json +1 -1
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.35.6] — 2026-06-10
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **cli:** Cancel the ACP turn on failure so the session isn't poisoned (#312)
|
|
12
|
+
|
|
7
13
|
## [2.35.5] — 2026-06-10
|
|
8
14
|
|
|
9
15
|
### Fixed
|
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.35.
|
|
501
|
+
version: "2.35.7",
|
|
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",
|
|
@@ -5900,7 +5900,7 @@ function readAnonId() {
|
|
|
5900
5900
|
}
|
|
5901
5901
|
function superProperties() {
|
|
5902
5902
|
return {
|
|
5903
|
-
cliVersion: true ? "2.35.
|
|
5903
|
+
cliVersion: true ? "2.35.7" : "0.0.0-dev",
|
|
5904
5904
|
nodeVersion: process.version,
|
|
5905
5905
|
platform: process.platform,
|
|
5906
5906
|
arch: process.arch,
|
|
@@ -15624,7 +15624,13 @@ function mapSessionUpdate(notification) {
|
|
|
15624
15624
|
case "agent_thought_chunk": {
|
|
15625
15625
|
const text = extractText2(update.content);
|
|
15626
15626
|
if (!text) return [];
|
|
15627
|
-
return [
|
|
15627
|
+
return [
|
|
15628
|
+
{
|
|
15629
|
+
chunkId: `${messageChunkId(update.messageId)}::thought`,
|
|
15630
|
+
kind: "thinking",
|
|
15631
|
+
delta: text
|
|
15632
|
+
}
|
|
15633
|
+
];
|
|
15628
15634
|
}
|
|
15629
15635
|
case "tool_call": {
|
|
15630
15636
|
const summary = describeToolCall(update);
|
|
@@ -26106,7 +26112,7 @@ function checkChokidar() {
|
|
|
26106
26112
|
}
|
|
26107
26113
|
async function doctor(args2 = []) {
|
|
26108
26114
|
const json = args2.includes("--json");
|
|
26109
|
-
const cliVersion = true ? "2.35.
|
|
26115
|
+
const cliVersion = true ? "2.35.7" : "0.0.0-dev";
|
|
26110
26116
|
const apiBase = resolveApiBaseUrl();
|
|
26111
26117
|
const diagnosticId = (0, import_node_crypto8.randomUUID)();
|
|
26112
26118
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -26305,7 +26311,7 @@ async function completion(args2) {
|
|
|
26305
26311
|
// src/commands/version.ts
|
|
26306
26312
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
26307
26313
|
function version2() {
|
|
26308
|
-
const v = true ? "2.35.
|
|
26314
|
+
const v = true ? "2.35.7" : "unknown";
|
|
26309
26315
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
26310
26316
|
}
|
|
26311
26317
|
|
|
@@ -26591,7 +26597,7 @@ function checkForUpdates() {
|
|
|
26591
26597
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
26592
26598
|
if (process.env.CI) return;
|
|
26593
26599
|
if (!process.stdout.isTTY) return;
|
|
26594
|
-
const current = true ? "2.35.
|
|
26600
|
+
const current = true ? "2.35.7" : null;
|
|
26595
26601
|
if (!current) return;
|
|
26596
26602
|
const cache = readCache();
|
|
26597
26603
|
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.35.
|
|
3
|
+
"version": "2.35.7",
|
|
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",
|