codeam-cli 2.61.51 → 2.61.52

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,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.51] — 2026-07-27
8
+
9
+ ### Added
10
+
11
+ - **shared,cli:** Opencode is api_key (env-var provider keys), like aider
12
+
7
13
  ## [2.61.50] — 2026-07-27
8
14
 
9
15
  ### Added
package/dist/index.js CHANGED
@@ -1198,6 +1198,37 @@ 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). enabled:false until Step-8 live-verify of the Bearer.
1218
+ enabled: false,
1219
+ auth: {
1220
+ kind: "oauth_redirect",
1221
+ scopes: ["openid", "offline_access"]
1222
+ },
1223
+ delivery: {
1224
+ mcp: {
1225
+ command: "",
1226
+ args: [],
1227
+ envMapping: {},
1228
+ httpUrl: "https://mcp.vercel.com",
1229
+ httpHeaders: { Authorization: "Bearer {accessToken}" }
1230
+ }
1231
+ }
1201
1232
  }
1202
1233
  };
1203
1234
  function getIntegration(id) {
@@ -6643,7 +6674,7 @@ function readAnonId() {
6643
6674
  }
6644
6675
  function superProperties() {
6645
6676
  return {
6646
- cliVersion: true ? "2.61.51" : "0.0.0-dev",
6677
+ cliVersion: true ? "2.61.52" : "0.0.0-dev",
6647
6678
  nodeVersion: process.version,
6648
6679
  platform: process.platform,
6649
6680
  arch: process.arch,
@@ -6824,7 +6855,7 @@ var os4 = __toESM(require("os"));
6824
6855
  // package.json
6825
6856
  var package_default = {
6826
6857
  name: "codeam-cli",
6827
- version: "2.61.51",
6858
+ version: "2.61.52",
6828
6859
  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
6860
  type: "commonjs",
6830
6861
  main: "dist/index.js",
@@ -7996,7 +8027,7 @@ var CommandRelayService = class _CommandRelayService {
7996
8027
  // fresh + clear the "CLI update available" banner after a self-update
7997
8028
  // (a codespace that reinstalls @latest reconnects via heartbeat, not
7998
8029
  // pair/reconnect). Older backends ignore the extra field.
7999
- ..."2.61.51" ? { ideVersion: "2.61.51" } : {}
8030
+ ..."2.61.52" ? { ideVersion: "2.61.52" } : {}
8000
8031
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
8001
8032
  }
8002
8033
  /**
@@ -19105,7 +19136,7 @@ async function autoUpgradeBeforeCriticalCommand() {
19105
19136
  if (process.env.NODE_ENV === "test") return;
19106
19137
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
19107
19138
  if (process.env.CI) return;
19108
- const current = true ? "2.61.51" : null;
19139
+ const current = true ? "2.61.52" : null;
19109
19140
  if (!current) return;
19110
19141
  const cache = readCache();
19111
19142
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -19122,7 +19153,7 @@ function checkForUpdates() {
19122
19153
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
19123
19154
  if (process.env.CI) return;
19124
19155
  if (!process.stdout.isTTY) return;
19125
- const current = true ? "2.61.51" : null;
19156
+ const current = true ? "2.61.52" : null;
19126
19157
  if (!current) return;
19127
19158
  const cache = readCache();
19128
19159
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -19142,7 +19173,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
19142
19173
  var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
19143
19174
  var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
19144
19175
  function currentCliVersion() {
19145
- return true ? "2.61.51" : null;
19176
+ return true ? "2.61.52" : null;
19146
19177
  }
19147
19178
  function runCmd(cmd, args2, timeoutMs) {
19148
19179
  return new Promise((resolve8) => {
@@ -39336,7 +39367,7 @@ function checkChokidar() {
39336
39367
  }
39337
39368
  async function doctor(args2 = []) {
39338
39369
  const json = args2.includes("--json");
39339
- const cliVersion = true ? "2.61.51" : "0.0.0-dev";
39370
+ const cliVersion = true ? "2.61.52" : "0.0.0-dev";
39340
39371
  const apiBase2 = resolveApiBaseUrl();
39341
39372
  const diagnosticId = (0, import_node_crypto13.randomUUID)();
39342
39373
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -39858,7 +39889,7 @@ async function mcpRun(args2) {
39858
39889
  // src/commands/version.ts
39859
39890
  var import_picocolors15 = __toESM(require("picocolors"));
39860
39891
  function version2() {
39861
- const v = true ? "2.61.51" : "unknown";
39892
+ const v = true ? "2.61.52" : "unknown";
39862
39893
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
39863
39894
  }
39864
39895
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.61.51",
3
+ "version": "2.61.52",
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",