codeam-cli 2.61.63 → 2.61.64
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 +36 -8
- 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.63] — 2026-07-28
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** Supabase integration (database, OAuth)
|
|
12
|
+
|
|
7
13
|
## [2.61.62] — 2026-07-28
|
|
8
14
|
|
|
9
15
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -1466,6 +1466,34 @@ var INTEGRATION_REGISTRY = {
|
|
|
1466
1466
|
}
|
|
1467
1467
|
}
|
|
1468
1468
|
}
|
|
1469
|
+
},
|
|
1470
|
+
confluence: {
|
|
1471
|
+
id: "confluence",
|
|
1472
|
+
name: "Confluence",
|
|
1473
|
+
icon: "confluence",
|
|
1474
|
+
category: "docs",
|
|
1475
|
+
// Confluence is served by the SAME Atlassian OAuth + the SAME `mcp-atlassian`
|
|
1476
|
+
// server as Jira (the `jira` entry already requests Confluence scopes). This
|
|
1477
|
+
// entry is a DISPLAY ALIAS so Confluence is explicit in the Knowledge tab: it
|
|
1478
|
+
// BORROWS jira's vaulted credential (`aliasOf: 'jira'`) and has no link flow of
|
|
1479
|
+
// its own — connecting Atlassian (the Jira/Atlassian card) lights it up, and
|
|
1480
|
+
// the backend resolves its token by delegating to `jira`.
|
|
1481
|
+
enabled: true,
|
|
1482
|
+
auth: { kind: "derived", aliasOf: "jira" },
|
|
1483
|
+
delivery: {
|
|
1484
|
+
mcp: {
|
|
1485
|
+
// Same mcp-atlassian server + BYO-token env as Jira — it exposes the
|
|
1486
|
+
// Confluence tools when the deploy selects Confluence without Jira. If
|
|
1487
|
+
// BOTH are selected the deploy manifest dedupes identical MCP specs.
|
|
1488
|
+
command: "uvx",
|
|
1489
|
+
args: ["mcp-atlassian==0.22.1"],
|
|
1490
|
+
envMapping: {
|
|
1491
|
+
ATLASSIAN_OAUTH_ACCESS_TOKEN: "accessToken",
|
|
1492
|
+
ATLASSIAN_OAUTH_CLOUD_ID: "cloudId"
|
|
1493
|
+
},
|
|
1494
|
+
staticEnv: { ATLASSIAN_OAUTH_ENABLE: "true" }
|
|
1495
|
+
}
|
|
1496
|
+
}
|
|
1469
1497
|
}
|
|
1470
1498
|
};
|
|
1471
1499
|
function getIntegration(id) {
|
|
@@ -6911,7 +6939,7 @@ function readAnonId() {
|
|
|
6911
6939
|
}
|
|
6912
6940
|
function superProperties() {
|
|
6913
6941
|
return {
|
|
6914
|
-
cliVersion: true ? "2.61.
|
|
6942
|
+
cliVersion: true ? "2.61.64" : "0.0.0-dev",
|
|
6915
6943
|
nodeVersion: process.version,
|
|
6916
6944
|
platform: process.platform,
|
|
6917
6945
|
arch: process.arch,
|
|
@@ -7092,7 +7120,7 @@ var os4 = __toESM(require("os"));
|
|
|
7092
7120
|
// package.json
|
|
7093
7121
|
var package_default = {
|
|
7094
7122
|
name: "codeam-cli",
|
|
7095
|
-
version: "2.61.
|
|
7123
|
+
version: "2.61.64",
|
|
7096
7124
|
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.",
|
|
7097
7125
|
type: "commonjs",
|
|
7098
7126
|
main: "dist/index.js",
|
|
@@ -8264,7 +8292,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
8264
8292
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
8265
8293
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
8266
8294
|
// pair/reconnect). Older backends ignore the extra field.
|
|
8267
|
-
..."2.61.
|
|
8295
|
+
..."2.61.64" ? { ideVersion: "2.61.64" } : {}
|
|
8268
8296
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
8269
8297
|
}
|
|
8270
8298
|
/**
|
|
@@ -19373,7 +19401,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
19373
19401
|
if (process.env.NODE_ENV === "test") return;
|
|
19374
19402
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
19375
19403
|
if (process.env.CI) return;
|
|
19376
|
-
const current = true ? "2.61.
|
|
19404
|
+
const current = true ? "2.61.64" : null;
|
|
19377
19405
|
if (!current) return;
|
|
19378
19406
|
const cache = readCache();
|
|
19379
19407
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -19390,7 +19418,7 @@ function checkForUpdates() {
|
|
|
19390
19418
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
19391
19419
|
if (process.env.CI) return;
|
|
19392
19420
|
if (!process.stdout.isTTY) return;
|
|
19393
|
-
const current = true ? "2.61.
|
|
19421
|
+
const current = true ? "2.61.64" : null;
|
|
19394
19422
|
if (!current) return;
|
|
19395
19423
|
const cache = readCache();
|
|
19396
19424
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -19410,7 +19438,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
19410
19438
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
19411
19439
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
19412
19440
|
function currentCliVersion() {
|
|
19413
|
-
return true ? "2.61.
|
|
19441
|
+
return true ? "2.61.64" : null;
|
|
19414
19442
|
}
|
|
19415
19443
|
function runCmd(cmd, args2, timeoutMs) {
|
|
19416
19444
|
return new Promise((resolve8) => {
|
|
@@ -39649,7 +39677,7 @@ function checkChokidar() {
|
|
|
39649
39677
|
}
|
|
39650
39678
|
async function doctor(args2 = []) {
|
|
39651
39679
|
const json = args2.includes("--json");
|
|
39652
|
-
const cliVersion = true ? "2.61.
|
|
39680
|
+
const cliVersion = true ? "2.61.64" : "0.0.0-dev";
|
|
39653
39681
|
const apiBase2 = resolveApiBaseUrl();
|
|
39654
39682
|
const diagnosticId = (0, import_node_crypto13.randomUUID)();
|
|
39655
39683
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -40171,7 +40199,7 @@ async function mcpRun(args2) {
|
|
|
40171
40199
|
// src/commands/version.ts
|
|
40172
40200
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
40173
40201
|
function version2() {
|
|
40174
|
-
const v = true ? "2.61.
|
|
40202
|
+
const v = true ? "2.61.64" : "unknown";
|
|
40175
40203
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
40176
40204
|
}
|
|
40177
40205
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.64",
|
|
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",
|