codeam-cli 2.60.49 → 2.60.50
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 +8 -8
- 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.49] — 2026-07-11
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **cli:** Write kimi managed-provider config.toml on provisioning (0.23.5 empty-response regression)
|
|
12
|
+
|
|
7
13
|
## [2.60.48] — 2026-07-11
|
|
8
14
|
|
|
9
15
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -5733,7 +5733,7 @@ function readAnonId() {
|
|
|
5733
5733
|
}
|
|
5734
5734
|
function superProperties() {
|
|
5735
5735
|
return {
|
|
5736
|
-
cliVersion: true ? "2.60.
|
|
5736
|
+
cliVersion: true ? "2.60.50" : "0.0.0-dev",
|
|
5737
5737
|
nodeVersion: process.version,
|
|
5738
5738
|
platform: process.platform,
|
|
5739
5739
|
arch: process.arch,
|
|
@@ -5914,7 +5914,7 @@ var os4 = __toESM(require("os"));
|
|
|
5914
5914
|
// package.json
|
|
5915
5915
|
var package_default = {
|
|
5916
5916
|
name: "codeam-cli",
|
|
5917
|
-
version: "2.60.
|
|
5917
|
+
version: "2.60.50",
|
|
5918
5918
|
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.",
|
|
5919
5919
|
type: "commonjs",
|
|
5920
5920
|
main: "dist/index.js",
|
|
@@ -7023,7 +7023,7 @@ var CommandRelayService = class {
|
|
|
7023
7023
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
7024
7024
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
7025
7025
|
// pair/reconnect). Older backends ignore the extra field.
|
|
7026
|
-
..."2.60.
|
|
7026
|
+
..."2.60.50" ? { ideVersion: "2.60.50" } : {}
|
|
7027
7027
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
7028
7028
|
}
|
|
7029
7029
|
/**
|
|
@@ -17592,7 +17592,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
17592
17592
|
if (process.env.NODE_ENV === "test") return;
|
|
17593
17593
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17594
17594
|
if (process.env.CI) return;
|
|
17595
|
-
const current = true ? "2.60.
|
|
17595
|
+
const current = true ? "2.60.50" : null;
|
|
17596
17596
|
if (!current) return;
|
|
17597
17597
|
const cache = readCache();
|
|
17598
17598
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17609,7 +17609,7 @@ function checkForUpdates() {
|
|
|
17609
17609
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17610
17610
|
if (process.env.CI) return;
|
|
17611
17611
|
if (!process.stdout.isTTY) return;
|
|
17612
|
-
const current = true ? "2.60.
|
|
17612
|
+
const current = true ? "2.60.50" : null;
|
|
17613
17613
|
if (!current) return;
|
|
17614
17614
|
const cache = readCache();
|
|
17615
17615
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17629,7 +17629,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
17629
17629
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
17630
17630
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
17631
17631
|
function currentCliVersion() {
|
|
17632
|
-
return true ? "2.60.
|
|
17632
|
+
return true ? "2.60.50" : null;
|
|
17633
17633
|
}
|
|
17634
17634
|
function runCmd(cmd, args2, timeoutMs) {
|
|
17635
17635
|
return new Promise((resolve7) => {
|
|
@@ -34846,7 +34846,7 @@ function checkChokidar() {
|
|
|
34846
34846
|
}
|
|
34847
34847
|
async function doctor(args2 = []) {
|
|
34848
34848
|
const json = args2.includes("--json");
|
|
34849
|
-
const cliVersion = true ? "2.60.
|
|
34849
|
+
const cliVersion = true ? "2.60.50" : "0.0.0-dev";
|
|
34850
34850
|
const apiBase2 = resolveApiBaseUrl();
|
|
34851
34851
|
const diagnosticId = (0, import_node_crypto12.randomUUID)();
|
|
34852
34852
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -35323,7 +35323,7 @@ async function mcpRun(args2) {
|
|
|
35323
35323
|
// src/commands/version.ts
|
|
35324
35324
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
35325
35325
|
function version2() {
|
|
35326
|
-
const v = true ? "2.60.
|
|
35326
|
+
const v = true ? "2.60.50" : "unknown";
|
|
35327
35327
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
35328
35328
|
}
|
|
35329
35329
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.60.
|
|
3
|
+
"version": "2.60.50",
|
|
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",
|