codeam-cli 2.61.46 → 2.61.48

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.47] — 2026-07-26
8
+
9
+ ### Added
10
+
11
+ - **shared:** Stitch integration (api_key, hosted MCP over HTTP transport, design)
12
+
13
+ ## [2.61.46] — 2026-07-26
14
+
15
+ ### Added
16
+
17
+ - **shared,cli:** Datadog integration + httpUrl templating (2 keys + regional site)
18
+
7
19
  ## [2.61.45] — 2026-07-26
8
20
 
9
21
  ### Added
package/dist/index.js CHANGED
@@ -512,6 +512,11 @@ var PUBLIC_TO_INTERNAL = {
512
512
  coderabbit: "coderabbit",
513
513
  gemini: "gemini",
514
514
  kimi: "kimi",
515
+ // OmniRoute runs Claude Code under the hood, pointed at the user's OmniRoute
516
+ // gateway (their vaulted base URL + token) instead of the house MiniMax
517
+ // proxy. Same internal runtime as the house agent — `claude` — differing only
518
+ // in WHERE Anthropic env is pointed (a buildOmniRouteBootstrap variant).
519
+ omniroute: "claude",
515
520
  // The house agent runs Claude Code under the hood (pointed at the
516
521
  // MiniMax proxy). Its internal runtime is therefore `claude`.
517
522
  [HOUSE_AGENT_ID]: "claude"
@@ -1138,6 +1143,42 @@ var INTEGRATION_REGISTRY = {
1138
1143
  }
1139
1144
  }
1140
1145
  }
1146
+ },
1147
+ stitch: {
1148
+ id: "stitch",
1149
+ name: "Stitch",
1150
+ icon: "stitch",
1151
+ category: "design",
1152
+ // LIVE — api_key: the user pastes a Stitch API key (Google Stitch →
1153
+ // Settings → API Key). Stitch's MCP is hosted-only (stitch.googleapis.com)
1154
+ // and accepts the key as the `X-Goog-Api-Key` header headless (verified) —
1155
+ // no OAuth, no GSM secret. Delivery uses the shim's HTTP transport.
1156
+ // (Stitch ALSO supports Google OAuth 2.0, but that's a follow-up — our model
1157
+ // is one auth kind per integration and api_key is the simple, headless path.)
1158
+ enabled: true,
1159
+ auth: {
1160
+ kind: "api_key",
1161
+ fields: [
1162
+ {
1163
+ key: "accessToken",
1164
+ label: "API Key",
1165
+ placeholder: "Stitch API key",
1166
+ secret: true,
1167
+ help: "Google Stitch \u2192 profile menu \u2192 Stitch Settings \u2192 API Key \u2192 Create Key."
1168
+ }
1169
+ ]
1170
+ },
1171
+ delivery: {
1172
+ mcp: {
1173
+ // HTTP transport — the shim relays to Stitch's hosted MCP with the key
1174
+ // as the X-Goog-Api-Key header. Key stays server-side of the shim.
1175
+ command: "",
1176
+ args: [],
1177
+ envMapping: {},
1178
+ httpUrl: "https://stitch.googleapis.com/mcp",
1179
+ httpHeaders: { "X-Goog-Api-Key": "{accessToken}" }
1180
+ }
1181
+ }
1141
1182
  }
1142
1183
  };
1143
1184
  function getIntegration(id) {
@@ -6583,7 +6624,7 @@ function readAnonId() {
6583
6624
  }
6584
6625
  function superProperties() {
6585
6626
  return {
6586
- cliVersion: true ? "2.61.46" : "0.0.0-dev",
6627
+ cliVersion: true ? "2.61.48" : "0.0.0-dev",
6587
6628
  nodeVersion: process.version,
6588
6629
  platform: process.platform,
6589
6630
  arch: process.arch,
@@ -6764,7 +6805,7 @@ var os4 = __toESM(require("os"));
6764
6805
  // package.json
6765
6806
  var package_default = {
6766
6807
  name: "codeam-cli",
6767
- version: "2.61.46",
6808
+ version: "2.61.48",
6768
6809
  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
6810
  type: "commonjs",
6770
6811
  main: "dist/index.js",
@@ -7936,7 +7977,7 @@ var CommandRelayService = class _CommandRelayService {
7936
7977
  // fresh + clear the "CLI update available" banner after a self-update
7937
7978
  // (a codespace that reinstalls @latest reconnects via heartbeat, not
7938
7979
  // pair/reconnect). Older backends ignore the extra field.
7939
- ..."2.61.46" ? { ideVersion: "2.61.46" } : {}
7980
+ ..."2.61.48" ? { ideVersion: "2.61.48" } : {}
7940
7981
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
7941
7982
  }
7942
7983
  /**
@@ -18921,7 +18962,7 @@ async function autoUpgradeBeforeCriticalCommand() {
18921
18962
  if (process.env.NODE_ENV === "test") return;
18922
18963
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
18923
18964
  if (process.env.CI) return;
18924
- const current = true ? "2.61.46" : null;
18965
+ const current = true ? "2.61.48" : null;
18925
18966
  if (!current) return;
18926
18967
  const cache = readCache();
18927
18968
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -18938,7 +18979,7 @@ function checkForUpdates() {
18938
18979
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
18939
18980
  if (process.env.CI) return;
18940
18981
  if (!process.stdout.isTTY) return;
18941
- const current = true ? "2.61.46" : null;
18982
+ const current = true ? "2.61.48" : null;
18942
18983
  if (!current) return;
18943
18984
  const cache = readCache();
18944
18985
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -18958,7 +18999,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
18958
18999
  var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
18959
19000
  var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
18960
19001
  function currentCliVersion() {
18961
- return true ? "2.61.46" : null;
19002
+ return true ? "2.61.48" : null;
18962
19003
  }
18963
19004
  function runCmd(cmd, args2, timeoutMs) {
18964
19005
  return new Promise((resolve8) => {
@@ -39084,7 +39125,7 @@ function checkChokidar() {
39084
39125
  }
39085
39126
  async function doctor(args2 = []) {
39086
39127
  const json = args2.includes("--json");
39087
- const cliVersion = true ? "2.61.46" : "0.0.0-dev";
39128
+ const cliVersion = true ? "2.61.48" : "0.0.0-dev";
39088
39129
  const apiBase2 = resolveApiBaseUrl();
39089
39130
  const diagnosticId = (0, import_node_crypto13.randomUUID)();
39090
39131
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -39606,7 +39647,7 @@ async function mcpRun(args2) {
39606
39647
  // src/commands/version.ts
39607
39648
  var import_picocolors15 = __toESM(require("picocolors"));
39608
39649
  function version2() {
39609
- const v = true ? "2.61.46" : "unknown";
39650
+ const v = true ? "2.61.48" : "unknown";
39610
39651
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
39611
39652
  }
39612
39653
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.61.46",
3
+ "version": "2.61.48",
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",