codeam-cli 2.61.43 → 2.61.44
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 +47 -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.43] — 2026-07-25
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** Discord comms integration — OAuth bot-invite, guildId discriminator
|
|
12
|
+
|
|
7
13
|
## [2.61.42] — 2026-07-25
|
|
8
14
|
|
|
9
15
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -815,6 +815,45 @@ var INTEGRATION_REGISTRY = {
|
|
|
815
815
|
}
|
|
816
816
|
}
|
|
817
817
|
},
|
|
818
|
+
resend: {
|
|
819
|
+
id: "resend",
|
|
820
|
+
name: "Resend",
|
|
821
|
+
icon: "resend",
|
|
822
|
+
category: "comms",
|
|
823
|
+
// LIVE — api_key (like Azure DevOps): the user pastes a Resend API key
|
|
824
|
+
// (`re_…`); Resend has NO OAuth, so there's no OAuth app / GSM secret /
|
|
825
|
+
// config-gated 503 — a backend VALIDATOR proves the key against the Resend
|
|
826
|
+
// API and vaults it. ⚠️ SEND-ONLY email → `sendOnly: true` keeps it OUT of
|
|
827
|
+
// From-Conversation (comms conversation sources need readable threads; Resend
|
|
828
|
+
// has none) while still being a linkable comms tool the agent uses via MCP.
|
|
829
|
+
enabled: true,
|
|
830
|
+
sendOnly: true,
|
|
831
|
+
auth: {
|
|
832
|
+
kind: "api_key",
|
|
833
|
+
fields: [
|
|
834
|
+
{
|
|
835
|
+
key: "accessToken",
|
|
836
|
+
label: "API Key",
|
|
837
|
+
placeholder: "re_xxxxxxxxxxxxxxxx",
|
|
838
|
+
secret: true,
|
|
839
|
+
help: 'Create in Resend \u2192 API Keys (https://resend.com/api-keys). "Sending access" is enough.'
|
|
840
|
+
}
|
|
841
|
+
]
|
|
842
|
+
},
|
|
843
|
+
delivery: {
|
|
844
|
+
mcp: {
|
|
845
|
+
// The OFFICIAL resend-mcp (Node) in BYO-token mode: the API key is fed
|
|
846
|
+
// via RESEND_API_KEY (env only, never argv). Version PINNED; bump only
|
|
847
|
+
// after re-verifying headless. Tools: send email + contacts/broadcasts/
|
|
848
|
+
// domains.
|
|
849
|
+
command: "npx",
|
|
850
|
+
args: ["-y", "resend-mcp@2.6.1"],
|
|
851
|
+
envMapping: {
|
|
852
|
+
RESEND_API_KEY: "accessToken"
|
|
853
|
+
}
|
|
854
|
+
}
|
|
855
|
+
}
|
|
856
|
+
},
|
|
818
857
|
notion: {
|
|
819
858
|
id: "notion",
|
|
820
859
|
name: "Notion",
|
|
@@ -6383,7 +6422,7 @@ function readAnonId() {
|
|
|
6383
6422
|
}
|
|
6384
6423
|
function superProperties() {
|
|
6385
6424
|
return {
|
|
6386
|
-
cliVersion: true ? "2.61.
|
|
6425
|
+
cliVersion: true ? "2.61.44" : "0.0.0-dev",
|
|
6387
6426
|
nodeVersion: process.version,
|
|
6388
6427
|
platform: process.platform,
|
|
6389
6428
|
arch: process.arch,
|
|
@@ -6564,7 +6603,7 @@ var os4 = __toESM(require("os"));
|
|
|
6564
6603
|
// package.json
|
|
6565
6604
|
var package_default = {
|
|
6566
6605
|
name: "codeam-cli",
|
|
6567
|
-
version: "2.61.
|
|
6606
|
+
version: "2.61.44",
|
|
6568
6607
|
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.",
|
|
6569
6608
|
type: "commonjs",
|
|
6570
6609
|
main: "dist/index.js",
|
|
@@ -7735,7 +7774,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
7735
7774
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
7736
7775
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
7737
7776
|
// pair/reconnect). Older backends ignore the extra field.
|
|
7738
|
-
..."2.61.
|
|
7777
|
+
..."2.61.44" ? { ideVersion: "2.61.44" } : {}
|
|
7739
7778
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
7740
7779
|
}
|
|
7741
7780
|
/**
|
|
@@ -18720,7 +18759,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
18720
18759
|
if (process.env.NODE_ENV === "test") return;
|
|
18721
18760
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18722
18761
|
if (process.env.CI) return;
|
|
18723
|
-
const current = true ? "2.61.
|
|
18762
|
+
const current = true ? "2.61.44" : null;
|
|
18724
18763
|
if (!current) return;
|
|
18725
18764
|
const cache = readCache();
|
|
18726
18765
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -18737,7 +18776,7 @@ function checkForUpdates() {
|
|
|
18737
18776
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18738
18777
|
if (process.env.CI) return;
|
|
18739
18778
|
if (!process.stdout.isTTY) return;
|
|
18740
|
-
const current = true ? "2.61.
|
|
18779
|
+
const current = true ? "2.61.44" : null;
|
|
18741
18780
|
if (!current) return;
|
|
18742
18781
|
const cache = readCache();
|
|
18743
18782
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -18757,7 +18796,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
18757
18796
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
18758
18797
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
18759
18798
|
function currentCliVersion() {
|
|
18760
|
-
return true ? "2.61.
|
|
18799
|
+
return true ? "2.61.44" : null;
|
|
18761
18800
|
}
|
|
18762
18801
|
function runCmd(cmd, args2, timeoutMs) {
|
|
18763
18802
|
return new Promise((resolve8) => {
|
|
@@ -38883,7 +38922,7 @@ function checkChokidar() {
|
|
|
38883
38922
|
}
|
|
38884
38923
|
async function doctor(args2 = []) {
|
|
38885
38924
|
const json = args2.includes("--json");
|
|
38886
|
-
const cliVersion = true ? "2.61.
|
|
38925
|
+
const cliVersion = true ? "2.61.44" : "0.0.0-dev";
|
|
38887
38926
|
const apiBase2 = resolveApiBaseUrl();
|
|
38888
38927
|
const diagnosticId = (0, import_node_crypto13.randomUUID)();
|
|
38889
38928
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -39394,7 +39433,7 @@ async function mcpRun(args2) {
|
|
|
39394
39433
|
// src/commands/version.ts
|
|
39395
39434
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
39396
39435
|
function version2() {
|
|
39397
|
-
const v = true ? "2.61.
|
|
39436
|
+
const v = true ? "2.61.44" : "unknown";
|
|
39398
39437
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
39399
39438
|
}
|
|
39400
39439
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.44",
|
|
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",
|