codeam-cli 2.61.97 → 2.61.98
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 +8 -8
- 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.61.97] — 2026-08-10
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **cli:** Keep the machine awake for the lifetime of a local session (per-OS) (#607)
|
|
12
|
+
|
|
7
13
|
## [2.61.96] — 2026-08-08
|
|
8
14
|
|
|
9
15
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -8021,7 +8021,7 @@ function readAnonId() {
|
|
|
8021
8021
|
}
|
|
8022
8022
|
function superProperties() {
|
|
8023
8023
|
return {
|
|
8024
|
-
cliVersion: true ? "2.61.
|
|
8024
|
+
cliVersion: true ? "2.61.98" : "0.0.0-dev",
|
|
8025
8025
|
nodeVersion: process.version,
|
|
8026
8026
|
platform: process.platform,
|
|
8027
8027
|
arch: process.arch,
|
|
@@ -8202,7 +8202,7 @@ var os4 = __toESM(require("os"));
|
|
|
8202
8202
|
// package.json
|
|
8203
8203
|
var package_default = {
|
|
8204
8204
|
name: "codeam-cli",
|
|
8205
|
-
version: "2.61.
|
|
8205
|
+
version: "2.61.98",
|
|
8206
8206
|
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.",
|
|
8207
8207
|
type: "commonjs",
|
|
8208
8208
|
main: "dist/index.js",
|
|
@@ -9519,7 +9519,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
9519
9519
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
9520
9520
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
9521
9521
|
// pair/reconnect). Older backends ignore the extra field.
|
|
9522
|
-
..."2.61.
|
|
9522
|
+
..."2.61.98" ? { ideVersion: "2.61.98" } : {}
|
|
9523
9523
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
9524
9524
|
}
|
|
9525
9525
|
/**
|
|
@@ -20722,7 +20722,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
20722
20722
|
if (process.env.NODE_ENV === "test") return;
|
|
20723
20723
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
20724
20724
|
if (process.env.CI) return;
|
|
20725
|
-
const current2 = true ? "2.61.
|
|
20725
|
+
const current2 = true ? "2.61.98" : null;
|
|
20726
20726
|
if (!current2) return;
|
|
20727
20727
|
const cache = readCache();
|
|
20728
20728
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -20739,7 +20739,7 @@ function checkForUpdates() {
|
|
|
20739
20739
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
20740
20740
|
if (process.env.CI) return;
|
|
20741
20741
|
if (!process.stdout.isTTY) return;
|
|
20742
|
-
const current2 = true ? "2.61.
|
|
20742
|
+
const current2 = true ? "2.61.98" : null;
|
|
20743
20743
|
if (!current2) return;
|
|
20744
20744
|
const cache = readCache();
|
|
20745
20745
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -20759,7 +20759,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
20759
20759
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
20760
20760
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
20761
20761
|
function currentCliVersion() {
|
|
20762
|
-
return true ? "2.61.
|
|
20762
|
+
return true ? "2.61.98" : null;
|
|
20763
20763
|
}
|
|
20764
20764
|
function runCmd(cmd, args2, timeoutMs) {
|
|
20765
20765
|
return new Promise((resolve9) => {
|
|
@@ -42598,7 +42598,7 @@ function checkChokidar() {
|
|
|
42598
42598
|
}
|
|
42599
42599
|
async function doctor(args2 = []) {
|
|
42600
42600
|
const json = args2.includes("--json");
|
|
42601
|
-
const cliVersion = true ? "2.61.
|
|
42601
|
+
const cliVersion = true ? "2.61.98" : "0.0.0-dev";
|
|
42602
42602
|
const apiBase2 = resolveApiBaseUrl();
|
|
42603
42603
|
const diagnosticId = (0, import_node_crypto13.randomUUID)();
|
|
42604
42604
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -42989,7 +42989,7 @@ async function mcpRun(args2) {
|
|
|
42989
42989
|
// src/commands/version.ts
|
|
42990
42990
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
42991
42991
|
function version2() {
|
|
42992
|
-
const v = true ? "2.61.
|
|
42992
|
+
const v = true ? "2.61.98" : "unknown";
|
|
42993
42993
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
42994
42994
|
}
|
|
42995
42995
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.98",
|
|
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",
|