codeam-cli 2.61.47 → 2.61.48
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 +13 -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.61.47] — 2026-07-26
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** Stitch integration (api_key, hosted MCP over HTTP transport, design)
|
|
12
|
+
|
|
7
13
|
## [2.61.46] — 2026-07-26
|
|
8
14
|
|
|
9
15
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -512,6 +512,11 @@ var PUBLIC_TO_INTERNAL = {
|
|
|
512
512
|
coderabbit: "coderabbit",
|
|
513
513
|
gemini: "gemini",
|
|
514
514
|
kimi: "kimi",
|
|
515
|
+
// OmniRoute runs Claude Code under the hood, pointed at the user's OmniRoute
|
|
516
|
+
// gateway (their vaulted base URL + token) instead of the house MiniMax
|
|
517
|
+
// proxy. Same internal runtime as the house agent — `claude` — differing only
|
|
518
|
+
// in WHERE Anthropic env is pointed (a buildOmniRouteBootstrap variant).
|
|
519
|
+
omniroute: "claude",
|
|
515
520
|
// The house agent runs Claude Code under the hood (pointed at the
|
|
516
521
|
// MiniMax proxy). Its internal runtime is therefore `claude`.
|
|
517
522
|
[HOUSE_AGENT_ID]: "claude"
|
|
@@ -6619,7 +6624,7 @@ function readAnonId() {
|
|
|
6619
6624
|
}
|
|
6620
6625
|
function superProperties() {
|
|
6621
6626
|
return {
|
|
6622
|
-
cliVersion: true ? "2.61.
|
|
6627
|
+
cliVersion: true ? "2.61.48" : "0.0.0-dev",
|
|
6623
6628
|
nodeVersion: process.version,
|
|
6624
6629
|
platform: process.platform,
|
|
6625
6630
|
arch: process.arch,
|
|
@@ -6800,7 +6805,7 @@ var os4 = __toESM(require("os"));
|
|
|
6800
6805
|
// package.json
|
|
6801
6806
|
var package_default = {
|
|
6802
6807
|
name: "codeam-cli",
|
|
6803
|
-
version: "2.61.
|
|
6808
|
+
version: "2.61.48",
|
|
6804
6809
|
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.",
|
|
6805
6810
|
type: "commonjs",
|
|
6806
6811
|
main: "dist/index.js",
|
|
@@ -7972,7 +7977,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
7972
7977
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
7973
7978
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
7974
7979
|
// pair/reconnect). Older backends ignore the extra field.
|
|
7975
|
-
..."2.61.
|
|
7980
|
+
..."2.61.48" ? { ideVersion: "2.61.48" } : {}
|
|
7976
7981
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
7977
7982
|
}
|
|
7978
7983
|
/**
|
|
@@ -18957,7 +18962,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
18957
18962
|
if (process.env.NODE_ENV === "test") return;
|
|
18958
18963
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18959
18964
|
if (process.env.CI) return;
|
|
18960
|
-
const current = true ? "2.61.
|
|
18965
|
+
const current = true ? "2.61.48" : null;
|
|
18961
18966
|
if (!current) return;
|
|
18962
18967
|
const cache = readCache();
|
|
18963
18968
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -18974,7 +18979,7 @@ function checkForUpdates() {
|
|
|
18974
18979
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18975
18980
|
if (process.env.CI) return;
|
|
18976
18981
|
if (!process.stdout.isTTY) return;
|
|
18977
|
-
const current = true ? "2.61.
|
|
18982
|
+
const current = true ? "2.61.48" : null;
|
|
18978
18983
|
if (!current) return;
|
|
18979
18984
|
const cache = readCache();
|
|
18980
18985
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -18994,7 +18999,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
18994
18999
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
18995
19000
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
18996
19001
|
function currentCliVersion() {
|
|
18997
|
-
return true ? "2.61.
|
|
19002
|
+
return true ? "2.61.48" : null;
|
|
18998
19003
|
}
|
|
18999
19004
|
function runCmd(cmd, args2, timeoutMs) {
|
|
19000
19005
|
return new Promise((resolve8) => {
|
|
@@ -39120,7 +39125,7 @@ function checkChokidar() {
|
|
|
39120
39125
|
}
|
|
39121
39126
|
async function doctor(args2 = []) {
|
|
39122
39127
|
const json = args2.includes("--json");
|
|
39123
|
-
const cliVersion = true ? "2.61.
|
|
39128
|
+
const cliVersion = true ? "2.61.48" : "0.0.0-dev";
|
|
39124
39129
|
const apiBase2 = resolveApiBaseUrl();
|
|
39125
39130
|
const diagnosticId = (0, import_node_crypto13.randomUUID)();
|
|
39126
39131
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -39642,7 +39647,7 @@ async function mcpRun(args2) {
|
|
|
39642
39647
|
// src/commands/version.ts
|
|
39643
39648
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
39644
39649
|
function version2() {
|
|
39645
|
-
const v = true ? "2.61.
|
|
39650
|
+
const v = true ? "2.61.48" : "unknown";
|
|
39646
39651
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
39647
39652
|
}
|
|
39648
39653
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.48",
|
|
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",
|