codeam-cli 2.39.61 → 2.39.63
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 +14 -8
- 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.39.62] — 2026-06-20
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **acp:** Re-seed the welcome into history on resume so a later flush can't drop it
|
|
12
|
+
|
|
13
|
+
## [2.39.61] — 2026-06-20
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- **acp:** Persist the 401 re-auth message in the durable conversation
|
|
18
|
+
|
|
7
19
|
## [2.39.60] — 2026-06-20
|
|
8
20
|
|
|
9
21
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -5388,7 +5388,7 @@ function readAnonId() {
|
|
|
5388
5388
|
}
|
|
5389
5389
|
function superProperties() {
|
|
5390
5390
|
return {
|
|
5391
|
-
cliVersion: true ? "2.39.
|
|
5391
|
+
cliVersion: true ? "2.39.63" : "0.0.0-dev",
|
|
5392
5392
|
nodeVersion: process.version,
|
|
5393
5393
|
platform: process.platform,
|
|
5394
5394
|
arch: process.arch,
|
|
@@ -5547,7 +5547,7 @@ var os4 = __toESM(require("os"));
|
|
|
5547
5547
|
// package.json
|
|
5548
5548
|
var package_default = {
|
|
5549
5549
|
name: "codeam-cli",
|
|
5550
|
-
version: "2.39.
|
|
5550
|
+
version: "2.39.63",
|
|
5551
5551
|
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.",
|
|
5552
5552
|
type: "commonjs",
|
|
5553
5553
|
main: "dist/index.js",
|
|
@@ -17367,7 +17367,7 @@ function checkForUpdates() {
|
|
|
17367
17367
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17368
17368
|
if (process.env.CI) return;
|
|
17369
17369
|
if (!process.stdout.isTTY) return;
|
|
17370
|
-
const current = true ? "2.39.
|
|
17370
|
+
const current = true ? "2.39.63" : null;
|
|
17371
17371
|
if (!current) return;
|
|
17372
17372
|
const cache = readCache();
|
|
17373
17373
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17769,7 +17769,7 @@ var defaultSpawner = (env, cwd, args2 = []) => (0, import_node_child_process13.s
|
|
|
17769
17769
|
detached: false
|
|
17770
17770
|
});
|
|
17771
17771
|
function currentCliVersion() {
|
|
17772
|
-
return true ? "2.39.
|
|
17772
|
+
return true ? "2.39.63" : null;
|
|
17773
17773
|
}
|
|
17774
17774
|
function runCmd(cmd, args2, timeoutMs) {
|
|
17775
17775
|
return new Promise((resolve7) => {
|
|
@@ -22315,7 +22315,13 @@ async function maybeSendOnboardingWelcome(opts) {
|
|
|
22315
22315
|
if (_onboardingSeam.disabled()) return;
|
|
22316
22316
|
const marker = _onboardingSeam.markerPath(opts.sessionId);
|
|
22317
22317
|
try {
|
|
22318
|
-
if (_onboardingSeam.exists(marker))
|
|
22318
|
+
if (_onboardingSeam.exists(marker)) {
|
|
22319
|
+
try {
|
|
22320
|
+
opts.history.appendAgentInitiatedReply(buildOnboardingWelcome(opts.cwd));
|
|
22321
|
+
} catch {
|
|
22322
|
+
}
|
|
22323
|
+
return;
|
|
22324
|
+
}
|
|
22319
22325
|
_onboardingSeam.write(marker);
|
|
22320
22326
|
} catch (err) {
|
|
22321
22327
|
log.trace("acpRunner", `onboarding marker check failed: ${err.message}`);
|
|
@@ -23452,7 +23458,7 @@ var AUTH_FAILURE_RE = /invalid authentication credentials|authentication[_ ]erro
|
|
|
23452
23458
|
function looksLikeAuthFailure(text) {
|
|
23453
23459
|
return AUTH_FAILURE_RE.test(text);
|
|
23454
23460
|
}
|
|
23455
|
-
var AUTH_FAILURE_MESSAGE = "\u{1F512} **Authentication failed \u2014 your agent credentials are invalid or expired (API 401).**\n\
|
|
23461
|
+
var AUTH_FAILURE_MESSAGE = "\u{1F512} **Authentication failed \u2014 your agent credentials are invalid or expired (API 401).**\n\nTap [Re-authenticate this agent](codeam://reauth) to renew your credentials in Profile \u203A Agents, then send your message again.";
|
|
23456
23462
|
async function runAcpSession(opts) {
|
|
23457
23463
|
const publisher = new AcpPublisher({
|
|
23458
23464
|
sessionId: opts.sessionId,
|
|
@@ -28342,7 +28348,7 @@ function checkChokidar() {
|
|
|
28342
28348
|
}
|
|
28343
28349
|
async function doctor(args2 = []) {
|
|
28344
28350
|
const json = args2.includes("--json");
|
|
28345
|
-
const cliVersion = true ? "2.39.
|
|
28351
|
+
const cliVersion = true ? "2.39.63" : "0.0.0-dev";
|
|
28346
28352
|
const apiBase2 = resolveApiBaseUrl();
|
|
28347
28353
|
const diagnosticId = (0, import_node_crypto8.randomUUID)();
|
|
28348
28354
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -28541,7 +28547,7 @@ async function completion(args2) {
|
|
|
28541
28547
|
// src/commands/version.ts
|
|
28542
28548
|
var import_picocolors14 = __toESM(require("picocolors"));
|
|
28543
28549
|
function version2() {
|
|
28544
|
-
const v = true ? "2.39.
|
|
28550
|
+
const v = true ? "2.39.63" : "unknown";
|
|
28545
28551
|
console.log(`${import_picocolors14.default.bold("codeam-cli")} ${import_picocolors14.default.cyan(v)}`);
|
|
28546
28552
|
}
|
|
28547
28553
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.39.
|
|
3
|
+
"version": "2.39.63",
|
|
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",
|