codeam-cli 2.23.9 → 2.23.11
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 +12 -0
- package/dist/index.js +25 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ 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.23.10] — 2026-05-27
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **cli:** Pair-auto honors CODEAM_SKIP_AGENT_LAUNCH (#198)
|
|
12
|
+
|
|
13
|
+
## [2.23.9] — 2026-05-27
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- **cli:** Auto-link the chosen agent's creds inside codeam pair (#197)
|
|
18
|
+
|
|
7
19
|
## [2.23.8] — 2026-05-26
|
|
8
20
|
|
|
9
21
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -441,7 +441,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
441
441
|
// package.json
|
|
442
442
|
var package_default = {
|
|
443
443
|
name: "codeam-cli",
|
|
444
|
-
version: "2.23.
|
|
444
|
+
version: "2.23.11",
|
|
445
445
|
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.",
|
|
446
446
|
type: "commonjs",
|
|
447
447
|
main: "dist/index.js",
|
|
@@ -5774,7 +5774,7 @@ function readAnonId() {
|
|
|
5774
5774
|
}
|
|
5775
5775
|
function superProperties() {
|
|
5776
5776
|
return {
|
|
5777
|
-
cliVersion: true ? "2.23.
|
|
5777
|
+
cliVersion: true ? "2.23.11" : "0.0.0-dev",
|
|
5778
5778
|
nodeVersion: process.version,
|
|
5779
5779
|
platform: process.platform,
|
|
5780
5780
|
arch: process.arch,
|
|
@@ -9657,13 +9657,16 @@ var BANNER_ART_RE = /[█▀▄▌▐▝▘▛▜▙▟▖▗▔▕▮▯▰▱
|
|
|
9657
9657
|
var BANNER_META_RE = /(?:Sonnet|Opus|Haiku|Claude)(?:\s|·|-|\(|$)/i;
|
|
9658
9658
|
function detectStartupBanner(lines) {
|
|
9659
9659
|
for (let i = 0; i + 2 < lines.length; i++) {
|
|
9660
|
-
if (
|
|
9661
|
-
if (
|
|
9660
|
+
if (!/▐▛[█]+▜▌/.test(lines[i])) continue;
|
|
9661
|
+
if (!/▝▜[█]+▛▘/.test(lines[i + 1])) continue;
|
|
9662
9662
|
if (!lines[i + 2].includes("\u2598\u2598")) continue;
|
|
9663
|
+
const inArtTitle = lines[i].replace(/^▐▛[█]+▜▌\s*/, "").trim();
|
|
9664
|
+
const inArtSubtitle = lines[i + 1].replace(/^▝▜[█]+▛▘\s*/, "").trim();
|
|
9665
|
+
const inArtPath = lines[i + 2].replace(/.*▝▝\s*/, "").trim();
|
|
9663
9666
|
return {
|
|
9664
|
-
title: lines[i].
|
|
9665
|
-
subtitle: lines[i + 1].
|
|
9666
|
-
path: lines[i + 2].
|
|
9667
|
+
title: inArtTitle === lines[i].trim() ? "" : inArtTitle,
|
|
9668
|
+
subtitle: inArtSubtitle === lines[i + 1].trim() ? "" : inArtSubtitle,
|
|
9669
|
+
path: inArtPath === lines[i + 2].trim() ? "" : inArtPath,
|
|
9667
9670
|
startIdx: i,
|
|
9668
9671
|
endIdx: i + 2
|
|
9669
9672
|
};
|
|
@@ -16301,6 +16304,18 @@ async function pairAuto(args2) {
|
|
|
16301
16304
|
codespaceName: process.env.CODESPACE_NAME ?? void 0
|
|
16302
16305
|
});
|
|
16303
16306
|
console.log(` Paired with ${claimed.user.name} (${claimed.user.plan})`);
|
|
16307
|
+
if (process.env.CODEAM_SKIP_AGENT_LAUNCH === "true") {
|
|
16308
|
+
capture("pair_auto_skipped_launch", {
|
|
16309
|
+
sessionId: claimed.sessionId,
|
|
16310
|
+
pluginId,
|
|
16311
|
+
agentId: claimed.agent,
|
|
16312
|
+
codespaceName: process.env.CODESPACE_NAME ?? void 0
|
|
16313
|
+
});
|
|
16314
|
+
console.log(
|
|
16315
|
+
" Skipping agent launch \u2014 install an agent from the dashboard to start chatting."
|
|
16316
|
+
);
|
|
16317
|
+
return;
|
|
16318
|
+
}
|
|
16304
16319
|
console.log(" Starting agent loop\u2026");
|
|
16305
16320
|
await start();
|
|
16306
16321
|
}
|
|
@@ -18547,7 +18562,7 @@ function checkChokidar() {
|
|
|
18547
18562
|
}
|
|
18548
18563
|
async function doctor(args2 = []) {
|
|
18549
18564
|
const json = args2.includes("--json");
|
|
18550
|
-
const cliVersion = true ? "2.23.
|
|
18565
|
+
const cliVersion = true ? "2.23.11" : "0.0.0-dev";
|
|
18551
18566
|
const apiBase = resolveApiBaseUrl();
|
|
18552
18567
|
const diagnosticId = (0, import_node_crypto5.randomUUID)();
|
|
18553
18568
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -18746,7 +18761,7 @@ async function completion(args2) {
|
|
|
18746
18761
|
// src/commands/version.ts
|
|
18747
18762
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
18748
18763
|
function version2() {
|
|
18749
|
-
const v = true ? "2.23.
|
|
18764
|
+
const v = true ? "2.23.11" : "unknown";
|
|
18750
18765
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
18751
18766
|
}
|
|
18752
18767
|
|
|
@@ -18974,7 +18989,7 @@ function checkForUpdates() {
|
|
|
18974
18989
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18975
18990
|
if (process.env.CI) return;
|
|
18976
18991
|
if (!process.stdout.isTTY) return;
|
|
18977
|
-
const current = true ? "2.23.
|
|
18992
|
+
const current = true ? "2.23.11" : null;
|
|
18978
18993
|
if (!current) return;
|
|
18979
18994
|
const cache = readCache();
|
|
18980
18995
|
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.23.
|
|
3
|
+
"version": "2.23.11",
|
|
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",
|