codeam-cli 2.61.52 → 2.61.55
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 +11 -10
- 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.52] — 2026-07-27
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** Vercel integration (deployment category, OAuth + hosted MCP) — DARK
|
|
12
|
+
|
|
7
13
|
## [2.61.51] — 2026-07-27
|
|
8
14
|
|
|
9
15
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -1214,8 +1214,9 @@ var INTEGRATION_REGISTRY = {
|
|
|
1214
1214
|
// vercel.com/.well-known/oauth-authorization-server): authorize
|
|
1215
1215
|
// https://vercel.com/oauth/authorize, token
|
|
1216
1216
|
// https://vercel.com/api/login/oauth/token, PKCE S256, token-endpoint auth
|
|
1217
|
-
// 'none' (public).
|
|
1218
|
-
|
|
1217
|
+
// 'none' (public). LIVE — the headless Bearer against mcp.vercel.com was
|
|
1218
|
+
// verified (2026-07-27).
|
|
1219
|
+
enabled: true,
|
|
1219
1220
|
auth: {
|
|
1220
1221
|
kind: "oauth_redirect",
|
|
1221
1222
|
scopes: ["openid", "offline_access"]
|
|
@@ -6674,7 +6675,7 @@ function readAnonId() {
|
|
|
6674
6675
|
}
|
|
6675
6676
|
function superProperties() {
|
|
6676
6677
|
return {
|
|
6677
|
-
cliVersion: true ? "2.61.
|
|
6678
|
+
cliVersion: true ? "2.61.55" : "0.0.0-dev",
|
|
6678
6679
|
nodeVersion: process.version,
|
|
6679
6680
|
platform: process.platform,
|
|
6680
6681
|
arch: process.arch,
|
|
@@ -6855,7 +6856,7 @@ var os4 = __toESM(require("os"));
|
|
|
6855
6856
|
// package.json
|
|
6856
6857
|
var package_default = {
|
|
6857
6858
|
name: "codeam-cli",
|
|
6858
|
-
version: "2.61.
|
|
6859
|
+
version: "2.61.55",
|
|
6859
6860
|
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.",
|
|
6860
6861
|
type: "commonjs",
|
|
6861
6862
|
main: "dist/index.js",
|
|
@@ -8027,7 +8028,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
8027
8028
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
8028
8029
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
8029
8030
|
// pair/reconnect). Older backends ignore the extra field.
|
|
8030
|
-
..."2.61.
|
|
8031
|
+
..."2.61.55" ? { ideVersion: "2.61.55" } : {}
|
|
8031
8032
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
8032
8033
|
}
|
|
8033
8034
|
/**
|
|
@@ -19136,7 +19137,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
19136
19137
|
if (process.env.NODE_ENV === "test") return;
|
|
19137
19138
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
19138
19139
|
if (process.env.CI) return;
|
|
19139
|
-
const current = true ? "2.61.
|
|
19140
|
+
const current = true ? "2.61.55" : null;
|
|
19140
19141
|
if (!current) return;
|
|
19141
19142
|
const cache = readCache();
|
|
19142
19143
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -19153,7 +19154,7 @@ function checkForUpdates() {
|
|
|
19153
19154
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
19154
19155
|
if (process.env.CI) return;
|
|
19155
19156
|
if (!process.stdout.isTTY) return;
|
|
19156
|
-
const current = true ? "2.61.
|
|
19157
|
+
const current = true ? "2.61.55" : null;
|
|
19157
19158
|
if (!current) return;
|
|
19158
19159
|
const cache = readCache();
|
|
19159
19160
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -19173,7 +19174,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
19173
19174
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
19174
19175
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
19175
19176
|
function currentCliVersion() {
|
|
19176
|
-
return true ? "2.61.
|
|
19177
|
+
return true ? "2.61.55" : null;
|
|
19177
19178
|
}
|
|
19178
19179
|
function runCmd(cmd, args2, timeoutMs) {
|
|
19179
19180
|
return new Promise((resolve8) => {
|
|
@@ -39367,7 +39368,7 @@ function checkChokidar() {
|
|
|
39367
39368
|
}
|
|
39368
39369
|
async function doctor(args2 = []) {
|
|
39369
39370
|
const json = args2.includes("--json");
|
|
39370
|
-
const cliVersion = true ? "2.61.
|
|
39371
|
+
const cliVersion = true ? "2.61.55" : "0.0.0-dev";
|
|
39371
39372
|
const apiBase2 = resolveApiBaseUrl();
|
|
39372
39373
|
const diagnosticId = (0, import_node_crypto13.randomUUID)();
|
|
39373
39374
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -39889,7 +39890,7 @@ async function mcpRun(args2) {
|
|
|
39889
39890
|
// src/commands/version.ts
|
|
39890
39891
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
39891
39892
|
function version2() {
|
|
39892
|
-
const v = true ? "2.61.
|
|
39893
|
+
const v = true ? "2.61.55" : "unknown";
|
|
39893
39894
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
39894
39895
|
}
|
|
39895
39896
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.55",
|
|
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",
|