codeam-cli 2.67.2 → 2.67.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 +10 -10
- 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.67.2] — 2026-08-24
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **cli:** Stop the wake probe firing re-auth on house-agent sessions
|
|
12
|
+
|
|
7
13
|
## [2.67.1] — 2026-08-24
|
|
8
14
|
|
|
9
15
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -8081,7 +8081,7 @@ function readAnonId() {
|
|
|
8081
8081
|
}
|
|
8082
8082
|
function superProperties() {
|
|
8083
8083
|
return {
|
|
8084
|
-
cliVersion: true ? "2.67.
|
|
8084
|
+
cliVersion: true ? "2.67.3" : "0.0.0-dev",
|
|
8085
8085
|
nodeVersion: process.version,
|
|
8086
8086
|
platform: process.platform,
|
|
8087
8087
|
arch: process.arch,
|
|
@@ -8323,7 +8323,7 @@ var http = __toESM(require("http"));
|
|
|
8323
8323
|
// package.json
|
|
8324
8324
|
var package_default = {
|
|
8325
8325
|
name: "codeam-cli",
|
|
8326
|
-
version: "2.67.
|
|
8326
|
+
version: "2.67.3",
|
|
8327
8327
|
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.",
|
|
8328
8328
|
type: "commonjs",
|
|
8329
8329
|
main: "dist/index.js",
|
|
@@ -9855,7 +9855,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
9855
9855
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
9856
9856
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
9857
9857
|
// pair/reconnect). Older backends ignore the extra field.
|
|
9858
|
-
..."2.67.
|
|
9858
|
+
..."2.67.3" ? { ideVersion: "2.67.3" } : {}
|
|
9859
9859
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
9860
9860
|
}
|
|
9861
9861
|
/**
|
|
@@ -22082,7 +22082,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
22082
22082
|
if (process.env.NODE_ENV === "test") return;
|
|
22083
22083
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
22084
22084
|
if (process.env.CI) return;
|
|
22085
|
-
const current2 = true ? "2.67.
|
|
22085
|
+
const current2 = true ? "2.67.3" : null;
|
|
22086
22086
|
if (!current2) return;
|
|
22087
22087
|
const cache = readCache();
|
|
22088
22088
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -22099,7 +22099,7 @@ function checkForUpdates() {
|
|
|
22099
22099
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
22100
22100
|
if (process.env.CI) return;
|
|
22101
22101
|
if (!process.stdout.isTTY) return;
|
|
22102
|
-
const current2 = true ? "2.67.
|
|
22102
|
+
const current2 = true ? "2.67.3" : null;
|
|
22103
22103
|
if (!current2) return;
|
|
22104
22104
|
const cache = readCache();
|
|
22105
22105
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -22122,7 +22122,7 @@ var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
|
22122
22122
|
var SELF_UPDATE_LS_TIMEOUT_MS = 15e3;
|
|
22123
22123
|
var SUDO_PREFLIGHT_TIMEOUT_MS = 5e3;
|
|
22124
22124
|
function currentCliVersion() {
|
|
22125
|
-
return true ? "2.67.
|
|
22125
|
+
return true ? "2.67.3" : null;
|
|
22126
22126
|
}
|
|
22127
22127
|
async function installedVersion(deps) {
|
|
22128
22128
|
const ls = await deps.run(
|
|
@@ -37458,11 +37458,11 @@ function replyIsAuthFailure(finalText) {
|
|
|
37458
37458
|
}
|
|
37459
37459
|
function replyIsHouseAgentLimit(finalText) {
|
|
37460
37460
|
const t2 = finalText.trim();
|
|
37461
|
-
return t2.length > 0 && t2.length <=
|
|
37461
|
+
return t2.length > 0 && t2.length <= 400 && looksLikeHouseAgentLimit(t2);
|
|
37462
37462
|
}
|
|
37463
37463
|
function houseAgentLimitMessage(text) {
|
|
37464
37464
|
if (/temporarily (?:unavailable|disabled)/i.test(text)) {
|
|
37465
|
-
return "\u23F3 **CodeAgent Cloud is temporarily unavailable
|
|
37465
|
+
return "\u23F3 **CodeAgent Cloud is temporarily unavailable \u2014 this one\u2019s on us, not your account.**\n\nThere\u2019s nothing to buy and nothing owed, and it isn\u2019t a problem with your login, so re-authenticating won\u2019t help. Send your message again in a bit, or connect your own agent (Claude Code, Codex, Cursor, Gemini) in **Profile \u203A Agents** to keep going now.";
|
|
37466
37466
|
}
|
|
37467
37467
|
const canUpgrade = /upgrade to pro/i.test(text);
|
|
37468
37468
|
return "\u{1F4CA} **You\u2019ve reached your daily CodeAgent Cloud limit.**\n\nThe free CodeAgent Cloud agent has a daily usage ceiling that resets at midnight UTC. This is a usage limit, not a problem with your login \u2014 re-authenticating won\u2019t change it. " + (canUpgrade ? "To keep going now, upgrade to **Pro** for a higher ceiling, or connect your own agent (Claude, Codex, \u2026) in **Profile \u203A Agents** to run without this limit." : "To keep going now, connect your own agent (Claude, Codex, \u2026) in **Profile \u203A Agents** to run without this limit, or wait for the reset.");
|
|
@@ -45758,7 +45758,7 @@ function checkChokidar() {
|
|
|
45758
45758
|
}
|
|
45759
45759
|
async function doctor(args2 = []) {
|
|
45760
45760
|
const json = args2.includes("--json");
|
|
45761
|
-
const cliVersion = true ? "2.67.
|
|
45761
|
+
const cliVersion = true ? "2.67.3" : "0.0.0-dev";
|
|
45762
45762
|
const apiBase2 = resolveApiBaseUrl();
|
|
45763
45763
|
const diagnosticId = (0, import_node_crypto13.randomUUID)();
|
|
45764
45764
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -46149,7 +46149,7 @@ async function mcpRun(args2) {
|
|
|
46149
46149
|
// src/commands/version.ts
|
|
46150
46150
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
46151
46151
|
function version2() {
|
|
46152
|
-
const v = true ? "2.67.
|
|
46152
|
+
const v = true ? "2.67.3" : "unknown";
|
|
46153
46153
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
46154
46154
|
}
|
|
46155
46155
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.67.
|
|
3
|
+
"version": "2.67.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",
|