codeam-cli 2.39.35 → 2.39.36
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 +10 -0
- package/dist/index.js +20 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ 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.39.35] — 2026-06-18
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **cli:** Preview pre-flight installs with npm --legacy-peer-deps (not pnpm)
|
|
12
|
+
|
|
13
|
+
### Tests
|
|
14
|
+
|
|
15
|
+
- **cli:** Integration regression for ACP reply-doubling (notification → mapper → runner)
|
|
16
|
+
|
|
7
17
|
## [2.39.34] — 2026-06-18
|
|
8
18
|
|
|
9
19
|
### 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.39.
|
|
501
|
+
version: "2.39.36",
|
|
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",
|
|
@@ -5908,7 +5908,7 @@ function readAnonId() {
|
|
|
5908
5908
|
}
|
|
5909
5909
|
function superProperties() {
|
|
5910
5910
|
return {
|
|
5911
|
-
cliVersion: true ? "2.39.
|
|
5911
|
+
cliVersion: true ? "2.39.36" : "0.0.0-dev",
|
|
5912
5912
|
nodeVersion: process.version,
|
|
5913
5913
|
platform: process.platform,
|
|
5914
5914
|
arch: process.arch,
|
|
@@ -18912,6 +18912,21 @@ async function waitForDevServerReady(devServer, readyRe, opts = {
|
|
|
18912
18912
|
return { kind: "timeout" };
|
|
18913
18913
|
}
|
|
18914
18914
|
function normalizeDetectionForSpawn(detection, cwd) {
|
|
18915
|
+
if (detection.command === "pnpm" || detection.command === "bun") {
|
|
18916
|
+
const raw = detection.args ?? [];
|
|
18917
|
+
const verb = raw[0];
|
|
18918
|
+
if (verb && !["exec", "dlx", "x"].includes(verb)) {
|
|
18919
|
+
const rest = verb === "run" ? raw.slice(1) : raw;
|
|
18920
|
+
const [script, ...extra] = rest;
|
|
18921
|
+
if (script && !script.startsWith("-")) {
|
|
18922
|
+
return {
|
|
18923
|
+
...detection,
|
|
18924
|
+
command: "npm",
|
|
18925
|
+
args: extra.length ? ["run", script, "--", ...extra] : ["run", script]
|
|
18926
|
+
};
|
|
18927
|
+
}
|
|
18928
|
+
}
|
|
18929
|
+
}
|
|
18915
18930
|
if (detection.command !== "npx") return detection;
|
|
18916
18931
|
const args2 = detection.args ?? [];
|
|
18917
18932
|
if (args2.length === 0) return detection;
|
|
@@ -27172,7 +27187,7 @@ function checkChokidar() {
|
|
|
27172
27187
|
}
|
|
27173
27188
|
async function doctor(args2 = []) {
|
|
27174
27189
|
const json = args2.includes("--json");
|
|
27175
|
-
const cliVersion = true ? "2.39.
|
|
27190
|
+
const cliVersion = true ? "2.39.36" : "0.0.0-dev";
|
|
27176
27191
|
const apiBase2 = resolveApiBaseUrl();
|
|
27177
27192
|
const diagnosticId = (0, import_node_crypto8.randomUUID)();
|
|
27178
27193
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -27371,7 +27386,7 @@ async function completion(args2) {
|
|
|
27371
27386
|
// src/commands/version.ts
|
|
27372
27387
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
27373
27388
|
function version2() {
|
|
27374
|
-
const v = true ? "2.39.
|
|
27389
|
+
const v = true ? "2.39.36" : "unknown";
|
|
27375
27390
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
27376
27391
|
}
|
|
27377
27392
|
|
|
@@ -27657,7 +27672,7 @@ function checkForUpdates() {
|
|
|
27657
27672
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
27658
27673
|
if (process.env.CI) return;
|
|
27659
27674
|
if (!process.stdout.isTTY) return;
|
|
27660
|
-
const current = true ? "2.39.
|
|
27675
|
+
const current = true ? "2.39.36" : null;
|
|
27661
27676
|
if (!current) return;
|
|
27662
27677
|
const cache = readCache();
|
|
27663
27678
|
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.39.
|
|
3
|
+
"version": "2.39.36",
|
|
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",
|