codeam-cli 2.27.4 → 2.27.5
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 +27 -15
- package/package.json +1 -2
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.27.4] — 2026-06-06
|
|
8
|
+
|
|
9
|
+
### Tests
|
|
10
|
+
|
|
11
|
+
- **cli:** Fix gemini local-token tests on Windows
|
|
12
|
+
|
|
13
|
+
## [2.27.3] — 2026-06-06
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- **cli:** Finish e2e Gemini support — link flow + runtime
|
|
18
|
+
|
|
7
19
|
## [2.27.2] — 2026-06-06
|
|
8
20
|
|
|
9
21
|
### Added
|
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.27.
|
|
501
|
+
version: "2.27.5",
|
|
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",
|
|
@@ -573,7 +573,6 @@ var package_default = {
|
|
|
573
573
|
"@agentclientprotocol/sdk": "^0.25.0",
|
|
574
574
|
"@clack/prompts": "^1.2.0",
|
|
575
575
|
chokidar: "^3.6.0",
|
|
576
|
-
"cursor-agent-acp": "^0.1.1",
|
|
577
576
|
picocolors: "^1.1.0",
|
|
578
577
|
"qrcode-terminal": "^0.12.0",
|
|
579
578
|
which: "^5.0.0",
|
|
@@ -5874,7 +5873,7 @@ function readAnonId() {
|
|
|
5874
5873
|
}
|
|
5875
5874
|
function superProperties() {
|
|
5876
5875
|
return {
|
|
5877
|
-
cliVersion: true ? "2.27.
|
|
5876
|
+
cliVersion: true ? "2.27.5" : "0.0.0-dev",
|
|
5878
5877
|
nodeVersion: process.version,
|
|
5879
5878
|
platform: process.platform,
|
|
5880
5879
|
arch: process.arch,
|
|
@@ -12013,15 +12012,28 @@ var REGISTRY = {
|
|
|
12013
12012
|
requiresAgentBinary: "codex"
|
|
12014
12013
|
};
|
|
12015
12014
|
},
|
|
12016
|
-
|
|
12017
|
-
|
|
12018
|
-
|
|
12019
|
-
|
|
12020
|
-
|
|
12021
|
-
|
|
12022
|
-
|
|
12023
|
-
|
|
12024
|
-
|
|
12015
|
+
// Cursor is intentionally NOT bundled right now. The only published
|
|
12016
|
+
// ACP adapter (`cursor-agent-acp@0.1.1`) still depends on the
|
|
12017
|
+
// deprecated `@zed-industries/agent-client-protocol` SDK; pulling it
|
|
12018
|
+
// back into the install would surface the deprecation warning to
|
|
12019
|
+
// every user of `codeam-cli`. The community forks (`cursor-acp`,
|
|
12020
|
+
// `fzx-cursor-acp`) use the current `@agentclientprotocol/sdk` but
|
|
12021
|
+
// are single-maintainer with no security track record we trust to
|
|
12022
|
+
// auto-bundle.
|
|
12023
|
+
//
|
|
12024
|
+
// Re-add this entry the moment an `@agentclientprotocol/cursor-acp`
|
|
12025
|
+
// ships under the official namespace, or upstream cursor-agent-acp
|
|
12026
|
+
// publishes a release that uses the new SDK:
|
|
12027
|
+
//
|
|
12028
|
+
// cursor: () => {
|
|
12029
|
+
// const bin = resolveBin('@agentclientprotocol/cursor-acp', 'cursor-acp');
|
|
12030
|
+
// if (!bin) return null;
|
|
12031
|
+
// return { command: process.execPath, args: [bin], requiresAgentBinary: 'cursor-agent' };
|
|
12032
|
+
// },
|
|
12033
|
+
//
|
|
12034
|
+
// Until then `getAcpAdapter('cursor')` returns null and the dispatch
|
|
12035
|
+
// in start.ts falls back to the legacy PTY runtime — same behaviour
|
|
12036
|
+
// cursor users had before ACP was added.
|
|
12025
12037
|
// Gemini speaks ACP natively via `gemini --acp` — no npm adapter
|
|
12026
12038
|
// package, just the user-installed `gemini` binary on PATH. Same
|
|
12027
12039
|
// {@link AdapterSpec} shape; the only difference is `command` is
|
|
@@ -21120,7 +21132,7 @@ function checkChokidar() {
|
|
|
21120
21132
|
}
|
|
21121
21133
|
async function doctor(args2 = []) {
|
|
21122
21134
|
const json = args2.includes("--json");
|
|
21123
|
-
const cliVersion = true ? "2.27.
|
|
21135
|
+
const cliVersion = true ? "2.27.5" : "0.0.0-dev";
|
|
21124
21136
|
const apiBase = resolveApiBaseUrl();
|
|
21125
21137
|
const diagnosticId = (0, import_node_crypto8.randomUUID)();
|
|
21126
21138
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -21319,7 +21331,7 @@ async function completion(args2) {
|
|
|
21319
21331
|
// src/commands/version.ts
|
|
21320
21332
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
21321
21333
|
function version2() {
|
|
21322
|
-
const v = true ? "2.27.
|
|
21334
|
+
const v = true ? "2.27.5" : "unknown";
|
|
21323
21335
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
21324
21336
|
}
|
|
21325
21337
|
|
|
@@ -21547,7 +21559,7 @@ function checkForUpdates() {
|
|
|
21547
21559
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
21548
21560
|
if (process.env.CI) return;
|
|
21549
21561
|
if (!process.stdout.isTTY) return;
|
|
21550
|
-
const current = true ? "2.27.
|
|
21562
|
+
const current = true ? "2.27.5" : null;
|
|
21551
21563
|
if (!current) return;
|
|
21552
21564
|
const cache = readCache();
|
|
21553
21565
|
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.27.
|
|
3
|
+
"version": "2.27.5",
|
|
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",
|
|
@@ -75,7 +75,6 @@
|
|
|
75
75
|
"@agentclientprotocol/sdk": "^0.25.0",
|
|
76
76
|
"@clack/prompts": "^1.2.0",
|
|
77
77
|
"chokidar": "^3.6.0",
|
|
78
|
-
"cursor-agent-acp": "^0.1.1",
|
|
79
78
|
"picocolors": "^1.1.0",
|
|
80
79
|
"qrcode-terminal": "^0.12.0",
|
|
81
80
|
"which": "^5.0.0",
|