codeam-cli 2.39.27 → 2.39.28
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 +10 -0
- package/dist/index.js +23 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ 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.39.27] — 2026-06-17
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **cli:** Run the managed house agent on self-hosted host deploys (#330) (#353)
|
|
12
|
+
|
|
13
|
+
### Chore
|
|
14
|
+
|
|
15
|
+
- **deps:** Bump ACP adapters + resync lockfile (supersedes #324, #325) (#352)
|
|
16
|
+
|
|
7
17
|
## [2.39.26] — 2026-06-17
|
|
8
18
|
|
|
9
19
|
### Documentation
|
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.39.
|
|
501
|
+
version: "2.39.28",
|
|
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",
|
|
@@ -5908,7 +5908,7 @@ function readAnonId() {
|
|
|
5908
5908
|
}
|
|
5909
5909
|
function superProperties() {
|
|
5910
5910
|
return {
|
|
5911
|
-
cliVersion: true ? "2.39.
|
|
5911
|
+
cliVersion: true ? "2.39.28" : "0.0.0-dev",
|
|
5912
5912
|
nodeVersion: process.version,
|
|
5913
5913
|
platform: process.platform,
|
|
5914
5914
|
arch: process.arch,
|
|
@@ -15279,6 +15279,11 @@ var startCommandSchema = import_zod.z.object({
|
|
|
15279
15279
|
query: import_zod.z.string().max(256).optional(),
|
|
15280
15280
|
message: import_zod.z.string().max(8e3).optional(),
|
|
15281
15281
|
paths: import_zod.z.array(import_zod.z.string().max(4096)).optional(),
|
|
15282
|
+
// `show_install_command` — backend pushes the self-hosted install
|
|
15283
|
+
// one-liner the user copies onto their own box. DISPLAY-ONLY: the
|
|
15284
|
+
// CLI prints it to the terminal and never executes it. Bounded to
|
|
15285
|
+
// 8192 chars so a malformed payload can't flood the terminal.
|
|
15286
|
+
command: import_zod.z.string().min(1).max(8192).optional(),
|
|
15282
15287
|
side: import_zod.z.enum(["ours", "theirs"]).optional(),
|
|
15283
15288
|
limit: import_zod.z.number().int().min(1).max(500).optional(),
|
|
15284
15289
|
// search_files options. `query` is the haystack/needle string,
|
|
@@ -18450,6 +18455,18 @@ var shutdownSession = async (ctx, cmd) => {
|
|
|
18450
18455
|
ctx.relay.stop();
|
|
18451
18456
|
process.exit(0);
|
|
18452
18457
|
};
|
|
18458
|
+
var showInstallCommand = async (ctx, cmd, parsed) => {
|
|
18459
|
+
const command2 = parsed.command;
|
|
18460
|
+
if (!command2) {
|
|
18461
|
+
await ctx.relay.sendResult(cmd.id, "failed", { error: "Missing command" });
|
|
18462
|
+
return;
|
|
18463
|
+
}
|
|
18464
|
+
showInfo("CodeAgent \u2014 self-hosted install. Run this on your box:");
|
|
18465
|
+
showInfo("");
|
|
18466
|
+
showInfo(` ${command2}`);
|
|
18467
|
+
showInfo("");
|
|
18468
|
+
await ctx.relay.sendResult(cmd.id, "completed", {});
|
|
18469
|
+
};
|
|
18453
18470
|
var readFile4 = async (ctx, cmd, parsed) => {
|
|
18454
18471
|
if (!parsed.path) {
|
|
18455
18472
|
await ctx.relay.sendResult(cmd.id, "failed", { error: "Missing path" });
|
|
@@ -19273,6 +19290,7 @@ var handlers = {
|
|
|
19273
19290
|
set_keep_alive: setKeepAlive,
|
|
19274
19291
|
session_terminated: sessionTerminated,
|
|
19275
19292
|
shutdown_session: shutdownSession,
|
|
19293
|
+
show_install_command: showInstallCommand,
|
|
19276
19294
|
read_file: readFile4,
|
|
19277
19295
|
write_file: writeFile3,
|
|
19278
19296
|
list_files: listFiles,
|
|
@@ -26822,7 +26840,7 @@ function checkChokidar() {
|
|
|
26822
26840
|
}
|
|
26823
26841
|
async function doctor(args2 = []) {
|
|
26824
26842
|
const json = args2.includes("--json");
|
|
26825
|
-
const cliVersion = true ? "2.39.
|
|
26843
|
+
const cliVersion = true ? "2.39.28" : "0.0.0-dev";
|
|
26826
26844
|
const apiBase2 = resolveApiBaseUrl();
|
|
26827
26845
|
const diagnosticId = (0, import_node_crypto8.randomUUID)();
|
|
26828
26846
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -27021,7 +27039,7 @@ async function completion(args2) {
|
|
|
27021
27039
|
// src/commands/version.ts
|
|
27022
27040
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
27023
27041
|
function version2() {
|
|
27024
|
-
const v = true ? "2.39.
|
|
27042
|
+
const v = true ? "2.39.28" : "unknown";
|
|
27025
27043
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
27026
27044
|
}
|
|
27027
27045
|
|
|
@@ -27307,7 +27325,7 @@ function checkForUpdates() {
|
|
|
27307
27325
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
27308
27326
|
if (process.env.CI) return;
|
|
27309
27327
|
if (!process.stdout.isTTY) return;
|
|
27310
|
-
const current = true ? "2.39.
|
|
27328
|
+
const current = true ? "2.39.28" : null;
|
|
27311
27329
|
if (!current) return;
|
|
27312
27330
|
const cache = readCache();
|
|
27313
27331
|
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.39.
|
|
3
|
+
"version": "2.39.28",
|
|
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",
|