codeam-cli 2.61.46 → 2.61.47

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.46] — 2026-07-26
8
+
9
+ ### Added
10
+
11
+ - **shared,cli:** Datadog integration + httpUrl templating (2 keys + regional site)
12
+
7
13
  ## [2.61.45] — 2026-07-26
8
14
 
9
15
  ### Added
package/dist/index.js CHANGED
@@ -1138,6 +1138,42 @@ var INTEGRATION_REGISTRY = {
1138
1138
  }
1139
1139
  }
1140
1140
  }
1141
+ },
1142
+ stitch: {
1143
+ id: "stitch",
1144
+ name: "Stitch",
1145
+ icon: "stitch",
1146
+ category: "design",
1147
+ // LIVE — api_key: the user pastes a Stitch API key (Google Stitch →
1148
+ // Settings → API Key). Stitch's MCP is hosted-only (stitch.googleapis.com)
1149
+ // and accepts the key as the `X-Goog-Api-Key` header headless (verified) —
1150
+ // no OAuth, no GSM secret. Delivery uses the shim's HTTP transport.
1151
+ // (Stitch ALSO supports Google OAuth 2.0, but that's a follow-up — our model
1152
+ // is one auth kind per integration and api_key is the simple, headless path.)
1153
+ enabled: true,
1154
+ auth: {
1155
+ kind: "api_key",
1156
+ fields: [
1157
+ {
1158
+ key: "accessToken",
1159
+ label: "API Key",
1160
+ placeholder: "Stitch API key",
1161
+ secret: true,
1162
+ help: "Google Stitch \u2192 profile menu \u2192 Stitch Settings \u2192 API Key \u2192 Create Key."
1163
+ }
1164
+ ]
1165
+ },
1166
+ delivery: {
1167
+ mcp: {
1168
+ // HTTP transport — the shim relays to Stitch's hosted MCP with the key
1169
+ // as the X-Goog-Api-Key header. Key stays server-side of the shim.
1170
+ command: "",
1171
+ args: [],
1172
+ envMapping: {},
1173
+ httpUrl: "https://stitch.googleapis.com/mcp",
1174
+ httpHeaders: { "X-Goog-Api-Key": "{accessToken}" }
1175
+ }
1176
+ }
1141
1177
  }
1142
1178
  };
1143
1179
  function getIntegration(id) {
@@ -6583,7 +6619,7 @@ function readAnonId() {
6583
6619
  }
6584
6620
  function superProperties() {
6585
6621
  return {
6586
- cliVersion: true ? "2.61.46" : "0.0.0-dev",
6622
+ cliVersion: true ? "2.61.47" : "0.0.0-dev",
6587
6623
  nodeVersion: process.version,
6588
6624
  platform: process.platform,
6589
6625
  arch: process.arch,
@@ -6764,7 +6800,7 @@ var os4 = __toESM(require("os"));
6764
6800
  // package.json
6765
6801
  var package_default = {
6766
6802
  name: "codeam-cli",
6767
- version: "2.61.46",
6803
+ version: "2.61.47",
6768
6804
  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.",
6769
6805
  type: "commonjs",
6770
6806
  main: "dist/index.js",
@@ -7936,7 +7972,7 @@ var CommandRelayService = class _CommandRelayService {
7936
7972
  // fresh + clear the "CLI update available" banner after a self-update
7937
7973
  // (a codespace that reinstalls @latest reconnects via heartbeat, not
7938
7974
  // pair/reconnect). Older backends ignore the extra field.
7939
- ..."2.61.46" ? { ideVersion: "2.61.46" } : {}
7975
+ ..."2.61.47" ? { ideVersion: "2.61.47" } : {}
7940
7976
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
7941
7977
  }
7942
7978
  /**
@@ -18921,7 +18957,7 @@ async function autoUpgradeBeforeCriticalCommand() {
18921
18957
  if (process.env.NODE_ENV === "test") return;
18922
18958
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
18923
18959
  if (process.env.CI) return;
18924
- const current = true ? "2.61.46" : null;
18960
+ const current = true ? "2.61.47" : null;
18925
18961
  if (!current) return;
18926
18962
  const cache = readCache();
18927
18963
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -18938,7 +18974,7 @@ function checkForUpdates() {
18938
18974
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
18939
18975
  if (process.env.CI) return;
18940
18976
  if (!process.stdout.isTTY) return;
18941
- const current = true ? "2.61.46" : null;
18977
+ const current = true ? "2.61.47" : null;
18942
18978
  if (!current) return;
18943
18979
  const cache = readCache();
18944
18980
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -18958,7 +18994,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
18958
18994
  var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
18959
18995
  var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
18960
18996
  function currentCliVersion() {
18961
- return true ? "2.61.46" : null;
18997
+ return true ? "2.61.47" : null;
18962
18998
  }
18963
18999
  function runCmd(cmd, args2, timeoutMs) {
18964
19000
  return new Promise((resolve8) => {
@@ -39084,7 +39120,7 @@ function checkChokidar() {
39084
39120
  }
39085
39121
  async function doctor(args2 = []) {
39086
39122
  const json = args2.includes("--json");
39087
- const cliVersion = true ? "2.61.46" : "0.0.0-dev";
39123
+ const cliVersion = true ? "2.61.47" : "0.0.0-dev";
39088
39124
  const apiBase2 = resolveApiBaseUrl();
39089
39125
  const diagnosticId = (0, import_node_crypto13.randomUUID)();
39090
39126
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -39606,7 +39642,7 @@ async function mcpRun(args2) {
39606
39642
  // src/commands/version.ts
39607
39643
  var import_picocolors15 = __toESM(require("picocolors"));
39608
39644
  function version2() {
39609
- const v = true ? "2.61.46" : "unknown";
39645
+ const v = true ? "2.61.47" : "unknown";
39610
39646
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
39611
39647
  }
39612
39648
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.61.46",
3
+ "version": "2.61.47",
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",