codeam-cli 2.61.56 → 2.61.57

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.56] — 2026-07-27
8
+
9
+ ### Added
10
+
11
+ - **shared,cli:** Replace OmniRoute agent with OpenRouter ⚠️ BREAKING CHANGE
12
+
7
13
  ## [2.61.55] — 2026-07-27
8
14
 
9
15
  ### Tests
package/dist/index.js CHANGED
@@ -1233,6 +1233,49 @@ var INTEGRATION_REGISTRY = {
1233
1233
  httpHeaders: { Authorization: "Bearer {accessToken}" }
1234
1234
  }
1235
1235
  }
1236
+ },
1237
+ trello: {
1238
+ id: "trello",
1239
+ name: "Trello",
1240
+ icon: "trello",
1241
+ category: "tracker",
1242
+ // LIVE — api_key rail (like Azure DevOps). Trello's auth is a developer API
1243
+ // key + a user token, NOT an OAuth2 code exchange: its token returns via a
1244
+ // URL fragment / OAuth 1.0a, incompatible with our server-side broker. The
1245
+ // user pastes both; the backend validates against the Trello REST API and
1246
+ // vaults them. No OAuth app, no GSM secrets, no config-gated 503.
1247
+ enabled: true,
1248
+ auth: {
1249
+ kind: "api_key",
1250
+ fields: [
1251
+ {
1252
+ key: "apiKey",
1253
+ label: "API Key",
1254
+ placeholder: "Your Trello API key",
1255
+ secret: false,
1256
+ help: "Create a Power-Up at https://trello.com/power-ups/admin and copy its API key."
1257
+ },
1258
+ {
1259
+ key: "accessToken",
1260
+ label: "Token",
1261
+ placeholder: "Your Trello token",
1262
+ secret: true,
1263
+ help: 'On the API-key page, click the "Token" link to authorize + generate a token (scope read,write, never-expiring).'
1264
+ }
1265
+ ]
1266
+ },
1267
+ delivery: {
1268
+ mcp: {
1269
+ // mcp-server-trello (Node): TRELLO_API_KEY + TRELLO_TOKEN via env only,
1270
+ // never argv. Version PINNED; bump only after re-verifying headless.
1271
+ command: "npx",
1272
+ args: ["-y", "mcp-server-trello@1.0.4"],
1273
+ envMapping: {
1274
+ TRELLO_API_KEY: "apiKey",
1275
+ TRELLO_TOKEN: "accessToken"
1276
+ }
1277
+ }
1278
+ }
1236
1279
  }
1237
1280
  };
1238
1281
  function getIntegration(id) {
@@ -6678,7 +6721,7 @@ function readAnonId() {
6678
6721
  }
6679
6722
  function superProperties() {
6680
6723
  return {
6681
- cliVersion: true ? "2.61.56" : "0.0.0-dev",
6724
+ cliVersion: true ? "2.61.57" : "0.0.0-dev",
6682
6725
  nodeVersion: process.version,
6683
6726
  platform: process.platform,
6684
6727
  arch: process.arch,
@@ -6859,7 +6902,7 @@ var os4 = __toESM(require("os"));
6859
6902
  // package.json
6860
6903
  var package_default = {
6861
6904
  name: "codeam-cli",
6862
- version: "2.61.56",
6905
+ version: "2.61.57",
6863
6906
  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.",
6864
6907
  type: "commonjs",
6865
6908
  main: "dist/index.js",
@@ -8031,7 +8074,7 @@ var CommandRelayService = class _CommandRelayService {
8031
8074
  // fresh + clear the "CLI update available" banner after a self-update
8032
8075
  // (a codespace that reinstalls @latest reconnects via heartbeat, not
8033
8076
  // pair/reconnect). Older backends ignore the extra field.
8034
- ..."2.61.56" ? { ideVersion: "2.61.56" } : {}
8077
+ ..."2.61.57" ? { ideVersion: "2.61.57" } : {}
8035
8078
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
8036
8079
  }
8037
8080
  /**
@@ -19140,7 +19183,7 @@ async function autoUpgradeBeforeCriticalCommand() {
19140
19183
  if (process.env.NODE_ENV === "test") return;
19141
19184
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
19142
19185
  if (process.env.CI) return;
19143
- const current = true ? "2.61.56" : null;
19186
+ const current = true ? "2.61.57" : null;
19144
19187
  if (!current) return;
19145
19188
  const cache = readCache();
19146
19189
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -19157,7 +19200,7 @@ function checkForUpdates() {
19157
19200
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
19158
19201
  if (process.env.CI) return;
19159
19202
  if (!process.stdout.isTTY) return;
19160
- const current = true ? "2.61.56" : null;
19203
+ const current = true ? "2.61.57" : null;
19161
19204
  if (!current) return;
19162
19205
  const cache = readCache();
19163
19206
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -19177,7 +19220,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
19177
19220
  var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
19178
19221
  var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
19179
19222
  function currentCliVersion() {
19180
- return true ? "2.61.56" : null;
19223
+ return true ? "2.61.57" : null;
19181
19224
  }
19182
19225
  function runCmd(cmd, args2, timeoutMs) {
19183
19226
  return new Promise((resolve8) => {
@@ -39373,7 +39416,7 @@ function checkChokidar() {
39373
39416
  }
39374
39417
  async function doctor(args2 = []) {
39375
39418
  const json = args2.includes("--json");
39376
- const cliVersion = true ? "2.61.56" : "0.0.0-dev";
39419
+ const cliVersion = true ? "2.61.57" : "0.0.0-dev";
39377
39420
  const apiBase2 = resolveApiBaseUrl();
39378
39421
  const diagnosticId = (0, import_node_crypto13.randomUUID)();
39379
39422
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -39895,7 +39938,7 @@ async function mcpRun(args2) {
39895
39938
  // src/commands/version.ts
39896
39939
  var import_picocolors15 = __toESM(require("picocolors"));
39897
39940
  function version2() {
39898
- const v = true ? "2.61.56" : "unknown";
39941
+ const v = true ? "2.61.57" : "unknown";
39899
39942
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
39900
39943
  }
39901
39944
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.61.56",
3
+ "version": "2.61.57",
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",