codeam-cli 2.60.11 → 2.60.12
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 +10 -15
- 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.60.11] — 2026-07-08
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- P0/P1 batch — pricing default, headroom step export, VSC listener dedup, JB EDT delay
|
|
12
|
+
|
|
7
13
|
## [2.60.10] — 2026-07-08
|
|
8
14
|
|
|
9
15
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -5662,7 +5662,7 @@ function readAnonId() {
|
|
|
5662
5662
|
}
|
|
5663
5663
|
function superProperties() {
|
|
5664
5664
|
return {
|
|
5665
|
-
cliVersion: true ? "2.60.
|
|
5665
|
+
cliVersion: true ? "2.60.12" : "0.0.0-dev",
|
|
5666
5666
|
nodeVersion: process.version,
|
|
5667
5667
|
platform: process.platform,
|
|
5668
5668
|
arch: process.arch,
|
|
@@ -5843,7 +5843,7 @@ var os4 = __toESM(require("os"));
|
|
|
5843
5843
|
// package.json
|
|
5844
5844
|
var package_default = {
|
|
5845
5845
|
name: "codeam-cli",
|
|
5846
|
-
version: "2.60.
|
|
5846
|
+
version: "2.60.12",
|
|
5847
5847
|
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.",
|
|
5848
5848
|
type: "commonjs",
|
|
5849
5849
|
main: "dist/index.js",
|
|
@@ -6914,7 +6914,7 @@ var CommandRelayService = class {
|
|
|
6914
6914
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
6915
6915
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
6916
6916
|
// pair/reconnect). Older backends ignore the extra field.
|
|
6917
|
-
..."2.60.
|
|
6917
|
+
..."2.60.12" ? { ideVersion: "2.60.12" } : {}
|
|
6918
6918
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
6919
6919
|
}
|
|
6920
6920
|
/**
|
|
@@ -16184,7 +16184,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
16184
16184
|
if (process.env.NODE_ENV === "test") return;
|
|
16185
16185
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
16186
16186
|
if (process.env.CI) return;
|
|
16187
|
-
const current = true ? "2.60.
|
|
16187
|
+
const current = true ? "2.60.12" : null;
|
|
16188
16188
|
if (!current) return;
|
|
16189
16189
|
const cache = readCache();
|
|
16190
16190
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -16201,7 +16201,7 @@ function checkForUpdates() {
|
|
|
16201
16201
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
16202
16202
|
if (process.env.CI) return;
|
|
16203
16203
|
if (!process.stdout.isTTY) return;
|
|
16204
|
-
const current = true ? "2.60.
|
|
16204
|
+
const current = true ? "2.60.12" : null;
|
|
16205
16205
|
if (!current) return;
|
|
16206
16206
|
const cache = readCache();
|
|
16207
16207
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -16221,7 +16221,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
16221
16221
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
16222
16222
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
16223
16223
|
function currentCliVersion() {
|
|
16224
|
-
return true ? "2.60.
|
|
16224
|
+
return true ? "2.60.12" : null;
|
|
16225
16225
|
}
|
|
16226
16226
|
function runCmd(cmd, args2, timeoutMs) {
|
|
16227
16227
|
return new Promise((resolve7) => {
|
|
@@ -20236,13 +20236,8 @@ var defaultCliUpdateDeps = {
|
|
|
20236
20236
|
// Only a truly local `codeam start` (neither marker) re-execs in place below.
|
|
20237
20237
|
isSupervised: () => process.env["CODEAM_AUTO_APPROVE"] === "1" || process.env["CODESPACES"] === "true",
|
|
20238
20238
|
relaunch: (args2) => {
|
|
20239
|
-
const
|
|
20240
|
-
|
|
20241
|
-
detached: true,
|
|
20242
|
-
stdio: "inherit"
|
|
20243
|
-
});
|
|
20244
|
-
child.unref();
|
|
20245
|
-
process.exit(0);
|
|
20239
|
+
const child = (0, import_child_process23.spawnSync)("codeam", args2, { stdio: "inherit", env: process.env });
|
|
20240
|
+
process.exit(child.status ?? 0);
|
|
20246
20241
|
}
|
|
20247
20242
|
};
|
|
20248
20243
|
var CLI_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
@@ -33000,7 +32995,7 @@ function checkChokidar() {
|
|
|
33000
32995
|
}
|
|
33001
32996
|
async function doctor(args2 = []) {
|
|
33002
32997
|
const json = args2.includes("--json");
|
|
33003
|
-
const cliVersion = true ? "2.60.
|
|
32998
|
+
const cliVersion = true ? "2.60.12" : "0.0.0-dev";
|
|
33004
32999
|
const apiBase2 = resolveApiBaseUrl();
|
|
33005
33000
|
const diagnosticId = (0, import_node_crypto10.randomUUID)();
|
|
33006
33001
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -33199,7 +33194,7 @@ async function completion(args2) {
|
|
|
33199
33194
|
// src/commands/version.ts
|
|
33200
33195
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
33201
33196
|
function version2() {
|
|
33202
|
-
const v = true ? "2.60.
|
|
33197
|
+
const v = true ? "2.60.12" : "unknown";
|
|
33203
33198
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
33204
33199
|
}
|
|
33205
33200
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.60.
|
|
3
|
+
"version": "2.60.12",
|
|
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",
|