codeam-cli 2.26.16 → 2.27.1
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.26.16] — 2026-06-05
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **cli:** POST link-error signal to backend on validate-refuse (#259)
|
|
12
|
+
|
|
7
13
|
## [2.26.15] — 2026-06-05
|
|
8
14
|
|
|
9
15
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -486,7 +486,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
486
486
|
// package.json
|
|
487
487
|
var package_default = {
|
|
488
488
|
name: "codeam-cli",
|
|
489
|
-
version: "2.
|
|
489
|
+
version: "2.27.1",
|
|
490
490
|
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.",
|
|
491
491
|
type: "commonjs",
|
|
492
492
|
main: "dist/index.js",
|
|
@@ -5858,7 +5858,7 @@ function readAnonId() {
|
|
|
5858
5858
|
}
|
|
5859
5859
|
function superProperties() {
|
|
5860
5860
|
return {
|
|
5861
|
-
cliVersion: true ? "2.
|
|
5861
|
+
cliVersion: true ? "2.27.1" : "0.0.0-dev",
|
|
5862
5862
|
nodeVersion: process.version,
|
|
5863
5863
|
platform: process.platform,
|
|
5864
5864
|
arch: process.arch,
|
|
@@ -20339,7 +20339,7 @@ function checkChokidar() {
|
|
|
20339
20339
|
}
|
|
20340
20340
|
async function doctor(args2 = []) {
|
|
20341
20341
|
const json = args2.includes("--json");
|
|
20342
|
-
const cliVersion = true ? "2.
|
|
20342
|
+
const cliVersion = true ? "2.27.1" : "0.0.0-dev";
|
|
20343
20343
|
const apiBase = resolveApiBaseUrl();
|
|
20344
20344
|
const diagnosticId = (0, import_node_crypto6.randomUUID)();
|
|
20345
20345
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -20538,7 +20538,7 @@ async function completion(args2) {
|
|
|
20538
20538
|
// src/commands/version.ts
|
|
20539
20539
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
20540
20540
|
function version2() {
|
|
20541
|
-
const v = true ? "2.
|
|
20541
|
+
const v = true ? "2.27.1" : "unknown";
|
|
20542
20542
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
20543
20543
|
}
|
|
20544
20544
|
|
|
@@ -20766,7 +20766,7 @@ function checkForUpdates() {
|
|
|
20766
20766
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
20767
20767
|
if (process.env.CI) return;
|
|
20768
20768
|
if (!process.stdout.isTTY) return;
|
|
20769
|
-
const current = true ? "2.
|
|
20769
|
+
const current = true ? "2.27.1" : null;
|
|
20770
20770
|
if (!current) return;
|
|
20771
20771
|
const cache = readCache();
|
|
20772
20772
|
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.
|
|
3
|
+
"version": "2.27.1",
|
|
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",
|