codeam-cli 2.60.27 → 2.60.28

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,17 @@ 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.27] — 2026-07-09
8
+
9
+ ### Added
10
+
11
+ - **shared:** CodeRabbit links via oauth_token (loopback) — vault gate
12
+
13
+ ### Fixed
14
+
15
+ - **cli:** Coderabbit — augment PATH before findInPath (session reported not-linked)
16
+ - **cli:** Coderabbit PATH augment is platform-aware (Windows/WSL too)
17
+
7
18
  ## [2.60.26] — 2026-07-09
8
19
 
9
20
  ### Added
package/dist/index.js CHANGED
@@ -5684,7 +5684,7 @@ function readAnonId() {
5684
5684
  }
5685
5685
  function superProperties() {
5686
5686
  return {
5687
- cliVersion: true ? "2.60.27" : "0.0.0-dev",
5687
+ cliVersion: true ? "2.60.28" : "0.0.0-dev",
5688
5688
  nodeVersion: process.version,
5689
5689
  platform: process.platform,
5690
5690
  arch: process.arch,
@@ -5865,7 +5865,7 @@ var os4 = __toESM(require("os"));
5865
5865
  // package.json
5866
5866
  var package_default = {
5867
5867
  name: "codeam-cli",
5868
- version: "2.60.27",
5868
+ version: "2.60.28",
5869
5869
  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.",
5870
5870
  type: "commonjs",
5871
5871
  main: "dist/index.js",
@@ -6958,7 +6958,7 @@ var CommandRelayService = class {
6958
6958
  // fresh + clear the "CLI update available" banner after a self-update
6959
6959
  // (a codespace that reinstalls @latest reconnects via heartbeat, not
6960
6960
  // pair/reconnect). Older backends ignore the extra field.
6961
- ..."2.60.27" ? { ideVersion: "2.60.27" } : {}
6961
+ ..."2.60.28" ? { ideVersion: "2.60.28" } : {}
6962
6962
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
6963
6963
  }
6964
6964
  /**
@@ -17208,7 +17208,7 @@ async function autoUpgradeBeforeCriticalCommand() {
17208
17208
  if (process.env.NODE_ENV === "test") return;
17209
17209
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
17210
17210
  if (process.env.CI) return;
17211
- const current = true ? "2.60.27" : null;
17211
+ const current = true ? "2.60.28" : null;
17212
17212
  if (!current) return;
17213
17213
  const cache = readCache();
17214
17214
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -17225,7 +17225,7 @@ function checkForUpdates() {
17225
17225
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
17226
17226
  if (process.env.CI) return;
17227
17227
  if (!process.stdout.isTTY) return;
17228
- const current = true ? "2.60.27" : null;
17228
+ const current = true ? "2.60.28" : null;
17229
17229
  if (!current) return;
17230
17230
  const cache = readCache();
17231
17231
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -17245,7 +17245,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
17245
17245
  var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
17246
17246
  var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
17247
17247
  function currentCliVersion() {
17248
- return true ? "2.60.27" : null;
17248
+ return true ? "2.60.28" : null;
17249
17249
  }
17250
17250
  function runCmd(cmd, args2, timeoutMs) {
17251
17251
  return new Promise((resolve7) => {
@@ -21181,12 +21181,14 @@ var coderabbitConfigureH = async (ctx, cmd, parsed) => {
21181
21181
  runReview: (input) => new CoderabbitRuntimeStrategy(createOsStrategy()).runOneShot(input)
21182
21182
  }
21183
21183
  );
21184
- emit2("coderabbit_status", {
21185
- installed: result.installed,
21186
- loggedIn: result.loggedIn,
21187
- linked: result.linked ?? false,
21188
- ...result.error ? { error: result.error } : {}
21189
- });
21184
+ if (action !== "review") {
21185
+ emit2("coderabbit_status", {
21186
+ installed: result.installed,
21187
+ loggedIn: result.loggedIn,
21188
+ linked: result.linked ?? false,
21189
+ ...result.error ? { error: result.error } : {}
21190
+ });
21191
+ }
21190
21192
  await emitChain;
21191
21193
  await ctx.relay.sendResult(cmd.id, result.error && action !== "review" ? "failed" : "completed", result);
21192
21194
  };
@@ -34196,7 +34198,7 @@ function checkChokidar() {
34196
34198
  }
34197
34199
  async function doctor(args2 = []) {
34198
34200
  const json = args2.includes("--json");
34199
- const cliVersion = true ? "2.60.27" : "0.0.0-dev";
34201
+ const cliVersion = true ? "2.60.28" : "0.0.0-dev";
34200
34202
  const apiBase2 = resolveApiBaseUrl();
34201
34203
  const diagnosticId = (0, import_node_crypto12.randomUUID)();
34202
34204
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -34395,7 +34397,7 @@ async function completion(args2) {
34395
34397
  // src/commands/version.ts
34396
34398
  var import_picocolors15 = __toESM(require("picocolors"));
34397
34399
  function version2() {
34398
- const v = true ? "2.60.27" : "unknown";
34400
+ const v = true ? "2.60.28" : "unknown";
34399
34401
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
34400
34402
  }
34401
34403
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.60.27",
3
+ "version": "2.60.28",
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",