codeam-cli 2.60.59 → 2.60.60
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 +8 -8
- package/dist/postinstall.js +33 -0
- 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.60.59] — 2026-07-14
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** Enable Sentry integration (OAuth app registered)
|
|
12
|
+
|
|
7
13
|
## [2.60.58] — 2026-07-14
|
|
8
14
|
|
|
9
15
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -5780,7 +5780,7 @@ function readAnonId() {
|
|
|
5780
5780
|
}
|
|
5781
5781
|
function superProperties() {
|
|
5782
5782
|
return {
|
|
5783
|
-
cliVersion: true ? "2.60.
|
|
5783
|
+
cliVersion: true ? "2.60.60" : "0.0.0-dev",
|
|
5784
5784
|
nodeVersion: process.version,
|
|
5785
5785
|
platform: process.platform,
|
|
5786
5786
|
arch: process.arch,
|
|
@@ -5961,7 +5961,7 @@ var os4 = __toESM(require("os"));
|
|
|
5961
5961
|
// package.json
|
|
5962
5962
|
var package_default = {
|
|
5963
5963
|
name: "codeam-cli",
|
|
5964
|
-
version: "2.60.
|
|
5964
|
+
version: "2.60.60",
|
|
5965
5965
|
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.",
|
|
5966
5966
|
type: "commonjs",
|
|
5967
5967
|
main: "dist/index.js",
|
|
@@ -7070,7 +7070,7 @@ var CommandRelayService = class {
|
|
|
7070
7070
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
7071
7071
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
7072
7072
|
// pair/reconnect). Older backends ignore the extra field.
|
|
7073
|
-
..."2.60.
|
|
7073
|
+
..."2.60.60" ? { ideVersion: "2.60.60" } : {}
|
|
7074
7074
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
7075
7075
|
}
|
|
7076
7076
|
/**
|
|
@@ -17647,7 +17647,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
17647
17647
|
if (process.env.NODE_ENV === "test") return;
|
|
17648
17648
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17649
17649
|
if (process.env.CI) return;
|
|
17650
|
-
const current = true ? "2.60.
|
|
17650
|
+
const current = true ? "2.60.60" : null;
|
|
17651
17651
|
if (!current) return;
|
|
17652
17652
|
const cache = readCache();
|
|
17653
17653
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17664,7 +17664,7 @@ function checkForUpdates() {
|
|
|
17664
17664
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17665
17665
|
if (process.env.CI) return;
|
|
17666
17666
|
if (!process.stdout.isTTY) return;
|
|
17667
|
-
const current = true ? "2.60.
|
|
17667
|
+
const current = true ? "2.60.60" : null;
|
|
17668
17668
|
if (!current) return;
|
|
17669
17669
|
const cache = readCache();
|
|
17670
17670
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17684,7 +17684,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
17684
17684
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
17685
17685
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
17686
17686
|
function currentCliVersion() {
|
|
17687
|
-
return true ? "2.60.
|
|
17687
|
+
return true ? "2.60.60" : null;
|
|
17688
17688
|
}
|
|
17689
17689
|
function runCmd(cmd, args2, timeoutMs) {
|
|
17690
17690
|
return new Promise((resolve7) => {
|
|
@@ -35113,7 +35113,7 @@ function checkChokidar() {
|
|
|
35113
35113
|
}
|
|
35114
35114
|
async function doctor(args2 = []) {
|
|
35115
35115
|
const json = args2.includes("--json");
|
|
35116
|
-
const cliVersion = true ? "2.60.
|
|
35116
|
+
const cliVersion = true ? "2.60.60" : "0.0.0-dev";
|
|
35117
35117
|
const apiBase2 = resolveApiBaseUrl();
|
|
35118
35118
|
const diagnosticId = (0, import_node_crypto12.randomUUID)();
|
|
35119
35119
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -35590,7 +35590,7 @@ async function mcpRun(args2) {
|
|
|
35590
35590
|
// src/commands/version.ts
|
|
35591
35591
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
35592
35592
|
function version2() {
|
|
35593
|
-
const v = true ? "2.60.
|
|
35593
|
+
const v = true ? "2.60.60" : "unknown";
|
|
35594
35594
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
35595
35595
|
}
|
|
35596
35596
|
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
"use strict";
|
|
3
|
+
|
|
4
|
+
// src/postinstall.ts
|
|
5
|
+
var c = {
|
|
6
|
+
reset: "\x1B[0m",
|
|
7
|
+
bold: "\x1B[1m",
|
|
8
|
+
dim: "\x1B[2m",
|
|
9
|
+
green: "\x1B[32m",
|
|
10
|
+
cyan: "\x1B[36m",
|
|
11
|
+
violet: "\x1B[35m",
|
|
12
|
+
white: "\x1B[97m"
|
|
13
|
+
};
|
|
14
|
+
var lines = [
|
|
15
|
+
"",
|
|
16
|
+
` ${c.violet}${c.bold}codeam-cli${c.reset} ${c.dim}\u2014 Claude Code remote control${c.reset}`,
|
|
17
|
+
"",
|
|
18
|
+
` ${c.dim}1.${c.reset} Pair your phone:`,
|
|
19
|
+
` ${c.cyan}codeam pair${c.reset}`,
|
|
20
|
+
"",
|
|
21
|
+
` ${c.dim}2.${c.reset} Launch Claude Code with mobile control:`,
|
|
22
|
+
` ${c.cyan}codeam${c.reset}`,
|
|
23
|
+
"",
|
|
24
|
+
` ${c.dim}Other commands:${c.reset}`,
|
|
25
|
+
` ${c.white}codeam sessions${c.reset} ${c.dim}list paired devices${c.reset}`,
|
|
26
|
+
` ${c.white}codeam status${c.reset} ${c.dim}show connection info${c.reset}`,
|
|
27
|
+
` ${c.white}codeam logout${c.reset} ${c.dim}remove all sessions${c.reset}`,
|
|
28
|
+
"",
|
|
29
|
+
` ${c.dim}Requires Claude Code:${c.reset} ${c.green}npm install -g @anthropic-ai/claude-code${c.reset}`,
|
|
30
|
+
` ${c.dim}Mobile app:${c.reset} ${c.green}https://www.codeagent-mobile.com${c.reset}`,
|
|
31
|
+
""
|
|
32
|
+
];
|
|
33
|
+
process.stdout.write(lines.join("\n") + "\n");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.60.
|
|
3
|
+
"version": "2.60.60",
|
|
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",
|