codeam-cli 2.61.83 → 2.61.84
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 +12 -9
- 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.83] — 2026-08-05
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **cli:** House-agent proxy env survives a codespace sleep/wake (#586)
|
|
12
|
+
|
|
7
13
|
## [2.61.82] — 2026-08-04
|
|
8
14
|
|
|
9
15
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -7526,7 +7526,7 @@ function readAnonId() {
|
|
|
7526
7526
|
}
|
|
7527
7527
|
function superProperties() {
|
|
7528
7528
|
return {
|
|
7529
|
-
cliVersion: true ? "2.61.
|
|
7529
|
+
cliVersion: true ? "2.61.84" : "0.0.0-dev",
|
|
7530
7530
|
nodeVersion: process.version,
|
|
7531
7531
|
platform: process.platform,
|
|
7532
7532
|
arch: process.arch,
|
|
@@ -7707,7 +7707,7 @@ var os4 = __toESM(require("os"));
|
|
|
7707
7707
|
// package.json
|
|
7708
7708
|
var package_default = {
|
|
7709
7709
|
name: "codeam-cli",
|
|
7710
|
-
version: "2.61.
|
|
7710
|
+
version: "2.61.84",
|
|
7711
7711
|
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.",
|
|
7712
7712
|
type: "commonjs",
|
|
7713
7713
|
main: "dist/index.js",
|
|
@@ -8983,7 +8983,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
8983
8983
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
8984
8984
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
8985
8985
|
// pair/reconnect). Older backends ignore the extra field.
|
|
8986
|
-
..."2.61.
|
|
8986
|
+
..."2.61.84" ? { ideVersion: "2.61.84" } : {}
|
|
8987
8987
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
8988
8988
|
}
|
|
8989
8989
|
/**
|
|
@@ -20156,7 +20156,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
20156
20156
|
if (process.env.NODE_ENV === "test") return;
|
|
20157
20157
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
20158
20158
|
if (process.env.CI) return;
|
|
20159
|
-
const current = true ? "2.61.
|
|
20159
|
+
const current = true ? "2.61.84" : null;
|
|
20160
20160
|
if (!current) return;
|
|
20161
20161
|
const cache = readCache();
|
|
20162
20162
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -20173,7 +20173,7 @@ function checkForUpdates() {
|
|
|
20173
20173
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
20174
20174
|
if (process.env.CI) return;
|
|
20175
20175
|
if (!process.stdout.isTTY) return;
|
|
20176
|
-
const current = true ? "2.61.
|
|
20176
|
+
const current = true ? "2.61.84" : null;
|
|
20177
20177
|
if (!current) return;
|
|
20178
20178
|
const cache = readCache();
|
|
20179
20179
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -20193,7 +20193,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
20193
20193
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
20194
20194
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
20195
20195
|
function currentCliVersion() {
|
|
20196
|
-
return true ? "2.61.
|
|
20196
|
+
return true ? "2.61.84" : null;
|
|
20197
20197
|
}
|
|
20198
20198
|
function runCmd(cmd, args2, timeoutMs) {
|
|
20199
20199
|
return new Promise((resolve9) => {
|
|
@@ -32069,15 +32069,18 @@ function createIdleTimeout(idleMs, makeError, activeIdleMs = idleMs) {
|
|
|
32069
32069
|
var path70 = __toESM(require("path"));
|
|
32070
32070
|
var os53 = __toESM(require("os"));
|
|
32071
32071
|
var INTERNAL_TOKENS = [".codeam", "house-claude"];
|
|
32072
|
+
var SELF_HOSTED_WORKSPACE_RE = /\.codeam[/\\]self-hosted/gi;
|
|
32072
32073
|
function textReferencesInternal(text) {
|
|
32073
32074
|
if (!text) return false;
|
|
32074
|
-
|
|
32075
|
+
const scrubbed = text.replace(SELF_HOSTED_WORKSPACE_RE, " ");
|
|
32076
|
+
return INTERNAL_TOKENS.some((t2) => scrubbed.includes(t2));
|
|
32075
32077
|
}
|
|
32076
32078
|
function pathIsInternal(p2, homeDir2 = os53.homedir()) {
|
|
32077
32079
|
if (!p2) return false;
|
|
32078
32080
|
const abs = path70.resolve(p2);
|
|
32079
32081
|
const home = path70.resolve(homeDir2);
|
|
32080
32082
|
const within = (root) => abs === root || abs.startsWith(root + path70.sep);
|
|
32083
|
+
if (within(path70.join(home, ".codeam", "self-hosted"))) return false;
|
|
32081
32084
|
return within(path70.join(home, ".codeam")) || within(path70.join(home, ".beads")) || abs === path70.join(home, ".codeam-host.log") || abs.includes(`${path70.sep}house-claude${path70.sep}`) || abs.endsWith(`${path70.sep}house-claude`);
|
|
32082
32085
|
}
|
|
32083
32086
|
function toolCallReferencesInternal(call) {
|
|
@@ -41195,7 +41198,7 @@ function checkChokidar() {
|
|
|
41195
41198
|
}
|
|
41196
41199
|
async function doctor(args2 = []) {
|
|
41197
41200
|
const json = args2.includes("--json");
|
|
41198
|
-
const cliVersion = true ? "2.61.
|
|
41201
|
+
const cliVersion = true ? "2.61.84" : "0.0.0-dev";
|
|
41199
41202
|
const apiBase2 = resolveApiBaseUrl();
|
|
41200
41203
|
const diagnosticId = (0, import_node_crypto13.randomUUID)();
|
|
41201
41204
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -41785,7 +41788,7 @@ async function mcpRun(args2) {
|
|
|
41785
41788
|
// src/commands/version.ts
|
|
41786
41789
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
41787
41790
|
function version2() {
|
|
41788
|
-
const v = true ? "2.61.
|
|
41791
|
+
const v = true ? "2.61.84" : "unknown";
|
|
41789
41792
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
41790
41793
|
}
|
|
41791
41794
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.84",
|
|
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",
|