codeam-cli 2.23.5 → 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 +6 -0
- package/dist/index.js +6 -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.23.5] — 2026-05-25
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **cli:** Report current git branch on every heartbeat (#193)
|
|
12
|
+
|
|
7
13
|
## [2.23.4] — 2026-05-25
|
|
8
14
|
|
|
9
15
|
### 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,
|
|
@@ -14235,7 +14235,7 @@ var PROJECT_IGNORE = /* @__PURE__ */ new Set([
|
|
|
14235
14235
|
"__pycache__",
|
|
14236
14236
|
".DS_Store"
|
|
14237
14237
|
]);
|
|
14238
|
-
var MAX_TREE_FILES =
|
|
14238
|
+
var MAX_TREE_FILES = 5e4;
|
|
14239
14239
|
var MAX_DIFF_BYTES = 512 * 1024;
|
|
14240
14240
|
var MAX_GIT_OUTPUT = 256 * 1024;
|
|
14241
14241
|
async function listProjectFiles(opts = {}) {
|
|
@@ -18401,7 +18401,7 @@ function checkChokidar() {
|
|
|
18401
18401
|
}
|
|
18402
18402
|
async function doctor(args2 = []) {
|
|
18403
18403
|
const json = args2.includes("--json");
|
|
18404
|
-
const cliVersion = true ? "2.23.
|
|
18404
|
+
const cliVersion = true ? "2.23.6" : "0.0.0-dev";
|
|
18405
18405
|
const apiBase = resolveApiBaseUrl();
|
|
18406
18406
|
const diagnosticId = (0, import_node_crypto5.randomUUID)();
|
|
18407
18407
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -18600,7 +18600,7 @@ async function completion(args2) {
|
|
|
18600
18600
|
// src/commands/version.ts
|
|
18601
18601
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
18602
18602
|
function version2() {
|
|
18603
|
-
const v = true ? "2.23.
|
|
18603
|
+
const v = true ? "2.23.6" : "unknown";
|
|
18604
18604
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
18605
18605
|
}
|
|
18606
18606
|
|
|
@@ -18828,7 +18828,7 @@ function checkForUpdates() {
|
|
|
18828
18828
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18829
18829
|
if (process.env.CI) return;
|
|
18830
18830
|
if (!process.stdout.isTTY) return;
|
|
18831
|
-
const current = true ? "2.23.
|
|
18831
|
+
const current = true ? "2.23.6" : null;
|
|
18832
18832
|
if (!current) return;
|
|
18833
18833
|
const cache = readCache();
|
|
18834
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",
|