codeam-cli 2.61.27 → 2.61.29

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,16 @@ 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.27] — 2026-07-24
8
+
9
+ ### Added
10
+
11
+ - **shared:** Add spec-driven-development skill + split skills into per-file modules
12
+
13
+ ### Fixed
14
+
15
+ - **shared:** Add PR_REVIEW_LAUNCH to USER_EVENTS (sync A↔B drift)
16
+
7
17
  ## [2.61.26] — 2026-07-23
8
18
 
9
19
  ### Fixed
package/dist/index.js CHANGED
@@ -672,6 +672,43 @@ var INTEGRATION_REGISTRY = {
672
672
  }
673
673
  }
674
674
  },
675
+ microsoft_teams: {
676
+ id: "microsoft_teams",
677
+ name: "Microsoft Teams",
678
+ icon: "microsoft_teams",
679
+ category: "comms",
680
+ // COMING SOON — placeholder catalog entry (no OAuth provider / MCP yet). The
681
+ // agent will post review pings + read threads AS THE USER over Microsoft Graph
682
+ // once the provider lands. `enabled:false` renders it as a dimmed "coming
683
+ // soon" tile inside the (live) comms category.
684
+ enabled: false,
685
+ auth: { kind: "oauth_redirect" },
686
+ delivery: {}
687
+ },
688
+ google_chat: {
689
+ id: "google_chat",
690
+ name: "Google Chat",
691
+ icon: "google_chat",
692
+ category: "comms",
693
+ // COMING SOON — placeholder catalog entry (no OAuth provider / MCP yet). The
694
+ // agent will post review pings + read spaces AS THE USER over the Google Chat
695
+ // API once the provider lands. `enabled:false` → dimmed "coming soon" tile.
696
+ enabled: false,
697
+ auth: { kind: "oauth_redirect" },
698
+ delivery: {}
699
+ },
700
+ discord: {
701
+ id: "discord",
702
+ name: "Discord",
703
+ icon: "discord",
704
+ category: "comms",
705
+ // COMING SOON — placeholder catalog entry (no OAuth provider / MCP yet). The
706
+ // agent will post review pings + read channels over the Discord API once the
707
+ // provider lands. `enabled:false` → dimmed "coming soon" tile.
708
+ enabled: false,
709
+ auth: { kind: "oauth_redirect" },
710
+ delivery: {}
711
+ },
675
712
  notion: {
676
713
  id: "notion",
677
714
  name: "Notion",
@@ -6240,7 +6277,7 @@ function readAnonId() {
6240
6277
  }
6241
6278
  function superProperties() {
6242
6279
  return {
6243
- cliVersion: true ? "2.61.27" : "0.0.0-dev",
6280
+ cliVersion: true ? "2.61.29" : "0.0.0-dev",
6244
6281
  nodeVersion: process.version,
6245
6282
  platform: process.platform,
6246
6283
  arch: process.arch,
@@ -6421,7 +6458,7 @@ var os4 = __toESM(require("os"));
6421
6458
  // package.json
6422
6459
  var package_default = {
6423
6460
  name: "codeam-cli",
6424
- version: "2.61.27",
6461
+ version: "2.61.29",
6425
6462
  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.",
6426
6463
  type: "commonjs",
6427
6464
  main: "dist/index.js",
@@ -7592,7 +7629,7 @@ var CommandRelayService = class _CommandRelayService {
7592
7629
  // fresh + clear the "CLI update available" banner after a self-update
7593
7630
  // (a codespace that reinstalls @latest reconnects via heartbeat, not
7594
7631
  // pair/reconnect). Older backends ignore the extra field.
7595
- ..."2.61.27" ? { ideVersion: "2.61.27" } : {}
7632
+ ..."2.61.29" ? { ideVersion: "2.61.29" } : {}
7596
7633
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
7597
7634
  }
7598
7635
  /**
@@ -18454,7 +18491,7 @@ async function autoUpgradeBeforeCriticalCommand() {
18454
18491
  if (process.env.NODE_ENV === "test") return;
18455
18492
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
18456
18493
  if (process.env.CI) return;
18457
- const current = true ? "2.61.27" : null;
18494
+ const current = true ? "2.61.29" : null;
18458
18495
  if (!current) return;
18459
18496
  const cache = readCache();
18460
18497
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -18471,7 +18508,7 @@ function checkForUpdates() {
18471
18508
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
18472
18509
  if (process.env.CI) return;
18473
18510
  if (!process.stdout.isTTY) return;
18474
- const current = true ? "2.61.27" : null;
18511
+ const current = true ? "2.61.29" : null;
18475
18512
  if (!current) return;
18476
18513
  const cache = readCache();
18477
18514
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -18491,7 +18528,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
18491
18528
  var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
18492
18529
  var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
18493
18530
  function currentCliVersion() {
18494
- return true ? "2.61.27" : null;
18531
+ return true ? "2.61.29" : null;
18495
18532
  }
18496
18533
  function runCmd(cmd, args2, timeoutMs) {
18497
18534
  return new Promise((resolve8) => {
@@ -38484,7 +38521,7 @@ function checkChokidar() {
38484
38521
  }
38485
38522
  async function doctor(args2 = []) {
38486
38523
  const json = args2.includes("--json");
38487
- const cliVersion = true ? "2.61.27" : "0.0.0-dev";
38524
+ const cliVersion = true ? "2.61.29" : "0.0.0-dev";
38488
38525
  const apiBase2 = resolveApiBaseUrl();
38489
38526
  const diagnosticId = (0, import_node_crypto13.randomUUID)();
38490
38527
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -38995,7 +39032,7 @@ async function mcpRun(args2) {
38995
39032
  // src/commands/version.ts
38996
39033
  var import_picocolors15 = __toESM(require("picocolors"));
38997
39034
  function version2() {
38998
- const v = true ? "2.61.27" : "unknown";
39035
+ const v = true ? "2.61.29" : "unknown";
38999
39036
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
39000
39037
  }
39001
39038
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.61.27",
3
+ "version": "2.61.29",
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",