codeam-cli 2.60.66 → 2.60.67

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.60.66] — 2026-07-15
8
+
9
+ ### Added
10
+
11
+ - **shared:** Add Notion as a live Agent Toolkit integration
12
+
7
13
  ## [2.60.65] — 2026-07-15
8
14
 
9
15
  ### Added
package/dist/index.js CHANGED
@@ -695,6 +695,53 @@ var INTEGRATION_REGISTRY = {
695
695
  }
696
696
  }
697
697
  }
698
+ },
699
+ azure_devops: {
700
+ id: "azure_devops",
701
+ name: "Azure DevOps",
702
+ icon: "azure_devops",
703
+ // LIVE — the FIRST api_key (PAT) integration. No OAuth: Azure DevOps OAuth
704
+ // apps are being sunset by Microsoft in favor of Entra ID, and PATs are the
705
+ // native, reliable ADO auth. The user pastes their org URL + a PAT; the
706
+ // backend validates against the ADO REST API and vaults it. No env secrets
707
+ // to configure (config-gated 503 doesn't apply — there's no OAuth app).
708
+ enabled: true,
709
+ auth: {
710
+ kind: "api_key",
711
+ fields: [
712
+ {
713
+ key: "orgUrl",
714
+ label: "Organization URL",
715
+ placeholder: "https://dev.azure.com/your-org",
716
+ secret: false,
717
+ help: "Your Azure DevOps organization URL \u2014 e.g. https://dev.azure.com/contoso"
718
+ },
719
+ {
720
+ key: "accessToken",
721
+ label: "Personal Access Token",
722
+ placeholder: "Paste your PAT",
723
+ secret: true,
724
+ help: "Create in Azure DevOps \u2192 User settings \u2192 Personal access tokens. Recommended scopes: Work Items (Read & Write), Code (Read), Build (Read), Project and Team (Read)."
725
+ }
726
+ ]
727
+ },
728
+ delivery: {
729
+ mcp: {
730
+ // The @tiberriver256 ADO MCP server (Node) in PAT mode: the PAT is fed
731
+ // via AZURE_DEVOPS_PAT (Basic auth) + the org via AZURE_DEVOPS_ORG_URL
732
+ // (env only, never argv). AZURE_DEVOPS_AUTH_METHOD=pat pins the PAT path
733
+ // (the alternative, azure-identity, uses DefaultAzureCredential and
734
+ // would ignore our token). Version PINNED; bump only after re-verifying
735
+ // headless.
736
+ command: "npx",
737
+ args: ["-y", "@tiberriver256/mcp-server-azure-devops@0.1.46"],
738
+ envMapping: {
739
+ AZURE_DEVOPS_PAT: "accessToken",
740
+ AZURE_DEVOPS_ORG_URL: "orgUrl"
741
+ },
742
+ staticEnv: { AZURE_DEVOPS_AUTH_METHOD: "pat" }
743
+ }
744
+ }
698
745
  }
699
746
  };
700
747
  function getIntegration(id) {
@@ -5923,7 +5970,7 @@ function readAnonId() {
5923
5970
  }
5924
5971
  function superProperties() {
5925
5972
  return {
5926
- cliVersion: true ? "2.60.66" : "0.0.0-dev",
5973
+ cliVersion: true ? "2.60.67" : "0.0.0-dev",
5927
5974
  nodeVersion: process.version,
5928
5975
  platform: process.platform,
5929
5976
  arch: process.arch,
@@ -6104,7 +6151,7 @@ var os4 = __toESM(require("os"));
6104
6151
  // package.json
6105
6152
  var package_default = {
6106
6153
  name: "codeam-cli",
6107
- version: "2.60.66",
6154
+ version: "2.60.67",
6108
6155
  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.",
6109
6156
  type: "commonjs",
6110
6157
  main: "dist/index.js",
@@ -7247,7 +7294,7 @@ var CommandRelayService = class _CommandRelayService {
7247
7294
  // fresh + clear the "CLI update available" banner after a self-update
7248
7295
  // (a codespace that reinstalls @latest reconnects via heartbeat, not
7249
7296
  // pair/reconnect). Older backends ignore the extra field.
7250
- ..."2.60.66" ? { ideVersion: "2.60.66" } : {}
7297
+ ..."2.60.67" ? { ideVersion: "2.60.67" } : {}
7251
7298
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
7252
7299
  }
7253
7300
  /**
@@ -17824,7 +17871,7 @@ async function autoUpgradeBeforeCriticalCommand() {
17824
17871
  if (process.env.NODE_ENV === "test") return;
17825
17872
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
17826
17873
  if (process.env.CI) return;
17827
- const current = true ? "2.60.66" : null;
17874
+ const current = true ? "2.60.67" : null;
17828
17875
  if (!current) return;
17829
17876
  const cache = readCache();
17830
17877
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -17841,7 +17888,7 @@ function checkForUpdates() {
17841
17888
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
17842
17889
  if (process.env.CI) return;
17843
17890
  if (!process.stdout.isTTY) return;
17844
- const current = true ? "2.60.66" : null;
17891
+ const current = true ? "2.60.67" : null;
17845
17892
  if (!current) return;
17846
17893
  const cache = readCache();
17847
17894
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -17861,7 +17908,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
17861
17908
  var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
17862
17909
  var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
17863
17910
  function currentCliVersion() {
17864
- return true ? "2.60.66" : null;
17911
+ return true ? "2.60.67" : null;
17865
17912
  }
17866
17913
  function runCmd(cmd, args2, timeoutMs) {
17867
17914
  return new Promise((resolve7) => {
@@ -35290,7 +35337,7 @@ function checkChokidar() {
35290
35337
  }
35291
35338
  async function doctor(args2 = []) {
35292
35339
  const json = args2.includes("--json");
35293
- const cliVersion = true ? "2.60.66" : "0.0.0-dev";
35340
+ const cliVersion = true ? "2.60.67" : "0.0.0-dev";
35294
35341
  const apiBase2 = resolveApiBaseUrl();
35295
35342
  const diagnosticId = (0, import_node_crypto12.randomUUID)();
35296
35343
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -35767,7 +35814,7 @@ async function mcpRun(args2) {
35767
35814
  // src/commands/version.ts
35768
35815
  var import_picocolors15 = __toESM(require("picocolors"));
35769
35816
  function version2() {
35770
- const v = true ? "2.60.66" : "unknown";
35817
+ const v = true ? "2.60.67" : "unknown";
35771
35818
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
35772
35819
  }
35773
35820
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.60.66",
3
+ "version": "2.60.67",
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",