codeam-cli 2.61.57 → 2.61.58

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.57] — 2026-07-27
8
+
9
+ ### Added
10
+
11
+ - **shared:** Trello integration (tracker, api_key rail + Trello MCP)
12
+
7
13
  ## [2.61.56] — 2026-07-27
8
14
 
9
15
  ### Added
package/dist/index.js CHANGED
@@ -1276,6 +1276,35 @@ var INTEGRATION_REGISTRY = {
1276
1276
  }
1277
1277
  }
1278
1278
  }
1279
+ },
1280
+ clickup: {
1281
+ id: "clickup",
1282
+ name: "ClickUp",
1283
+ icon: "clickup",
1284
+ category: "tracker",
1285
+ // DARK — OAuth 2.0 (authorization code). ClickUp's token DOES NOT expire and
1286
+ // has NO refresh token, and its OAuth has NO granular scopes (the app gets
1287
+ // the workspaces the user authorizes). enabled:false until the OAuth app is
1288
+ // registered (client_id/secret) + secrets land + Step-8 live-verify.
1289
+ enabled: false,
1290
+ auth: {
1291
+ kind: "oauth_redirect",
1292
+ scopes: []
1293
+ },
1294
+ delivery: {
1295
+ mcp: {
1296
+ // @taazkareem/clickup-mcp-server (Node): CLICKUP_API_KEY (the OAuth
1297
+ // access token — ClickUp accepts it in the Authorization header) +
1298
+ // CLICKUP_TEAM_ID (the workspace id, captured at exchange) via env only.
1299
+ // Version PINNED; bump only after re-verifying headless.
1300
+ command: "npx",
1301
+ args: ["-y", "@taazkareem/clickup-mcp-server@0.14.4"],
1302
+ envMapping: {
1303
+ CLICKUP_API_KEY: "accessToken",
1304
+ CLICKUP_TEAM_ID: "teamId"
1305
+ }
1306
+ }
1307
+ }
1279
1308
  }
1280
1309
  };
1281
1310
  function getIntegration(id) {
@@ -6721,7 +6750,7 @@ function readAnonId() {
6721
6750
  }
6722
6751
  function superProperties() {
6723
6752
  return {
6724
- cliVersion: true ? "2.61.57" : "0.0.0-dev",
6753
+ cliVersion: true ? "2.61.58" : "0.0.0-dev",
6725
6754
  nodeVersion: process.version,
6726
6755
  platform: process.platform,
6727
6756
  arch: process.arch,
@@ -6902,7 +6931,7 @@ var os4 = __toESM(require("os"));
6902
6931
  // package.json
6903
6932
  var package_default = {
6904
6933
  name: "codeam-cli",
6905
- version: "2.61.57",
6934
+ version: "2.61.58",
6906
6935
  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.",
6907
6936
  type: "commonjs",
6908
6937
  main: "dist/index.js",
@@ -8074,7 +8103,7 @@ var CommandRelayService = class _CommandRelayService {
8074
8103
  // fresh + clear the "CLI update available" banner after a self-update
8075
8104
  // (a codespace that reinstalls @latest reconnects via heartbeat, not
8076
8105
  // pair/reconnect). Older backends ignore the extra field.
8077
- ..."2.61.57" ? { ideVersion: "2.61.57" } : {}
8106
+ ..."2.61.58" ? { ideVersion: "2.61.58" } : {}
8078
8107
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
8079
8108
  }
8080
8109
  /**
@@ -19183,7 +19212,7 @@ async function autoUpgradeBeforeCriticalCommand() {
19183
19212
  if (process.env.NODE_ENV === "test") return;
19184
19213
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
19185
19214
  if (process.env.CI) return;
19186
- const current = true ? "2.61.57" : null;
19215
+ const current = true ? "2.61.58" : null;
19187
19216
  if (!current) return;
19188
19217
  const cache = readCache();
19189
19218
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -19200,7 +19229,7 @@ function checkForUpdates() {
19200
19229
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
19201
19230
  if (process.env.CI) return;
19202
19231
  if (!process.stdout.isTTY) return;
19203
- const current = true ? "2.61.57" : null;
19232
+ const current = true ? "2.61.58" : null;
19204
19233
  if (!current) return;
19205
19234
  const cache = readCache();
19206
19235
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -19220,7 +19249,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
19220
19249
  var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
19221
19250
  var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
19222
19251
  function currentCliVersion() {
19223
- return true ? "2.61.57" : null;
19252
+ return true ? "2.61.58" : null;
19224
19253
  }
19225
19254
  function runCmd(cmd, args2, timeoutMs) {
19226
19255
  return new Promise((resolve8) => {
@@ -39416,7 +39445,7 @@ function checkChokidar() {
39416
39445
  }
39417
39446
  async function doctor(args2 = []) {
39418
39447
  const json = args2.includes("--json");
39419
- const cliVersion = true ? "2.61.57" : "0.0.0-dev";
39448
+ const cliVersion = true ? "2.61.58" : "0.0.0-dev";
39420
39449
  const apiBase2 = resolveApiBaseUrl();
39421
39450
  const diagnosticId = (0, import_node_crypto13.randomUUID)();
39422
39451
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -39938,7 +39967,7 @@ async function mcpRun(args2) {
39938
39967
  // src/commands/version.ts
39939
39968
  var import_picocolors15 = __toESM(require("picocolors"));
39940
39969
  function version2() {
39941
- const v = true ? "2.61.57" : "unknown";
39970
+ const v = true ? "2.61.58" : "unknown";
39942
39971
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
39943
39972
  }
39944
39973
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.61.57",
3
+ "version": "2.61.58",
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",