codeam-cli 2.39.7 → 2.39.8
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 +7 -6
- 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.39.7] — 2026-06-13
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **cli:** Hardcode the onboarding welcome (no agent round-trip) + keep beads gate
|
|
12
|
+
|
|
7
13
|
## [2.39.6] — 2026-06-13
|
|
8
14
|
|
|
9
15
|
### 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.39.
|
|
501
|
+
version: "2.39.8",
|
|
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",
|
|
@@ -5900,7 +5900,7 @@ function readAnonId() {
|
|
|
5900
5900
|
}
|
|
5901
5901
|
function superProperties() {
|
|
5902
5902
|
return {
|
|
5903
|
-
cliVersion: true ? "2.39.
|
|
5903
|
+
cliVersion: true ? "2.39.8" : "0.0.0-dev",
|
|
5904
5904
|
nodeVersion: process.version,
|
|
5905
5905
|
platform: process.platform,
|
|
5906
5906
|
arch: process.arch,
|
|
@@ -18375,7 +18375,7 @@ var BeadsWatcher = class {
|
|
|
18375
18375
|
constructor(opts) {
|
|
18376
18376
|
this.opts = opts;
|
|
18377
18377
|
this.bd = opts.adapter ?? new BdAdapter({ cwd: opts.cwd, beadsDir: opts.beadsDir });
|
|
18378
|
-
this.feedPath = opts.feedPath ?? path40.join(opts.cwd ?? process.cwd(), ".beads", "
|
|
18378
|
+
this.feedPath = opts.feedPath ?? path40.join(opts.cwd ?? process.cwd(), ".beads", "last-touched");
|
|
18379
18379
|
this.apiBase = opts.apiBaseUrl ?? API_BASE4;
|
|
18380
18380
|
}
|
|
18381
18381
|
opts;
|
|
@@ -18408,6 +18408,7 @@ var BeadsWatcher = class {
|
|
|
18408
18408
|
);
|
|
18409
18409
|
this.watcher = watcher;
|
|
18410
18410
|
log.info("beads", `watching ${this.feedPath} for session=${this.opts.sessionId.slice(0, 8)}`);
|
|
18411
|
+
void this.syncNow();
|
|
18411
18412
|
}
|
|
18412
18413
|
async stop() {
|
|
18413
18414
|
if (this.stopped) return;
|
|
@@ -26731,7 +26732,7 @@ function checkChokidar() {
|
|
|
26731
26732
|
}
|
|
26732
26733
|
async function doctor(args2 = []) {
|
|
26733
26734
|
const json = args2.includes("--json");
|
|
26734
|
-
const cliVersion = true ? "2.39.
|
|
26735
|
+
const cliVersion = true ? "2.39.8" : "0.0.0-dev";
|
|
26735
26736
|
const apiBase = resolveApiBaseUrl();
|
|
26736
26737
|
const diagnosticId = (0, import_node_crypto8.randomUUID)();
|
|
26737
26738
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -26930,7 +26931,7 @@ async function completion(args2) {
|
|
|
26930
26931
|
// src/commands/version.ts
|
|
26931
26932
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
26932
26933
|
function version2() {
|
|
26933
|
-
const v = true ? "2.39.
|
|
26934
|
+
const v = true ? "2.39.8" : "unknown";
|
|
26934
26935
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
26935
26936
|
}
|
|
26936
26937
|
|
|
@@ -27216,7 +27217,7 @@ function checkForUpdates() {
|
|
|
27216
27217
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
27217
27218
|
if (process.env.CI) return;
|
|
27218
27219
|
if (!process.stdout.isTTY) return;
|
|
27219
|
-
const current = true ? "2.39.
|
|
27220
|
+
const current = true ? "2.39.8" : null;
|
|
27220
27221
|
if (!current) return;
|
|
27221
27222
|
const cache = readCache();
|
|
27222
27223
|
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.8",
|
|
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",
|