codeam-cli 2.61.27 → 2.61.28
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 +10 -0
- package/dist/index.js +33 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ 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.27] — 2026-07-24
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** Add spec-driven-development skill + split skills into per-file modules
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- **shared:** Add PR_REVIEW_LAUNCH to USER_EVENTS (sync A↔B drift)
|
|
16
|
+
|
|
7
17
|
## [2.61.26] — 2026-07-23
|
|
8
18
|
|
|
9
19
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -672,6 +672,31 @@ var INTEGRATION_REGISTRY = {
|
|
|
672
672
|
}
|
|
673
673
|
}
|
|
674
674
|
},
|
|
675
|
+
microsoft_teams: {
|
|
676
|
+
id: "microsoft_teams",
|
|
677
|
+
name: "Microsoft Teams",
|
|
678
|
+
icon: "microsoft_teams",
|
|
679
|
+
category: "comms",
|
|
680
|
+
// COMING SOON — placeholder catalog entry (no OAuth provider / MCP yet). The
|
|
681
|
+
// agent will post review pings + read threads AS THE USER over Microsoft Graph
|
|
682
|
+
// once the provider lands. `enabled:false` renders it as a dimmed "coming
|
|
683
|
+
// soon" tile inside the (live) comms category.
|
|
684
|
+
enabled: false,
|
|
685
|
+
auth: { kind: "oauth_redirect" },
|
|
686
|
+
delivery: {}
|
|
687
|
+
},
|
|
688
|
+
google_chat: {
|
|
689
|
+
id: "google_chat",
|
|
690
|
+
name: "Google Chat",
|
|
691
|
+
icon: "google_chat",
|
|
692
|
+
category: "comms",
|
|
693
|
+
// COMING SOON — placeholder catalog entry (no OAuth provider / MCP yet). The
|
|
694
|
+
// agent will post review pings + read spaces AS THE USER over the Google Chat
|
|
695
|
+
// API once the provider lands. `enabled:false` → dimmed "coming soon" tile.
|
|
696
|
+
enabled: false,
|
|
697
|
+
auth: { kind: "oauth_redirect" },
|
|
698
|
+
delivery: {}
|
|
699
|
+
},
|
|
675
700
|
notion: {
|
|
676
701
|
id: "notion",
|
|
677
702
|
name: "Notion",
|
|
@@ -6240,7 +6265,7 @@ function readAnonId() {
|
|
|
6240
6265
|
}
|
|
6241
6266
|
function superProperties() {
|
|
6242
6267
|
return {
|
|
6243
|
-
cliVersion: true ? "2.61.
|
|
6268
|
+
cliVersion: true ? "2.61.28" : "0.0.0-dev",
|
|
6244
6269
|
nodeVersion: process.version,
|
|
6245
6270
|
platform: process.platform,
|
|
6246
6271
|
arch: process.arch,
|
|
@@ -6421,7 +6446,7 @@ var os4 = __toESM(require("os"));
|
|
|
6421
6446
|
// package.json
|
|
6422
6447
|
var package_default = {
|
|
6423
6448
|
name: "codeam-cli",
|
|
6424
|
-
version: "2.61.
|
|
6449
|
+
version: "2.61.28",
|
|
6425
6450
|
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.",
|
|
6426
6451
|
type: "commonjs",
|
|
6427
6452
|
main: "dist/index.js",
|
|
@@ -7592,7 +7617,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
7592
7617
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
7593
7618
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
7594
7619
|
// pair/reconnect). Older backends ignore the extra field.
|
|
7595
|
-
..."2.61.
|
|
7620
|
+
..."2.61.28" ? { ideVersion: "2.61.28" } : {}
|
|
7596
7621
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
7597
7622
|
}
|
|
7598
7623
|
/**
|
|
@@ -18454,7 +18479,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
18454
18479
|
if (process.env.NODE_ENV === "test") return;
|
|
18455
18480
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18456
18481
|
if (process.env.CI) return;
|
|
18457
|
-
const current = true ? "2.61.
|
|
18482
|
+
const current = true ? "2.61.28" : null;
|
|
18458
18483
|
if (!current) return;
|
|
18459
18484
|
const cache = readCache();
|
|
18460
18485
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -18471,7 +18496,7 @@ function checkForUpdates() {
|
|
|
18471
18496
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18472
18497
|
if (process.env.CI) return;
|
|
18473
18498
|
if (!process.stdout.isTTY) return;
|
|
18474
|
-
const current = true ? "2.61.
|
|
18499
|
+
const current = true ? "2.61.28" : null;
|
|
18475
18500
|
if (!current) return;
|
|
18476
18501
|
const cache = readCache();
|
|
18477
18502
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -18491,7 +18516,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
18491
18516
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
18492
18517
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
18493
18518
|
function currentCliVersion() {
|
|
18494
|
-
return true ? "2.61.
|
|
18519
|
+
return true ? "2.61.28" : null;
|
|
18495
18520
|
}
|
|
18496
18521
|
function runCmd(cmd, args2, timeoutMs) {
|
|
18497
18522
|
return new Promise((resolve8) => {
|
|
@@ -38484,7 +38509,7 @@ function checkChokidar() {
|
|
|
38484
38509
|
}
|
|
38485
38510
|
async function doctor(args2 = []) {
|
|
38486
38511
|
const json = args2.includes("--json");
|
|
38487
|
-
const cliVersion = true ? "2.61.
|
|
38512
|
+
const cliVersion = true ? "2.61.28" : "0.0.0-dev";
|
|
38488
38513
|
const apiBase2 = resolveApiBaseUrl();
|
|
38489
38514
|
const diagnosticId = (0, import_node_crypto13.randomUUID)();
|
|
38490
38515
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -38995,7 +39020,7 @@ async function mcpRun(args2) {
|
|
|
38995
39020
|
// src/commands/version.ts
|
|
38996
39021
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
38997
39022
|
function version2() {
|
|
38998
|
-
const v = true ? "2.61.
|
|
39023
|
+
const v = true ? "2.61.28" : "unknown";
|
|
38999
39024
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
39000
39025
|
}
|
|
39001
39026
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.28",
|
|
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",
|