codeam-cli 2.61.30 → 2.61.31

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 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.30] — 2026-07-24
8
+
9
+ ### Added
10
+
11
+ - **shared:** Add github_issues as a derived tracker integration
12
+
7
13
  ## [2.61.29] — 2026-07-24
8
14
 
9
15
  ### Added
package/dist/index.js CHANGED
@@ -617,6 +617,30 @@ var INTEGRATION_REGISTRY = {
617
617
  }
618
618
  }
619
619
  },
620
+ github: {
621
+ id: "github",
622
+ name: "GitHub",
623
+ icon: "github",
624
+ category: "version_control",
625
+ // LIVE. GitHub is the product's code substrate (codespaces + the PR
626
+ // Command Center), and it was historically the ONE connection outside this
627
+ // registry: its credential lives in a `ProviderToken` row rather than the
628
+ // integrations vault, so it was rendered by a hand-written special-case row
629
+ // and could not legally appear in a deploy's `integrationIds` (the manifest
630
+ // resolver rejects unknown ids — a recurring bug class).
631
+ //
632
+ // `kind: 'connection'` closes that gap without re-plumbing OAuth: the entry
633
+ // makes GitHub a first-class, categorised catalog row whose credential the
634
+ // backend resolves from the SAME `ProviderToken` it always used, while the
635
+ // connect/disconnect flow stays owned by the codespaces rail (the clients
636
+ // route those two actions there). ⚠️ It is a REAL connection with a REAL
637
+ // disconnect — do NOT treat it like `github_issues`, which merely derives
638
+ // from it and has no actions of its own.
639
+ enabled: true,
640
+ auth: { kind: "connection", connection: "github" },
641
+ // No MCP: a deployed box already has an authenticated `gh` on PATH.
642
+ delivery: {}
643
+ },
620
644
  github_issues: {
621
645
  id: "github_issues",
622
646
  name: "GitHub Issues",
@@ -6301,7 +6325,7 @@ function readAnonId() {
6301
6325
  }
6302
6326
  function superProperties() {
6303
6327
  return {
6304
- cliVersion: true ? "2.61.30" : "0.0.0-dev",
6328
+ cliVersion: true ? "2.61.31" : "0.0.0-dev",
6305
6329
  nodeVersion: process.version,
6306
6330
  platform: process.platform,
6307
6331
  arch: process.arch,
@@ -6482,7 +6506,7 @@ var os4 = __toESM(require("os"));
6482
6506
  // package.json
6483
6507
  var package_default = {
6484
6508
  name: "codeam-cli",
6485
- version: "2.61.30",
6509
+ version: "2.61.31",
6486
6510
  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.",
6487
6511
  type: "commonjs",
6488
6512
  main: "dist/index.js",
@@ -7653,7 +7677,7 @@ var CommandRelayService = class _CommandRelayService {
7653
7677
  // fresh + clear the "CLI update available" banner after a self-update
7654
7678
  // (a codespace that reinstalls @latest reconnects via heartbeat, not
7655
7679
  // pair/reconnect). Older backends ignore the extra field.
7656
- ..."2.61.30" ? { ideVersion: "2.61.30" } : {}
7680
+ ..."2.61.31" ? { ideVersion: "2.61.31" } : {}
7657
7681
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
7658
7682
  }
7659
7683
  /**
@@ -18515,7 +18539,7 @@ async function autoUpgradeBeforeCriticalCommand() {
18515
18539
  if (process.env.NODE_ENV === "test") return;
18516
18540
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
18517
18541
  if (process.env.CI) return;
18518
- const current = true ? "2.61.30" : null;
18542
+ const current = true ? "2.61.31" : null;
18519
18543
  if (!current) return;
18520
18544
  const cache = readCache();
18521
18545
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -18532,7 +18556,7 @@ function checkForUpdates() {
18532
18556
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
18533
18557
  if (process.env.CI) return;
18534
18558
  if (!process.stdout.isTTY) return;
18535
- const current = true ? "2.61.30" : null;
18559
+ const current = true ? "2.61.31" : null;
18536
18560
  if (!current) return;
18537
18561
  const cache = readCache();
18538
18562
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -18552,7 +18576,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
18552
18576
  var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
18553
18577
  var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
18554
18578
  function currentCliVersion() {
18555
- return true ? "2.61.30" : null;
18579
+ return true ? "2.61.31" : null;
18556
18580
  }
18557
18581
  function runCmd(cmd, args2, timeoutMs) {
18558
18582
  return new Promise((resolve8) => {
@@ -38545,7 +38569,7 @@ function checkChokidar() {
38545
38569
  }
38546
38570
  async function doctor(args2 = []) {
38547
38571
  const json = args2.includes("--json");
38548
- const cliVersion = true ? "2.61.30" : "0.0.0-dev";
38572
+ const cliVersion = true ? "2.61.31" : "0.0.0-dev";
38549
38573
  const apiBase2 = resolveApiBaseUrl();
38550
38574
  const diagnosticId = (0, import_node_crypto13.randomUUID)();
38551
38575
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -39056,7 +39080,7 @@ async function mcpRun(args2) {
39056
39080
  // src/commands/version.ts
39057
39081
  var import_picocolors15 = __toESM(require("picocolors"));
39058
39082
  function version2() {
39059
- const v = true ? "2.61.30" : "unknown";
39083
+ const v = true ? "2.61.31" : "unknown";
39060
39084
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
39061
39085
  }
39062
39086
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.61.30",
3
+ "version": "2.61.31",
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",