codeam-cli 2.60.48 → 2.60.49

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 CHANGED
@@ -4,6 +4,21 @@ 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.48] — 2026-07-11
8
+
9
+ ### Added
10
+
11
+ - **shared:** Centralized integration branding catalog (official logos + display metadata)
12
+
13
+ ### Changed
14
+
15
+ - **vsc-plugin:** Remove dead MCP config writer
16
+ - **jetbrains-plugin:** Remove dead MCP config writer
17
+
18
+ ### Tests
19
+
20
+ - **cli:** Retry+swallow Windows EBUSY on temp-dir teardown (flaky main CI)
21
+
7
22
  ## [2.60.47] — 2026-07-11
8
23
 
9
24
  ### 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.48" : "0.0.0-dev",
5736
+ cliVersion: true ? "2.60.49" : "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.48",
5917
+ version: "2.60.49",
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.48" ? { ideVersion: "2.60.48" } : {}
7026
+ ..."2.60.49" ? { ideVersion: "2.60.49" } : {}
7027
7027
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
7028
7028
  }
7029
7029
  /**
@@ -16554,6 +16554,22 @@ var cursorProvisioner = {
16554
16554
  return {};
16555
16555
  }
16556
16556
  };
16557
+ var KIMI_MANAGED_CONFIG_TOML = `default_model = "kimi-k2"
16558
+
16559
+ [providers."managed:kimi-code"]
16560
+ type = "kimi"
16561
+ base_url = "https://api.kimi.com/coding/v1"
16562
+
16563
+ [providers."managed:kimi-code".oauth]
16564
+ storage = "file"
16565
+ key = "oauth/kimi-code"
16566
+ oauthHost = "https://auth.kimi.com"
16567
+
16568
+ [models.kimi-k2]
16569
+ provider = "managed:kimi-code"
16570
+ model = "kimi-k2"
16571
+ max_context_size = 262144
16572
+ `;
16557
16573
  var kimiProvisioner = {
16558
16574
  write(auth, home) {
16559
16575
  const credentialsFiles = [
@@ -16565,6 +16581,7 @@ var kimiProvisioner = {
16565
16581
  return { KIMI_API_KEY: auth.value };
16566
16582
  }
16567
16583
  credentialsFiles.forEach((f) => writeFile0600(f, auth.value));
16584
+ writeFile0600(path40.join(home, ".kimi-code", "config.toml"), KIMI_MANAGED_CONFIG_TOML);
16568
16585
  return {};
16569
16586
  }
16570
16587
  };
@@ -17575,7 +17592,7 @@ async function autoUpgradeBeforeCriticalCommand() {
17575
17592
  if (process.env.NODE_ENV === "test") return;
17576
17593
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
17577
17594
  if (process.env.CI) return;
17578
- const current = true ? "2.60.48" : null;
17595
+ const current = true ? "2.60.49" : null;
17579
17596
  if (!current) return;
17580
17597
  const cache = readCache();
17581
17598
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -17592,7 +17609,7 @@ function checkForUpdates() {
17592
17609
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
17593
17610
  if (process.env.CI) return;
17594
17611
  if (!process.stdout.isTTY) return;
17595
- const current = true ? "2.60.48" : null;
17612
+ const current = true ? "2.60.49" : null;
17596
17613
  if (!current) return;
17597
17614
  const cache = readCache();
17598
17615
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -17612,7 +17629,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
17612
17629
  var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
17613
17630
  var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
17614
17631
  function currentCliVersion() {
17615
- return true ? "2.60.48" : null;
17632
+ return true ? "2.60.49" : null;
17616
17633
  }
17617
17634
  function runCmd(cmd, args2, timeoutMs) {
17618
17635
  return new Promise((resolve7) => {
@@ -34829,7 +34846,7 @@ function checkChokidar() {
34829
34846
  }
34830
34847
  async function doctor(args2 = []) {
34831
34848
  const json = args2.includes("--json");
34832
- const cliVersion = true ? "2.60.48" : "0.0.0-dev";
34849
+ const cliVersion = true ? "2.60.49" : "0.0.0-dev";
34833
34850
  const apiBase2 = resolveApiBaseUrl();
34834
34851
  const diagnosticId = (0, import_node_crypto12.randomUUID)();
34835
34852
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -35306,7 +35323,7 @@ async function mcpRun(args2) {
35306
35323
  // src/commands/version.ts
35307
35324
  var import_picocolors15 = __toESM(require("picocolors"));
35308
35325
  function version2() {
35309
- const v = true ? "2.60.48" : "unknown";
35326
+ const v = true ? "2.60.49" : "unknown";
35310
35327
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
35311
35328
  }
35312
35329
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.60.48",
3
+ "version": "2.60.49",
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",