codeam-cli 2.23.4 → 2.23.6
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 +8 -7
- 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.5] — 2026-05-25
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **cli:** Report current git branch on every heartbeat (#193)
|
|
12
|
+
|
|
13
|
+
## [2.23.4] — 2026-05-25
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- **cli+workflow:** Unblock prompt flow + restore PostHog telemetry (#192)
|
|
18
|
+
|
|
7
19
|
## [2.23.3] — 2026-05-25
|
|
8
20
|
|
|
9
21
|
### Fixed
|
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.6",
|
|
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",
|
|
@@ -5768,7 +5768,7 @@ function readAnonId() {
|
|
|
5768
5768
|
}
|
|
5769
5769
|
function superProperties() {
|
|
5770
5770
|
return {
|
|
5771
|
-
cliVersion: true ? "2.23.
|
|
5771
|
+
cliVersion: true ? "2.23.6" : "0.0.0-dev",
|
|
5772
5772
|
nodeVersion: process.version,
|
|
5773
5773
|
platform: process.platform,
|
|
5774
5774
|
arch: process.arch,
|
|
@@ -6131,7 +6131,8 @@ var CommandRelayService = class {
|
|
|
6131
6131
|
await _postJson(`${API_BASE2}/api/plugin/heartbeat`, {
|
|
6132
6132
|
pluginId: this.pluginId,
|
|
6133
6133
|
online,
|
|
6134
|
-
agentId: this.agentMeta.id
|
|
6134
|
+
agentId: this.agentMeta.id,
|
|
6135
|
+
branch: detectCurrentBranch()
|
|
6135
6136
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
6136
6137
|
}
|
|
6137
6138
|
reportAgents() {
|
|
@@ -14234,7 +14235,7 @@ var PROJECT_IGNORE = /* @__PURE__ */ new Set([
|
|
|
14234
14235
|
"__pycache__",
|
|
14235
14236
|
".DS_Store"
|
|
14236
14237
|
]);
|
|
14237
|
-
var MAX_TREE_FILES =
|
|
14238
|
+
var MAX_TREE_FILES = 5e4;
|
|
14238
14239
|
var MAX_DIFF_BYTES = 512 * 1024;
|
|
14239
14240
|
var MAX_GIT_OUTPUT = 256 * 1024;
|
|
14240
14241
|
async function listProjectFiles(opts = {}) {
|
|
@@ -18400,7 +18401,7 @@ function checkChokidar() {
|
|
|
18400
18401
|
}
|
|
18401
18402
|
async function doctor(args2 = []) {
|
|
18402
18403
|
const json = args2.includes("--json");
|
|
18403
|
-
const cliVersion = true ? "2.23.
|
|
18404
|
+
const cliVersion = true ? "2.23.6" : "0.0.0-dev";
|
|
18404
18405
|
const apiBase = resolveApiBaseUrl();
|
|
18405
18406
|
const diagnosticId = (0, import_node_crypto5.randomUUID)();
|
|
18406
18407
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -18599,7 +18600,7 @@ async function completion(args2) {
|
|
|
18599
18600
|
// src/commands/version.ts
|
|
18600
18601
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
18601
18602
|
function version2() {
|
|
18602
|
-
const v = true ? "2.23.
|
|
18603
|
+
const v = true ? "2.23.6" : "unknown";
|
|
18603
18604
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
18604
18605
|
}
|
|
18605
18606
|
|
|
@@ -18827,7 +18828,7 @@ function checkForUpdates() {
|
|
|
18827
18828
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18828
18829
|
if (process.env.CI) return;
|
|
18829
18830
|
if (!process.stdout.isTTY) return;
|
|
18830
|
-
const current = true ? "2.23.
|
|
18831
|
+
const current = true ? "2.23.6" : null;
|
|
18831
18832
|
if (!current) return;
|
|
18832
18833
|
const cache = readCache();
|
|
18833
18834
|
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.6",
|
|
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",
|