codeam-cli 2.32.0 → 2.32.1
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/dist/index.js +14 -6
- package/package.json +1 -1
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.32.
|
|
501
|
+
version: "2.32.1",
|
|
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",
|
|
@@ -5869,7 +5869,7 @@ function readAnonId() {
|
|
|
5869
5869
|
}
|
|
5870
5870
|
function superProperties() {
|
|
5871
5871
|
return {
|
|
5872
|
-
cliVersion: true ? "2.32.
|
|
5872
|
+
cliVersion: true ? "2.32.1" : "0.0.0-dev",
|
|
5873
5873
|
nodeVersion: process.version,
|
|
5874
5874
|
platform: process.platform,
|
|
5875
5875
|
arch: process.arch,
|
|
@@ -12061,7 +12061,15 @@ var REGISTRY = {
|
|
|
12061
12061
|
// resolved from PATH at spawn time instead of being absolute.
|
|
12062
12062
|
gemini: () => ({
|
|
12063
12063
|
command: "gemini",
|
|
12064
|
-
|
|
12064
|
+
// `--skip-trust` bypasses Gemini's headless-mode workspace-trust
|
|
12065
|
+
// gate. Without it the CLI refuses to start in `--acp` mode with
|
|
12066
|
+
// "Gemini CLI is not running in a trusted directory" and the
|
|
12067
|
+
// ACP newSession call never returns, leaving mobile chat stuck
|
|
12068
|
+
// on "thinking…" forever. The equivalent env var is
|
|
12069
|
+
// `GEMINI_CLI_TRUST_WORKSPACE=true`; passing the flag is
|
|
12070
|
+
// cleaner because it survives whatever shell env the parent
|
|
12071
|
+
// codeam was launched from.
|
|
12072
|
+
args: ["--skip-trust", "--acp"],
|
|
12065
12073
|
requiresAgentBinary: "gemini"
|
|
12066
12074
|
})
|
|
12067
12075
|
};
|
|
@@ -24907,7 +24915,7 @@ function checkChokidar() {
|
|
|
24907
24915
|
}
|
|
24908
24916
|
async function doctor(args2 = []) {
|
|
24909
24917
|
const json = args2.includes("--json");
|
|
24910
|
-
const cliVersion = true ? "2.32.
|
|
24918
|
+
const cliVersion = true ? "2.32.1" : "0.0.0-dev";
|
|
24911
24919
|
const apiBase = resolveApiBaseUrl();
|
|
24912
24920
|
const diagnosticId = (0, import_node_crypto8.randomUUID)();
|
|
24913
24921
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -25106,7 +25114,7 @@ async function completion(args2) {
|
|
|
25106
25114
|
// src/commands/version.ts
|
|
25107
25115
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
25108
25116
|
function version2() {
|
|
25109
|
-
const v = true ? "2.32.
|
|
25117
|
+
const v = true ? "2.32.1" : "unknown";
|
|
25110
25118
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
25111
25119
|
}
|
|
25112
25120
|
|
|
@@ -25392,7 +25400,7 @@ function checkForUpdates() {
|
|
|
25392
25400
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
25393
25401
|
if (process.env.CI) return;
|
|
25394
25402
|
if (!process.stdout.isTTY) return;
|
|
25395
|
-
const current = true ? "2.32.
|
|
25403
|
+
const current = true ? "2.32.1" : null;
|
|
25396
25404
|
if (!current) return;
|
|
25397
25405
|
const cache = readCache();
|
|
25398
25406
|
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.32.
|
|
3
|
+
"version": "2.32.1",
|
|
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",
|