codeam-cli 2.20.2 → 2.20.3
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 +6 -0
- package/dist/index.js +5 -5
- package/package.json +1 -1
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.20.2] — 2026-05-25
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **cli+vsc-plugin+jetbrains-plugin+shared:** Walk up to enclosing git root per file event
|
|
12
|
+
|
|
7
13
|
## [2.20.1] — 2026-05-25
|
|
8
14
|
|
|
9
15
|
### Documentation
|
package/dist/index.js
CHANGED
|
@@ -441,7 +441,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
441
441
|
// package.json
|
|
442
442
|
var package_default = {
|
|
443
443
|
name: "codeam-cli",
|
|
444
|
-
version: "2.20.
|
|
444
|
+
version: "2.20.3",
|
|
445
445
|
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.",
|
|
446
446
|
type: "commonjs",
|
|
447
447
|
main: "dist/index.js",
|
|
@@ -5740,7 +5740,7 @@ function readAnonId() {
|
|
|
5740
5740
|
}
|
|
5741
5741
|
function superProperties() {
|
|
5742
5742
|
return {
|
|
5743
|
-
cliVersion: true ? "2.20.
|
|
5743
|
+
cliVersion: true ? "2.20.3" : "0.0.0-dev",
|
|
5744
5744
|
nodeVersion: process.version,
|
|
5745
5745
|
platform: process.platform,
|
|
5746
5746
|
arch: process.arch,
|
|
@@ -17439,7 +17439,7 @@ function checkChokidar() {
|
|
|
17439
17439
|
}
|
|
17440
17440
|
async function doctor(args2 = []) {
|
|
17441
17441
|
const json = args2.includes("--json");
|
|
17442
|
-
const cliVersion = true ? "2.20.
|
|
17442
|
+
const cliVersion = true ? "2.20.3" : "0.0.0-dev";
|
|
17443
17443
|
const apiBase = resolveApiBaseUrl();
|
|
17444
17444
|
const diagnosticId = (0, import_node_crypto5.randomUUID)();
|
|
17445
17445
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -17638,7 +17638,7 @@ async function completion(args2) {
|
|
|
17638
17638
|
// src/commands/version.ts
|
|
17639
17639
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
17640
17640
|
function version2() {
|
|
17641
|
-
const v = true ? "2.20.
|
|
17641
|
+
const v = true ? "2.20.3" : "unknown";
|
|
17642
17642
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
17643
17643
|
}
|
|
17644
17644
|
|
|
@@ -17866,7 +17866,7 @@ function checkForUpdates() {
|
|
|
17866
17866
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17867
17867
|
if (process.env.CI) return;
|
|
17868
17868
|
if (!process.stdout.isTTY) return;
|
|
17869
|
-
const current = true ? "2.20.
|
|
17869
|
+
const current = true ? "2.20.3" : null;
|
|
17870
17870
|
if (!current) return;
|
|
17871
17871
|
const cache = readCache();
|
|
17872
17872
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.20.
|
|
3
|
+
"version": "2.20.3",
|
|
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",
|