codeam-cli 2.61.29 → 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 +32 -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",
|
|
@@ -6277,7 +6301,7 @@ function readAnonId() {
|
|
|
6277
6301
|
}
|
|
6278
6302
|
function superProperties() {
|
|
6279
6303
|
return {
|
|
6280
|
-
cliVersion: true ? "2.61.
|
|
6304
|
+
cliVersion: true ? "2.61.30" : "0.0.0-dev",
|
|
6281
6305
|
nodeVersion: process.version,
|
|
6282
6306
|
platform: process.platform,
|
|
6283
6307
|
arch: process.arch,
|
|
@@ -6458,7 +6482,7 @@ var os4 = __toESM(require("os"));
|
|
|
6458
6482
|
// package.json
|
|
6459
6483
|
var package_default = {
|
|
6460
6484
|
name: "codeam-cli",
|
|
6461
|
-
version: "2.61.
|
|
6485
|
+
version: "2.61.30",
|
|
6462
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.",
|
|
6463
6487
|
type: "commonjs",
|
|
6464
6488
|
main: "dist/index.js",
|
|
@@ -7629,7 +7653,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
7629
7653
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
7630
7654
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
7631
7655
|
// pair/reconnect). Older backends ignore the extra field.
|
|
7632
|
-
..."2.61.
|
|
7656
|
+
..."2.61.30" ? { ideVersion: "2.61.30" } : {}
|
|
7633
7657
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
7634
7658
|
}
|
|
7635
7659
|
/**
|
|
@@ -18491,7 +18515,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
18491
18515
|
if (process.env.NODE_ENV === "test") return;
|
|
18492
18516
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18493
18517
|
if (process.env.CI) return;
|
|
18494
|
-
const current = true ? "2.61.
|
|
18518
|
+
const current = true ? "2.61.30" : null;
|
|
18495
18519
|
if (!current) return;
|
|
18496
18520
|
const cache = readCache();
|
|
18497
18521
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -18508,7 +18532,7 @@ function checkForUpdates() {
|
|
|
18508
18532
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18509
18533
|
if (process.env.CI) return;
|
|
18510
18534
|
if (!process.stdout.isTTY) return;
|
|
18511
|
-
const current = true ? "2.61.
|
|
18535
|
+
const current = true ? "2.61.30" : null;
|
|
18512
18536
|
if (!current) return;
|
|
18513
18537
|
const cache = readCache();
|
|
18514
18538
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -18528,7 +18552,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
18528
18552
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
18529
18553
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
18530
18554
|
function currentCliVersion() {
|
|
18531
|
-
return true ? "2.61.
|
|
18555
|
+
return true ? "2.61.30" : null;
|
|
18532
18556
|
}
|
|
18533
18557
|
function runCmd(cmd, args2, timeoutMs) {
|
|
18534
18558
|
return new Promise((resolve8) => {
|
|
@@ -38521,7 +38545,7 @@ function checkChokidar() {
|
|
|
38521
38545
|
}
|
|
38522
38546
|
async function doctor(args2 = []) {
|
|
38523
38547
|
const json = args2.includes("--json");
|
|
38524
|
-
const cliVersion = true ? "2.61.
|
|
38548
|
+
const cliVersion = true ? "2.61.30" : "0.0.0-dev";
|
|
38525
38549
|
const apiBase2 = resolveApiBaseUrl();
|
|
38526
38550
|
const diagnosticId = (0, import_node_crypto13.randomUUID)();
|
|
38527
38551
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -39032,7 +39056,7 @@ async function mcpRun(args2) {
|
|
|
39032
39056
|
// src/commands/version.ts
|
|
39033
39057
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
39034
39058
|
function version2() {
|
|
39035
|
-
const v = true ? "2.61.
|
|
39059
|
+
const v = true ? "2.61.30" : "unknown";
|
|
39036
39060
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
39037
39061
|
}
|
|
39038
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",
|