codeam-cli 2.61.20 → 2.61.21
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 +11 -0
- package/dist/index.js +8 -8
- package/package.json +1 -1
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.61.20] — 2026-07-18
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** Add vcs integration category + GitHub PR wire types
|
|
12
|
+
- **cli:** CodeRabbit PR-review handler + vcs_agent_review command
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- **shared:** Defer first-class GitHub integration (keep PR wire types + event)
|
|
17
|
+
|
|
7
18
|
## [2.61.19] — 2026-07-18
|
|
8
19
|
|
|
9
20
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -6032,7 +6032,7 @@ function readAnonId() {
|
|
|
6032
6032
|
}
|
|
6033
6033
|
function superProperties() {
|
|
6034
6034
|
return {
|
|
6035
|
-
cliVersion: true ? "2.61.
|
|
6035
|
+
cliVersion: true ? "2.61.21" : "0.0.0-dev",
|
|
6036
6036
|
nodeVersion: process.version,
|
|
6037
6037
|
platform: process.platform,
|
|
6038
6038
|
arch: process.arch,
|
|
@@ -6213,7 +6213,7 @@ var os4 = __toESM(require("os"));
|
|
|
6213
6213
|
// package.json
|
|
6214
6214
|
var package_default = {
|
|
6215
6215
|
name: "codeam-cli",
|
|
6216
|
-
version: "2.61.
|
|
6216
|
+
version: "2.61.21",
|
|
6217
6217
|
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.",
|
|
6218
6218
|
type: "commonjs",
|
|
6219
6219
|
main: "dist/index.js",
|
|
@@ -7377,7 +7377,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
7377
7377
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
7378
7378
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
7379
7379
|
// pair/reconnect). Older backends ignore the extra field.
|
|
7380
|
-
..."2.61.
|
|
7380
|
+
..."2.61.21" ? { ideVersion: "2.61.21" } : {}
|
|
7381
7381
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
7382
7382
|
}
|
|
7383
7383
|
/**
|
|
@@ -18147,7 +18147,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
18147
18147
|
if (process.env.NODE_ENV === "test") return;
|
|
18148
18148
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18149
18149
|
if (process.env.CI) return;
|
|
18150
|
-
const current = true ? "2.61.
|
|
18150
|
+
const current = true ? "2.61.21" : null;
|
|
18151
18151
|
if (!current) return;
|
|
18152
18152
|
const cache = readCache();
|
|
18153
18153
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -18164,7 +18164,7 @@ function checkForUpdates() {
|
|
|
18164
18164
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18165
18165
|
if (process.env.CI) return;
|
|
18166
18166
|
if (!process.stdout.isTTY) return;
|
|
18167
|
-
const current = true ? "2.61.
|
|
18167
|
+
const current = true ? "2.61.21" : null;
|
|
18168
18168
|
if (!current) return;
|
|
18169
18169
|
const cache = readCache();
|
|
18170
18170
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -18184,7 +18184,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
18184
18184
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
18185
18185
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
18186
18186
|
function currentCliVersion() {
|
|
18187
|
-
return true ? "2.61.
|
|
18187
|
+
return true ? "2.61.21" : null;
|
|
18188
18188
|
}
|
|
18189
18189
|
function runCmd(cmd, args2, timeoutMs) {
|
|
18190
18190
|
return new Promise((resolve8) => {
|
|
@@ -38071,7 +38071,7 @@ function checkChokidar() {
|
|
|
38071
38071
|
}
|
|
38072
38072
|
async function doctor(args2 = []) {
|
|
38073
38073
|
const json = args2.includes("--json");
|
|
38074
|
-
const cliVersion = true ? "2.61.
|
|
38074
|
+
const cliVersion = true ? "2.61.21" : "0.0.0-dev";
|
|
38075
38075
|
const apiBase2 = resolveApiBaseUrl();
|
|
38076
38076
|
const diagnosticId = (0, import_node_crypto12.randomUUID)();
|
|
38077
38077
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -38582,7 +38582,7 @@ async function mcpRun(args2) {
|
|
|
38582
38582
|
// src/commands/version.ts
|
|
38583
38583
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
38584
38584
|
function version2() {
|
|
38585
|
-
const v = true ? "2.61.
|
|
38585
|
+
const v = true ? "2.61.21" : "unknown";
|
|
38586
38586
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
38587
38587
|
}
|
|
38588
38588
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.21",
|
|
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",
|