codeam-cli 2.5.1 → 2.5.2
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 +4 -3
- package/package.json +1 -1
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.5.
|
|
1480
|
+
version: "2.5.2",
|
|
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",
|
|
@@ -6901,6 +6901,7 @@ async function start() {
|
|
|
6901
6901
|
}
|
|
6902
6902
|
process.once("SIGINT", sigintHandler);
|
|
6903
6903
|
await claude.spawn();
|
|
6904
|
+
await outputSvc.startTerminalTurn();
|
|
6904
6905
|
relay.start();
|
|
6905
6906
|
setTimeout(() => {
|
|
6906
6907
|
historySvc.detectCurrentConversation();
|
|
@@ -9228,7 +9229,7 @@ async function stopWorkspaceFromLocal(target) {
|
|
|
9228
9229
|
// src/commands/version.ts
|
|
9229
9230
|
var import_picocolors11 = __toESM(require("picocolors"));
|
|
9230
9231
|
function version() {
|
|
9231
|
-
const v = true ? "2.5.
|
|
9232
|
+
const v = true ? "2.5.2" : "unknown";
|
|
9232
9233
|
console.log(`${import_picocolors11.default.bold("codeam-cli")} ${import_picocolors11.default.cyan(v)}`);
|
|
9233
9234
|
}
|
|
9234
9235
|
|
|
@@ -9363,7 +9364,7 @@ function checkForUpdates() {
|
|
|
9363
9364
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
9364
9365
|
if (process.env.CI) return;
|
|
9365
9366
|
if (!process.stdout.isTTY) return;
|
|
9366
|
-
const current = true ? "2.5.
|
|
9367
|
+
const current = true ? "2.5.2" : null;
|
|
9367
9368
|
if (!current) return;
|
|
9368
9369
|
const cache = readCache();
|
|
9369
9370
|
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.5.
|
|
3
|
+
"version": "2.5.2",
|
|
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",
|