codeam-cli 2.61.51 → 2.61.53

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,18 @@ 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
+
13
+ ## [2.61.51] — 2026-07-27
14
+
15
+ ### Added
16
+
17
+ - **shared,cli:** Opencode is api_key (env-var provider keys), like aider
18
+
7
19
  ## [2.61.50] — 2026-07-27
8
20
 
9
21
  ### Added
package/dist/index.js CHANGED
@@ -1198,6 +1198,38 @@ var INTEGRATION_REGISTRY = {
1198
1198
  httpHeaders: { "X-Goog-Api-Key": "{accessToken}" }
1199
1199
  }
1200
1200
  }
1201
+ },
1202
+ vercel: {
1203
+ id: "vercel",
1204
+ name: "Vercel",
1205
+ icon: "vercel",
1206
+ category: "deployment",
1207
+ // DARK — OAuth (PKCE public client). The user authorizes our registered
1208
+ // Vercel OAuth app; the access token calls Vercel's OFFICIAL hosted remote
1209
+ // MCP (mcp.vercel.com, Streamable HTTP) as a Bearer header — the SAME shim
1210
+ // HTTP transport as PostHog/Datadog. Vercel MCP is approved-clients + per-
1211
+ // connection OAuth consent, but that consent is the ONE-TIME authorize (not
1212
+ // per MCP request), so a backend-brokered access token works headless.
1213
+ // Endpoints (from mcp.vercel.com/.well-known/oauth-protected-resource →
1214
+ // vercel.com/.well-known/oauth-authorization-server): authorize
1215
+ // https://vercel.com/oauth/authorize, token
1216
+ // https://vercel.com/api/login/oauth/token, PKCE S256, token-endpoint auth
1217
+ // 'none' (public). LIVE — the headless Bearer against mcp.vercel.com was
1218
+ // verified (2026-07-27).
1219
+ enabled: true,
1220
+ auth: {
1221
+ kind: "oauth_redirect",
1222
+ scopes: ["openid", "offline_access"]
1223
+ },
1224
+ delivery: {
1225
+ mcp: {
1226
+ command: "",
1227
+ args: [],
1228
+ envMapping: {},
1229
+ httpUrl: "https://mcp.vercel.com",
1230
+ httpHeaders: { Authorization: "Bearer {accessToken}" }
1231
+ }
1232
+ }
1201
1233
  }
1202
1234
  };
1203
1235
  function getIntegration(id) {
@@ -6643,7 +6675,7 @@ function readAnonId() {
6643
6675
  }
6644
6676
  function superProperties() {
6645
6677
  return {
6646
- cliVersion: true ? "2.61.51" : "0.0.0-dev",
6678
+ cliVersion: true ? "2.61.53" : "0.0.0-dev",
6647
6679
  nodeVersion: process.version,
6648
6680
  platform: process.platform,
6649
6681
  arch: process.arch,
@@ -6824,7 +6856,7 @@ var os4 = __toESM(require("os"));
6824
6856
  // package.json
6825
6857
  var package_default = {
6826
6858
  name: "codeam-cli",
6827
- version: "2.61.51",
6859
+ version: "2.61.53",
6828
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.",
6829
6861
  type: "commonjs",
6830
6862
  main: "dist/index.js",
@@ -7996,7 +8028,7 @@ var CommandRelayService = class _CommandRelayService {
7996
8028
  // fresh + clear the "CLI update available" banner after a self-update
7997
8029
  // (a codespace that reinstalls @latest reconnects via heartbeat, not
7998
8030
  // pair/reconnect). Older backends ignore the extra field.
7999
- ..."2.61.51" ? { ideVersion: "2.61.51" } : {}
8031
+ ..."2.61.53" ? { ideVersion: "2.61.53" } : {}
8000
8032
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
8001
8033
  }
8002
8034
  /**
@@ -19105,7 +19137,7 @@ async function autoUpgradeBeforeCriticalCommand() {
19105
19137
  if (process.env.NODE_ENV === "test") return;
19106
19138
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
19107
19139
  if (process.env.CI) return;
19108
- const current = true ? "2.61.51" : null;
19140
+ const current = true ? "2.61.53" : null;
19109
19141
  if (!current) return;
19110
19142
  const cache = readCache();
19111
19143
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -19122,7 +19154,7 @@ function checkForUpdates() {
19122
19154
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
19123
19155
  if (process.env.CI) return;
19124
19156
  if (!process.stdout.isTTY) return;
19125
- const current = true ? "2.61.51" : null;
19157
+ const current = true ? "2.61.53" : null;
19126
19158
  if (!current) return;
19127
19159
  const cache = readCache();
19128
19160
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -19142,7 +19174,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
19142
19174
  var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
19143
19175
  var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
19144
19176
  function currentCliVersion() {
19145
- return true ? "2.61.51" : null;
19177
+ return true ? "2.61.53" : null;
19146
19178
  }
19147
19179
  function runCmd(cmd, args2, timeoutMs) {
19148
19180
  return new Promise((resolve8) => {
@@ -39336,7 +39368,7 @@ function checkChokidar() {
39336
39368
  }
39337
39369
  async function doctor(args2 = []) {
39338
39370
  const json = args2.includes("--json");
39339
- const cliVersion = true ? "2.61.51" : "0.0.0-dev";
39371
+ const cliVersion = true ? "2.61.53" : "0.0.0-dev";
39340
39372
  const apiBase2 = resolveApiBaseUrl();
39341
39373
  const diagnosticId = (0, import_node_crypto13.randomUUID)();
39342
39374
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -39858,7 +39890,7 @@ async function mcpRun(args2) {
39858
39890
  // src/commands/version.ts
39859
39891
  var import_picocolors15 = __toESM(require("picocolors"));
39860
39892
  function version2() {
39861
- const v = true ? "2.61.51" : "unknown";
39893
+ const v = true ? "2.61.53" : "unknown";
39862
39894
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
39863
39895
  }
39864
39896
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.61.51",
3
+ "version": "2.61.53",
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",