codeam-cli 2.43.4 → 2.43.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 +6 -0
- package/dist/index.js +23 -8
- 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.43.4] — 2026-06-25
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **cli:** Codex conversation resume loads the transcript (per-agent history)
|
|
12
|
+
|
|
7
13
|
## [2.43.3] — 2026-06-25
|
|
8
14
|
|
|
9
15
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -5397,7 +5397,7 @@ function readAnonId() {
|
|
|
5397
5397
|
}
|
|
5398
5398
|
function superProperties() {
|
|
5399
5399
|
return {
|
|
5400
|
-
cliVersion: true ? "2.43.
|
|
5400
|
+
cliVersion: true ? "2.43.5" : "0.0.0-dev",
|
|
5401
5401
|
nodeVersion: process.version,
|
|
5402
5402
|
platform: process.platform,
|
|
5403
5403
|
arch: process.arch,
|
|
@@ -5578,7 +5578,7 @@ var os4 = __toESM(require("os"));
|
|
|
5578
5578
|
// package.json
|
|
5579
5579
|
var package_default = {
|
|
5580
5580
|
name: "codeam-cli",
|
|
5581
|
-
version: "2.43.
|
|
5581
|
+
version: "2.43.5",
|
|
5582
5582
|
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.",
|
|
5583
5583
|
type: "commonjs",
|
|
5584
5584
|
main: "dist/index.js",
|
|
@@ -17463,9 +17463,24 @@ var codexProvisioner = {
|
|
|
17463
17463
|
return {};
|
|
17464
17464
|
}
|
|
17465
17465
|
};
|
|
17466
|
+
var geminiProvisioner = {
|
|
17467
|
+
write(auth, home) {
|
|
17468
|
+
const settingsJson = path43.join(home, ".gemini", "settings.json");
|
|
17469
|
+
const oauthCreds = path43.join(home, ".gemini", "oauth_creds.json");
|
|
17470
|
+
if (auth.kind === "api_key") {
|
|
17471
|
+
rmIfExists(oauthCreds);
|
|
17472
|
+
writeFile0600(settingsJson, '{"security":{"auth":{"selectedType":"gemini-api-key"}}}');
|
|
17473
|
+
return { GEMINI_API_KEY: auth.value };
|
|
17474
|
+
}
|
|
17475
|
+
writeFile0600(oauthCreds, auth.value);
|
|
17476
|
+
writeFile0600(settingsJson, '{"security":{"auth":{"selectedType":"oauth-personal"}}}');
|
|
17477
|
+
return {};
|
|
17478
|
+
}
|
|
17479
|
+
};
|
|
17466
17480
|
var PROVISIONERS = {
|
|
17467
17481
|
claude: claudeProvisioner,
|
|
17468
|
-
codex: codexProvisioner
|
|
17482
|
+
codex: codexProvisioner,
|
|
17483
|
+
gemini: geminiProvisioner
|
|
17469
17484
|
};
|
|
17470
17485
|
var UnsupportedAgentError = class extends Error {
|
|
17471
17486
|
agentId;
|
|
@@ -17884,7 +17899,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
17884
17899
|
if (process.env.NODE_ENV === "test") return;
|
|
17885
17900
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17886
17901
|
if (process.env.CI) return;
|
|
17887
|
-
const current = true ? "2.43.
|
|
17902
|
+
const current = true ? "2.43.5" : null;
|
|
17888
17903
|
if (!current) return;
|
|
17889
17904
|
const cache = readCache();
|
|
17890
17905
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17901,7 +17916,7 @@ function checkForUpdates() {
|
|
|
17901
17916
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17902
17917
|
if (process.env.CI) return;
|
|
17903
17918
|
if (!process.stdout.isTTY) return;
|
|
17904
|
-
const current = true ? "2.43.
|
|
17919
|
+
const current = true ? "2.43.5" : null;
|
|
17905
17920
|
if (!current) return;
|
|
17906
17921
|
const cache = readCache();
|
|
17907
17922
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -18339,7 +18354,7 @@ var defaultSpawner = (env, cwd, args2 = []) => (0, import_node_child_process14.s
|
|
|
18339
18354
|
detached: false
|
|
18340
18355
|
});
|
|
18341
18356
|
function currentCliVersion() {
|
|
18342
|
-
return true ? "2.43.
|
|
18357
|
+
return true ? "2.43.5" : null;
|
|
18343
18358
|
}
|
|
18344
18359
|
function runCmd(cmd, args2, timeoutMs) {
|
|
18345
18360
|
return new Promise((resolve7) => {
|
|
@@ -29500,7 +29515,7 @@ function checkChokidar() {
|
|
|
29500
29515
|
}
|
|
29501
29516
|
async function doctor(args2 = []) {
|
|
29502
29517
|
const json = args2.includes("--json");
|
|
29503
|
-
const cliVersion = true ? "2.43.
|
|
29518
|
+
const cliVersion = true ? "2.43.5" : "0.0.0-dev";
|
|
29504
29519
|
const apiBase2 = resolveApiBaseUrl();
|
|
29505
29520
|
const diagnosticId = (0, import_node_crypto8.randomUUID)();
|
|
29506
29521
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -29699,7 +29714,7 @@ async function completion(args2) {
|
|
|
29699
29714
|
// src/commands/version.ts
|
|
29700
29715
|
var import_picocolors14 = __toESM(require("picocolors"));
|
|
29701
29716
|
function version2() {
|
|
29702
|
-
const v = true ? "2.43.
|
|
29717
|
+
const v = true ? "2.43.5" : "unknown";
|
|
29703
29718
|
console.log(`${import_picocolors14.default.bold("codeam-cli")} ${import_picocolors14.default.cyan(v)}`);
|
|
29704
29719
|
}
|
|
29705
29720
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.43.
|
|
3
|
+
"version": "2.43.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",
|