codeam-cli 2.61.28 → 2.61.30
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 +16 -0
- package/dist/index.js +44 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,22 @@ 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.29] — 2026-07-24
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** Add Discord to the comms catalog (coming soon)
|
|
12
|
+
|
|
13
|
+
## [2.61.28] — 2026-07-24
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- **shared:** Add Microsoft Teams + Google Chat to the comms catalog (coming soon)
|
|
18
|
+
|
|
19
|
+
### CI
|
|
20
|
+
|
|
21
|
+
- **cli:** Run macOS/Windows only on main + nightly, not every PR
|
|
22
|
+
|
|
7
23
|
## [2.61.27] — 2026-07-24
|
|
8
24
|
|
|
9
25
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -617,6 +617,30 @@ var INTEGRATION_REGISTRY = {
|
|
|
617
617
|
}
|
|
618
618
|
}
|
|
619
619
|
},
|
|
620
|
+
github_issues: {
|
|
621
|
+
id: "github_issues",
|
|
622
|
+
name: "GitHub Issues",
|
|
623
|
+
icon: "github_issues",
|
|
624
|
+
category: "tracker",
|
|
625
|
+
// LIVE, and the ONLY integration with NO link flow of its own: the
|
|
626
|
+
// credential is DERIVED from the GitHub connection the user already made
|
|
627
|
+
// for codespaces/PRs (`ProviderToken` provider='github-codespaces', which
|
|
628
|
+
// carries `repo` scope — enough for the whole Issues surface). So there is
|
|
629
|
+
// no OAuth app, no client id/secret, no Secret Manager entry and nothing
|
|
630
|
+
// to configuration-gate. The backend auto-provisions the catalog row the
|
|
631
|
+
// same way `ensureHouseAgentRow` does for the house agent, and resolves
|
|
632
|
+
// the token live per call rather than vaulting a copy (it can't go stale,
|
|
633
|
+
// and GitHub token refresh stays owned by exactly one place).
|
|
634
|
+
enabled: true,
|
|
635
|
+
auth: { kind: "derived", derivedFrom: "github" },
|
|
636
|
+
// NO MCP server on purpose. Every other tracker needs one to give the agent
|
|
637
|
+
// tools, but a deployed box ALREADY has an authenticated `gh` on PATH (the
|
|
638
|
+
// codespace bootstrap exports GH_TOKEN), so `gh issue list/create/comment`
|
|
639
|
+
// works with zero delivery. That also means nothing to pre-warm and no
|
|
640
|
+
// third-party MCP package to pin and keep alive. The Start-from-Work-Item
|
|
641
|
+
// side is served backend-side by the `TrackerProvider`, not by delivery.
|
|
642
|
+
delivery: {}
|
|
643
|
+
},
|
|
620
644
|
slack: {
|
|
621
645
|
id: "slack",
|
|
622
646
|
name: "Slack",
|
|
@@ -697,6 +721,18 @@ var INTEGRATION_REGISTRY = {
|
|
|
697
721
|
auth: { kind: "oauth_redirect" },
|
|
698
722
|
delivery: {}
|
|
699
723
|
},
|
|
724
|
+
discord: {
|
|
725
|
+
id: "discord",
|
|
726
|
+
name: "Discord",
|
|
727
|
+
icon: "discord",
|
|
728
|
+
category: "comms",
|
|
729
|
+
// COMING SOON — placeholder catalog entry (no OAuth provider / MCP yet). The
|
|
730
|
+
// agent will post review pings + read channels over the Discord API once the
|
|
731
|
+
// provider lands. `enabled:false` → dimmed "coming soon" tile.
|
|
732
|
+
enabled: false,
|
|
733
|
+
auth: { kind: "oauth_redirect" },
|
|
734
|
+
delivery: {}
|
|
735
|
+
},
|
|
700
736
|
notion: {
|
|
701
737
|
id: "notion",
|
|
702
738
|
name: "Notion",
|
|
@@ -6265,7 +6301,7 @@ function readAnonId() {
|
|
|
6265
6301
|
}
|
|
6266
6302
|
function superProperties() {
|
|
6267
6303
|
return {
|
|
6268
|
-
cliVersion: true ? "2.61.
|
|
6304
|
+
cliVersion: true ? "2.61.30" : "0.0.0-dev",
|
|
6269
6305
|
nodeVersion: process.version,
|
|
6270
6306
|
platform: process.platform,
|
|
6271
6307
|
arch: process.arch,
|
|
@@ -6446,7 +6482,7 @@ var os4 = __toESM(require("os"));
|
|
|
6446
6482
|
// package.json
|
|
6447
6483
|
var package_default = {
|
|
6448
6484
|
name: "codeam-cli",
|
|
6449
|
-
version: "2.61.
|
|
6485
|
+
version: "2.61.30",
|
|
6450
6486
|
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.",
|
|
6451
6487
|
type: "commonjs",
|
|
6452
6488
|
main: "dist/index.js",
|
|
@@ -7617,7 +7653,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
7617
7653
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
7618
7654
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
7619
7655
|
// pair/reconnect). Older backends ignore the extra field.
|
|
7620
|
-
..."2.61.
|
|
7656
|
+
..."2.61.30" ? { ideVersion: "2.61.30" } : {}
|
|
7621
7657
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
7622
7658
|
}
|
|
7623
7659
|
/**
|
|
@@ -18479,7 +18515,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
18479
18515
|
if (process.env.NODE_ENV === "test") return;
|
|
18480
18516
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18481
18517
|
if (process.env.CI) return;
|
|
18482
|
-
const current = true ? "2.61.
|
|
18518
|
+
const current = true ? "2.61.30" : null;
|
|
18483
18519
|
if (!current) return;
|
|
18484
18520
|
const cache = readCache();
|
|
18485
18521
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -18496,7 +18532,7 @@ function checkForUpdates() {
|
|
|
18496
18532
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18497
18533
|
if (process.env.CI) return;
|
|
18498
18534
|
if (!process.stdout.isTTY) return;
|
|
18499
|
-
const current = true ? "2.61.
|
|
18535
|
+
const current = true ? "2.61.30" : null;
|
|
18500
18536
|
if (!current) return;
|
|
18501
18537
|
const cache = readCache();
|
|
18502
18538
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -18516,7 +18552,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
18516
18552
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
18517
18553
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
18518
18554
|
function currentCliVersion() {
|
|
18519
|
-
return true ? "2.61.
|
|
18555
|
+
return true ? "2.61.30" : null;
|
|
18520
18556
|
}
|
|
18521
18557
|
function runCmd(cmd, args2, timeoutMs) {
|
|
18522
18558
|
return new Promise((resolve8) => {
|
|
@@ -38509,7 +38545,7 @@ function checkChokidar() {
|
|
|
38509
38545
|
}
|
|
38510
38546
|
async function doctor(args2 = []) {
|
|
38511
38547
|
const json = args2.includes("--json");
|
|
38512
|
-
const cliVersion = true ? "2.61.
|
|
38548
|
+
const cliVersion = true ? "2.61.30" : "0.0.0-dev";
|
|
38513
38549
|
const apiBase2 = resolveApiBaseUrl();
|
|
38514
38550
|
const diagnosticId = (0, import_node_crypto13.randomUUID)();
|
|
38515
38551
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -39020,7 +39056,7 @@ async function mcpRun(args2) {
|
|
|
39020
39056
|
// src/commands/version.ts
|
|
39021
39057
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
39022
39058
|
function version2() {
|
|
39023
|
-
const v = true ? "2.61.
|
|
39059
|
+
const v = true ? "2.61.30" : "unknown";
|
|
39024
39060
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
39025
39061
|
}
|
|
39026
39062
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.30",
|
|
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",
|