codeam-cli 2.32.9 → 2.32.10
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 +20 -0
- package/dist/index.js +12 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,26 @@ 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.32.9] — 2026-06-07
|
|
8
|
+
|
|
9
|
+
### Tests
|
|
10
|
+
|
|
11
|
+
- **cli:** Integration regression test for preview spawn → ready-pattern path
|
|
12
|
+
|
|
13
|
+
## [2.32.8] — 2026-06-07
|
|
14
|
+
|
|
15
|
+
### Chore
|
|
16
|
+
|
|
17
|
+
- Add FUNDING.yml — surface Sponsor button on the public repo
|
|
18
|
+
|
|
19
|
+
### Documentation
|
|
20
|
+
|
|
21
|
+
- Drop Vercel reference from SSE cap comment
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- **cli:** Compile preview ready_pattern case-insensitive
|
|
26
|
+
|
|
7
27
|
## [2.32.7] — 2026-06-07
|
|
8
28
|
|
|
9
29
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -498,7 +498,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
498
498
|
// package.json
|
|
499
499
|
var package_default = {
|
|
500
500
|
name: "codeam-cli",
|
|
501
|
-
version: "2.32.
|
|
501
|
+
version: "2.32.10",
|
|
502
502
|
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.",
|
|
503
503
|
type: "commonjs",
|
|
504
504
|
main: "dist/index.js",
|
|
@@ -614,6 +614,12 @@ function showError(msg) {
|
|
|
614
614
|
function showInfo(msg) {
|
|
615
615
|
out(` ${import_picocolors.default.dim("\xB7")} ${msg}`);
|
|
616
616
|
}
|
|
617
|
+
function showRelayNotice() {
|
|
618
|
+
out("");
|
|
619
|
+
out(` ${import_picocolors.default.bold(import_picocolors.default.yellow("\u26A0 This terminal is a relay \u2014 do not type here."))}`);
|
|
620
|
+
out(` ${import_picocolors.default.dim("Send your prompts from the CodeAgent Mobile app; replies stream in below.")}`);
|
|
621
|
+
out("");
|
|
622
|
+
}
|
|
617
623
|
var BOX_INTERIOR = 30;
|
|
618
624
|
var BOX_BORDER_TOP = ` \u250C${"\u2500".repeat(BOX_INTERIOR)}\u2510`;
|
|
619
625
|
var BOX_BORDER_BOT = ` \u2514${"\u2500".repeat(BOX_INTERIOR)}\u2518`;
|
|
@@ -5869,7 +5875,7 @@ function readAnonId() {
|
|
|
5869
5875
|
}
|
|
5870
5876
|
function superProperties() {
|
|
5871
5877
|
return {
|
|
5872
|
-
cliVersion: true ? "2.32.
|
|
5878
|
+
cliVersion: true ? "2.32.10" : "0.0.0-dev",
|
|
5873
5879
|
nodeVersion: process.version,
|
|
5874
5880
|
platform: process.platform,
|
|
5875
5881
|
arch: process.arch,
|
|
@@ -19895,6 +19901,7 @@ async function runAcpSession(opts) {
|
|
|
19895
19901
|
`adapter handshake ok protocolVersion=${initialize.protocolVersion} sessionId=${acpSessionId.slice(0, 8)}`
|
|
19896
19902
|
);
|
|
19897
19903
|
showSuccess(`${opts.agent} online (ACP) \u2014 awaiting prompts from mobile.`);
|
|
19904
|
+
showRelayNotice();
|
|
19898
19905
|
void publisher.publishOutput({
|
|
19899
19906
|
type: "agent_banner",
|
|
19900
19907
|
agentId: opts.agent,
|
|
@@ -24963,7 +24970,7 @@ function checkChokidar() {
|
|
|
24963
24970
|
}
|
|
24964
24971
|
async function doctor(args2 = []) {
|
|
24965
24972
|
const json = args2.includes("--json");
|
|
24966
|
-
const cliVersion = true ? "2.32.
|
|
24973
|
+
const cliVersion = true ? "2.32.10" : "0.0.0-dev";
|
|
24967
24974
|
const apiBase = resolveApiBaseUrl();
|
|
24968
24975
|
const diagnosticId = (0, import_node_crypto8.randomUUID)();
|
|
24969
24976
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -25162,7 +25169,7 @@ async function completion(args2) {
|
|
|
25162
25169
|
// src/commands/version.ts
|
|
25163
25170
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
25164
25171
|
function version2() {
|
|
25165
|
-
const v = true ? "2.32.
|
|
25172
|
+
const v = true ? "2.32.10" : "unknown";
|
|
25166
25173
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
25167
25174
|
}
|
|
25168
25175
|
|
|
@@ -25448,7 +25455,7 @@ function checkForUpdates() {
|
|
|
25448
25455
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
25449
25456
|
if (process.env.CI) return;
|
|
25450
25457
|
if (!process.stdout.isTTY) return;
|
|
25451
|
-
const current = true ? "2.32.
|
|
25458
|
+
const current = true ? "2.32.10" : null;
|
|
25452
25459
|
if (!current) return;
|
|
25453
25460
|
const cache = readCache();
|
|
25454
25461
|
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.32.
|
|
3
|
+
"version": "2.32.10",
|
|
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",
|