codeam-cli 2.60.14 → 2.60.15
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 +14 -11
- 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.14] — 2026-07-08
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **cli:** Add Kimi Code (Moonshot) as a native ACP agent
|
|
12
|
+
|
|
7
13
|
## [2.60.13] — 2026-07-08
|
|
8
14
|
|
|
9
15
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -5680,7 +5680,7 @@ function readAnonId() {
|
|
|
5680
5680
|
}
|
|
5681
5681
|
function superProperties() {
|
|
5682
5682
|
return {
|
|
5683
|
-
cliVersion: true ? "2.60.
|
|
5683
|
+
cliVersion: true ? "2.60.15" : "0.0.0-dev",
|
|
5684
5684
|
nodeVersion: process.version,
|
|
5685
5685
|
platform: process.platform,
|
|
5686
5686
|
arch: process.arch,
|
|
@@ -5861,7 +5861,7 @@ var os4 = __toESM(require("os"));
|
|
|
5861
5861
|
// package.json
|
|
5862
5862
|
var package_default = {
|
|
5863
5863
|
name: "codeam-cli",
|
|
5864
|
-
version: "2.60.
|
|
5864
|
+
version: "2.60.15",
|
|
5865
5865
|
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.",
|
|
5866
5866
|
type: "commonjs",
|
|
5867
5867
|
main: "dist/index.js",
|
|
@@ -6932,7 +6932,7 @@ var CommandRelayService = class {
|
|
|
6932
6932
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
6933
6933
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
6934
6934
|
// pair/reconnect). Older backends ignore the extra field.
|
|
6935
|
-
..."2.60.
|
|
6935
|
+
..."2.60.15" ? { ideVersion: "2.60.15" } : {}
|
|
6936
6936
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
6937
6937
|
}
|
|
6938
6938
|
/**
|
|
@@ -15331,12 +15331,15 @@ var cursorProvisioner = {
|
|
|
15331
15331
|
};
|
|
15332
15332
|
var kimiProvisioner = {
|
|
15333
15333
|
write(auth, home) {
|
|
15334
|
-
const
|
|
15334
|
+
const credentialsFiles = [
|
|
15335
|
+
path36.join(home, ".kimi", "credentials", "kimi-code.json"),
|
|
15336
|
+
path36.join(home, ".kimi-code", "credentials", "kimi-code.json")
|
|
15337
|
+
];
|
|
15335
15338
|
if (auth.kind === "api_key") {
|
|
15336
|
-
rmIfExists
|
|
15339
|
+
credentialsFiles.forEach(rmIfExists);
|
|
15337
15340
|
return { KIMI_API_KEY: auth.value };
|
|
15338
15341
|
}
|
|
15339
|
-
writeFile0600(
|
|
15342
|
+
credentialsFiles.forEach((f) => writeFile0600(f, auth.value));
|
|
15340
15343
|
return {};
|
|
15341
15344
|
}
|
|
15342
15345
|
};
|
|
@@ -16321,7 +16324,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
16321
16324
|
if (process.env.NODE_ENV === "test") return;
|
|
16322
16325
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
16323
16326
|
if (process.env.CI) return;
|
|
16324
|
-
const current = true ? "2.60.
|
|
16327
|
+
const current = true ? "2.60.15" : null;
|
|
16325
16328
|
if (!current) return;
|
|
16326
16329
|
const cache = readCache();
|
|
16327
16330
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -16338,7 +16341,7 @@ function checkForUpdates() {
|
|
|
16338
16341
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
16339
16342
|
if (process.env.CI) return;
|
|
16340
16343
|
if (!process.stdout.isTTY) return;
|
|
16341
|
-
const current = true ? "2.60.
|
|
16344
|
+
const current = true ? "2.60.15" : null;
|
|
16342
16345
|
if (!current) return;
|
|
16343
16346
|
const cache = readCache();
|
|
16344
16347
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -16358,7 +16361,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
16358
16361
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
16359
16362
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
16360
16363
|
function currentCliVersion() {
|
|
16361
|
-
return true ? "2.60.
|
|
16364
|
+
return true ? "2.60.15" : null;
|
|
16362
16365
|
}
|
|
16363
16366
|
function runCmd(cmd, args2, timeoutMs) {
|
|
16364
16367
|
return new Promise((resolve7) => {
|
|
@@ -33153,7 +33156,7 @@ function checkChokidar() {
|
|
|
33153
33156
|
}
|
|
33154
33157
|
async function doctor(args2 = []) {
|
|
33155
33158
|
const json = args2.includes("--json");
|
|
33156
|
-
const cliVersion = true ? "2.60.
|
|
33159
|
+
const cliVersion = true ? "2.60.15" : "0.0.0-dev";
|
|
33157
33160
|
const apiBase2 = resolveApiBaseUrl();
|
|
33158
33161
|
const diagnosticId = (0, import_node_crypto10.randomUUID)();
|
|
33159
33162
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -33352,7 +33355,7 @@ async function completion(args2) {
|
|
|
33352
33355
|
// src/commands/version.ts
|
|
33353
33356
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
33354
33357
|
function version2() {
|
|
33355
|
-
const v = true ? "2.60.
|
|
33358
|
+
const v = true ? "2.60.15" : "unknown";
|
|
33356
33359
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
33357
33360
|
}
|
|
33358
33361
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.60.
|
|
3
|
+
"version": "2.60.15",
|
|
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",
|