codeam-cli 2.60.58 → 2.60.59
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 +13 -12
- package/package.json +1 -1
- package/dist/postinstall.js +0 -33
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.58] — 2026-07-14
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** Register Sentry integration (dark) + BrokeredIntegrationToken.host
|
|
12
|
+
|
|
7
13
|
## [2.60.57] — 2026-07-14
|
|
8
14
|
|
|
9
15
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -524,10 +524,11 @@ var INTEGRATION_REGISTRY = {
|
|
|
524
524
|
id: "sentry",
|
|
525
525
|
name: "Sentry",
|
|
526
526
|
icon: "sentry",
|
|
527
|
-
//
|
|
528
|
-
//
|
|
529
|
-
//
|
|
530
|
-
|
|
527
|
+
// LIVE — the Sentry OAuth Application (Confidential) is registered and
|
|
528
|
+
// SENTRY_OAUTH_CLIENT_ID/SECRET/REDIRECT_URI are in Secret Manager
|
|
529
|
+
// (prod+dev). The backend SentryOAuthProvider is config-gated (503 if
|
|
530
|
+
// env unset) so this is safe even mid-rollout before the secrets mount.
|
|
531
|
+
enabled: true,
|
|
531
532
|
auth: {
|
|
532
533
|
kind: "oauth_redirect",
|
|
533
534
|
// Sentry OAuth scopes for the MCP's read-first surface: read orgs /
|
|
@@ -5779,7 +5780,7 @@ function readAnonId() {
|
|
|
5779
5780
|
}
|
|
5780
5781
|
function superProperties() {
|
|
5781
5782
|
return {
|
|
5782
|
-
cliVersion: true ? "2.60.
|
|
5783
|
+
cliVersion: true ? "2.60.59" : "0.0.0-dev",
|
|
5783
5784
|
nodeVersion: process.version,
|
|
5784
5785
|
platform: process.platform,
|
|
5785
5786
|
arch: process.arch,
|
|
@@ -5960,7 +5961,7 @@ var os4 = __toESM(require("os"));
|
|
|
5960
5961
|
// package.json
|
|
5961
5962
|
var package_default = {
|
|
5962
5963
|
name: "codeam-cli",
|
|
5963
|
-
version: "2.60.
|
|
5964
|
+
version: "2.60.59",
|
|
5964
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.",
|
|
5965
5966
|
type: "commonjs",
|
|
5966
5967
|
main: "dist/index.js",
|
|
@@ -7069,7 +7070,7 @@ var CommandRelayService = class {
|
|
|
7069
7070
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
7070
7071
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
7071
7072
|
// pair/reconnect). Older backends ignore the extra field.
|
|
7072
|
-
..."2.60.
|
|
7073
|
+
..."2.60.59" ? { ideVersion: "2.60.59" } : {}
|
|
7073
7074
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
7074
7075
|
}
|
|
7075
7076
|
/**
|
|
@@ -17646,7 +17647,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
17646
17647
|
if (process.env.NODE_ENV === "test") return;
|
|
17647
17648
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17648
17649
|
if (process.env.CI) return;
|
|
17649
|
-
const current = true ? "2.60.
|
|
17650
|
+
const current = true ? "2.60.59" : null;
|
|
17650
17651
|
if (!current) return;
|
|
17651
17652
|
const cache = readCache();
|
|
17652
17653
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17663,7 +17664,7 @@ function checkForUpdates() {
|
|
|
17663
17664
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17664
17665
|
if (process.env.CI) return;
|
|
17665
17666
|
if (!process.stdout.isTTY) return;
|
|
17666
|
-
const current = true ? "2.60.
|
|
17667
|
+
const current = true ? "2.60.59" : null;
|
|
17667
17668
|
if (!current) return;
|
|
17668
17669
|
const cache = readCache();
|
|
17669
17670
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17683,7 +17684,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
17683
17684
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
17684
17685
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
17685
17686
|
function currentCliVersion() {
|
|
17686
|
-
return true ? "2.60.
|
|
17687
|
+
return true ? "2.60.59" : null;
|
|
17687
17688
|
}
|
|
17688
17689
|
function runCmd(cmd, args2, timeoutMs) {
|
|
17689
17690
|
return new Promise((resolve7) => {
|
|
@@ -35112,7 +35113,7 @@ function checkChokidar() {
|
|
|
35112
35113
|
}
|
|
35113
35114
|
async function doctor(args2 = []) {
|
|
35114
35115
|
const json = args2.includes("--json");
|
|
35115
|
-
const cliVersion = true ? "2.60.
|
|
35116
|
+
const cliVersion = true ? "2.60.59" : "0.0.0-dev";
|
|
35116
35117
|
const apiBase2 = resolveApiBaseUrl();
|
|
35117
35118
|
const diagnosticId = (0, import_node_crypto12.randomUUID)();
|
|
35118
35119
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -35589,7 +35590,7 @@ async function mcpRun(args2) {
|
|
|
35589
35590
|
// src/commands/version.ts
|
|
35590
35591
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
35591
35592
|
function version2() {
|
|
35592
|
-
const v = true ? "2.60.
|
|
35593
|
+
const v = true ? "2.60.59" : "unknown";
|
|
35593
35594
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
35594
35595
|
}
|
|
35595
35596
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.60.
|
|
3
|
+
"version": "2.60.59",
|
|
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",
|
package/dist/postinstall.js
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
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");
|