codeam-cli 2.10.5 → 2.10.7
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 +3 -9
- 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.10.6] — 2026-05-11
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **jetbrains-plugin,vsc-plugin:** Install_cli_and_pair command
|
|
12
|
+
|
|
13
|
+
## [2.10.5] — 2026-05-11
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- **jetbrains-plugin:** Render tables, code blocks and diffs from AI Assistant
|
|
18
|
+
|
|
7
19
|
## [2.10.4] — 2026-05-11
|
|
8
20
|
|
|
9
21
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -1477,7 +1477,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
1477
1477
|
// package.json
|
|
1478
1478
|
var package_default = {
|
|
1479
1479
|
name: "codeam-cli",
|
|
1480
|
-
version: "2.10.
|
|
1480
|
+
version: "2.10.7",
|
|
1481
1481
|
description: "Remote control Claude Code (and other AI coding agents) from your mobile phone. Pair your device, send prompts, stream responses in real-time, and approve commands \u2014 from anywhere.",
|
|
1482
1482
|
type: "commonjs",
|
|
1483
1483
|
main: "dist/index.js",
|
|
@@ -6914,14 +6914,8 @@ async function start() {
|
|
|
6914
6914
|
await outputSvc.startTerminalTurn();
|
|
6915
6915
|
relay.start();
|
|
6916
6916
|
setTimeout(() => {
|
|
6917
|
-
historySvc.detectCurrentConversation();
|
|
6918
6917
|
historySvc.load().catch(() => {
|
|
6919
6918
|
});
|
|
6920
|
-
const currentId = historySvc.getCurrentConversationId();
|
|
6921
|
-
if (currentId) {
|
|
6922
|
-
historySvc.loadConversation(currentId).catch(() => {
|
|
6923
|
-
});
|
|
6924
|
-
}
|
|
6925
6919
|
}, 2e3);
|
|
6926
6920
|
setTimeout(() => fetchQuotaUsage(historySvc), 5e3);
|
|
6927
6921
|
}
|
|
@@ -9321,7 +9315,7 @@ async function stopWorkspaceFromLocal(target) {
|
|
|
9321
9315
|
// src/commands/version.ts
|
|
9322
9316
|
var import_picocolors11 = __toESM(require("picocolors"));
|
|
9323
9317
|
function version() {
|
|
9324
|
-
const v = true ? "2.10.
|
|
9318
|
+
const v = true ? "2.10.7" : "unknown";
|
|
9325
9319
|
console.log(`${import_picocolors11.default.bold("codeam-cli")} ${import_picocolors11.default.cyan(v)}`);
|
|
9326
9320
|
}
|
|
9327
9321
|
|
|
@@ -9456,7 +9450,7 @@ function checkForUpdates() {
|
|
|
9456
9450
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
9457
9451
|
if (process.env.CI) return;
|
|
9458
9452
|
if (!process.stdout.isTTY) return;
|
|
9459
|
-
const current = true ? "2.10.
|
|
9453
|
+
const current = true ? "2.10.7" : null;
|
|
9460
9454
|
if (!current) return;
|
|
9461
9455
|
const cache = readCache();
|
|
9462
9456
|
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.10.
|
|
3
|
+
"version": "2.10.7",
|
|
4
4
|
"description": "Remote control Claude Code (and other AI coding agents) from your mobile phone. Pair your device, send prompts, stream responses in real-time, and approve commands — from anywhere.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "dist/index.js",
|