codeam-cli 2.61.67 → 2.61.68
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 +10 -10
- 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.61.67] — 2026-07-28
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** Cloudflare integration (deployment, OAuth + Cloudflare MCP)
|
|
12
|
+
|
|
7
13
|
## [2.61.66] — 2026-07-28
|
|
8
14
|
|
|
9
15
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -1255,7 +1255,7 @@ var INTEGRATION_REGISTRY = {
|
|
|
1255
1255
|
id: "vercel",
|
|
1256
1256
|
name: "Vercel",
|
|
1257
1257
|
icon: "vercel",
|
|
1258
|
-
category: "
|
|
1258
|
+
category: "infrastructure",
|
|
1259
1259
|
// DARK — OAuth (PKCE public client). The user authorizes our registered
|
|
1260
1260
|
// Vercel OAuth app; the access token calls Vercel's OFFICIAL hosted remote
|
|
1261
1261
|
// MCP (mcp.vercel.com, Streamable HTTP) as a Bearer header — the SAME shim
|
|
@@ -1548,7 +1548,7 @@ var INTEGRATION_REGISTRY = {
|
|
|
1548
1548
|
id: "cloudflare",
|
|
1549
1549
|
name: "Cloudflare",
|
|
1550
1550
|
icon: "cloudflare",
|
|
1551
|
-
category: "
|
|
1551
|
+
category: "infrastructure",
|
|
1552
1552
|
// LIVE — Cloudflare self-managed OAuth (dash.cloudflare.com OAuth server,
|
|
1553
1553
|
// the same one Wrangler uses). Confidential (Client Secret POST). The agent
|
|
1554
1554
|
// inspects/deploys Workers, Pages, DNS, KV, R2 + reads analytics/logs on the
|
|
@@ -7074,7 +7074,7 @@ function readAnonId() {
|
|
|
7074
7074
|
}
|
|
7075
7075
|
function superProperties() {
|
|
7076
7076
|
return {
|
|
7077
|
-
cliVersion: true ? "2.61.
|
|
7077
|
+
cliVersion: true ? "2.61.68" : "0.0.0-dev",
|
|
7078
7078
|
nodeVersion: process.version,
|
|
7079
7079
|
platform: process.platform,
|
|
7080
7080
|
arch: process.arch,
|
|
@@ -7255,7 +7255,7 @@ var os4 = __toESM(require("os"));
|
|
|
7255
7255
|
// package.json
|
|
7256
7256
|
var package_default = {
|
|
7257
7257
|
name: "codeam-cli",
|
|
7258
|
-
version: "2.61.
|
|
7258
|
+
version: "2.61.68",
|
|
7259
7259
|
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.",
|
|
7260
7260
|
type: "commonjs",
|
|
7261
7261
|
main: "dist/index.js",
|
|
@@ -8427,7 +8427,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
8427
8427
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
8428
8428
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
8429
8429
|
// pair/reconnect). Older backends ignore the extra field.
|
|
8430
|
-
..."2.61.
|
|
8430
|
+
..."2.61.68" ? { ideVersion: "2.61.68" } : {}
|
|
8431
8431
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
8432
8432
|
}
|
|
8433
8433
|
/**
|
|
@@ -19536,7 +19536,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
19536
19536
|
if (process.env.NODE_ENV === "test") return;
|
|
19537
19537
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
19538
19538
|
if (process.env.CI) return;
|
|
19539
|
-
const current = true ? "2.61.
|
|
19539
|
+
const current = true ? "2.61.68" : null;
|
|
19540
19540
|
if (!current) return;
|
|
19541
19541
|
const cache = readCache();
|
|
19542
19542
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -19553,7 +19553,7 @@ function checkForUpdates() {
|
|
|
19553
19553
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
19554
19554
|
if (process.env.CI) return;
|
|
19555
19555
|
if (!process.stdout.isTTY) return;
|
|
19556
|
-
const current = true ? "2.61.
|
|
19556
|
+
const current = true ? "2.61.68" : null;
|
|
19557
19557
|
if (!current) return;
|
|
19558
19558
|
const cache = readCache();
|
|
19559
19559
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -19573,7 +19573,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
19573
19573
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
19574
19574
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
19575
19575
|
function currentCliVersion() {
|
|
19576
|
-
return true ? "2.61.
|
|
19576
|
+
return true ? "2.61.68" : null;
|
|
19577
19577
|
}
|
|
19578
19578
|
function runCmd(cmd, args2, timeoutMs) {
|
|
19579
19579
|
return new Promise((resolve8) => {
|
|
@@ -39812,7 +39812,7 @@ function checkChokidar() {
|
|
|
39812
39812
|
}
|
|
39813
39813
|
async function doctor(args2 = []) {
|
|
39814
39814
|
const json = args2.includes("--json");
|
|
39815
|
-
const cliVersion = true ? "2.61.
|
|
39815
|
+
const cliVersion = true ? "2.61.68" : "0.0.0-dev";
|
|
39816
39816
|
const apiBase2 = resolveApiBaseUrl();
|
|
39817
39817
|
const diagnosticId = (0, import_node_crypto13.randomUUID)();
|
|
39818
39818
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -40334,7 +40334,7 @@ async function mcpRun(args2) {
|
|
|
40334
40334
|
// src/commands/version.ts
|
|
40335
40335
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
40336
40336
|
function version2() {
|
|
40337
|
-
const v = true ? "2.61.
|
|
40337
|
+
const v = true ? "2.61.68" : "unknown";
|
|
40338
40338
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
40339
40339
|
}
|
|
40340
40340
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.68",
|
|
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",
|