codeam-cli 2.39.34 → 2.39.35
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 +7 -0
- package/dist/index.js +6 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@ 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.34] — 2026-06-18
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **cli:** Collapse all turn text onto one chunk so the reply can't double
|
|
12
|
+
- **cli:** Backfill $HOME so Beads provisioning works on detached self-hosted boxes
|
|
13
|
+
|
|
7
14
|
## [2.39.32] — 2026-06-18
|
|
8
15
|
|
|
9
16
|
### 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.35",
|
|
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.35" : "0.0.0-dev",
|
|
5912
5912
|
nodeVersion: process.version,
|
|
5913
5913
|
platform: process.platform,
|
|
5914
5914
|
arch: process.arch,
|
|
@@ -16965,16 +16965,10 @@ var import_path7 = __toESM(require("path"));
|
|
|
16965
16965
|
function detectMissingNodeDeps(cwd) {
|
|
16966
16966
|
if (!import_fs3.default.existsSync(import_path7.default.join(cwd, "package.json"))) return null;
|
|
16967
16967
|
if (import_fs3.default.existsSync(import_path7.default.join(cwd, "node_modules"))) return null;
|
|
16968
|
-
if (import_fs3.default.existsSync(import_path7.default.join(cwd, "pnpm-lock.yaml"))) {
|
|
16969
|
-
return { cmd: "pnpm", args: ["install"] };
|
|
16970
|
-
}
|
|
16971
16968
|
if (import_fs3.default.existsSync(import_path7.default.join(cwd, "yarn.lock"))) {
|
|
16972
16969
|
return { cmd: "yarn", args: ["install"] };
|
|
16973
16970
|
}
|
|
16974
|
-
|
|
16975
|
-
return { cmd: "bun", args: ["install"] };
|
|
16976
|
-
}
|
|
16977
|
-
return { cmd: "npm", args: ["install"] };
|
|
16971
|
+
return { cmd: "npm", args: ["install", "--legacy-peer-deps"] };
|
|
16978
16972
|
}
|
|
16979
16973
|
function isJsInstallCommand(cmd, args2) {
|
|
16980
16974
|
const known = ["npm", "pnpm", "yarn", "bun"];
|
|
@@ -27178,7 +27172,7 @@ function checkChokidar() {
|
|
|
27178
27172
|
}
|
|
27179
27173
|
async function doctor(args2 = []) {
|
|
27180
27174
|
const json = args2.includes("--json");
|
|
27181
|
-
const cliVersion = true ? "2.39.
|
|
27175
|
+
const cliVersion = true ? "2.39.35" : "0.0.0-dev";
|
|
27182
27176
|
const apiBase2 = resolveApiBaseUrl();
|
|
27183
27177
|
const diagnosticId = (0, import_node_crypto8.randomUUID)();
|
|
27184
27178
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -27377,7 +27371,7 @@ async function completion(args2) {
|
|
|
27377
27371
|
// src/commands/version.ts
|
|
27378
27372
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
27379
27373
|
function version2() {
|
|
27380
|
-
const v = true ? "2.39.
|
|
27374
|
+
const v = true ? "2.39.35" : "unknown";
|
|
27381
27375
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
27382
27376
|
}
|
|
27383
27377
|
|
|
@@ -27663,7 +27657,7 @@ function checkForUpdates() {
|
|
|
27663
27657
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
27664
27658
|
if (process.env.CI) return;
|
|
27665
27659
|
if (!process.stdout.isTTY) return;
|
|
27666
|
-
const current = true ? "2.39.
|
|
27660
|
+
const current = true ? "2.39.35" : null;
|
|
27667
27661
|
if (!current) return;
|
|
27668
27662
|
const cache = readCache();
|
|
27669
27663
|
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.35",
|
|
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",
|