codeam-cli 2.61.64 → 2.61.65
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 +45 -15
- 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.64] — 2026-07-28
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** Confluence catalog entry (docs) — alias of Atlassian/Jira
|
|
12
|
+
|
|
7
13
|
## [2.61.63] — 2026-07-28
|
|
8
14
|
|
|
9
15
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -851,13 +851,43 @@ var INTEGRATION_REGISTRY = {
|
|
|
851
851
|
name: "Microsoft Teams",
|
|
852
852
|
icon: "microsoft_teams",
|
|
853
853
|
category: "comms",
|
|
854
|
-
//
|
|
855
|
-
// agent
|
|
856
|
-
//
|
|
857
|
-
//
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
854
|
+
// LIVE — Microsoft identity platform v2.0 OAuth (multi-tenant, Confidential).
|
|
855
|
+
// The agent reads chats/channels + posts AS THE USER over Microsoft Graph.
|
|
856
|
+
// MS_TEAMS_OAUTH_CLIENT_ID/SECRET/REDIRECT_URI are in Secret Manager (prod+dev);
|
|
857
|
+
// the backend TeamsOAuthProvider is config-gated (503 if env unset).
|
|
858
|
+
// ⚠️ Chat.* + ChannelMessage.Read.All (`.All`) require TENANT-ADMIN consent
|
|
859
|
+
// (MC1163922, Oct-2025) — the connecting user must be an org admin, or their
|
|
860
|
+
// IT admin approves the app for the tenant. Not a self-serve funnel like Slack.
|
|
861
|
+
enabled: true,
|
|
862
|
+
auth: {
|
|
863
|
+
kind: "oauth_redirect",
|
|
864
|
+
// Delegated Microsoft Graph scopes. `offline_access` → rotating refresh
|
|
865
|
+
// (Teams access tokens are ~1h). ⚠️ Changing these requires the user to
|
|
866
|
+
// RE-LINK — the token carries only the scopes granted at link time.
|
|
867
|
+
scopes: [
|
|
868
|
+
"User.Read",
|
|
869
|
+
"User.ReadBasic.All",
|
|
870
|
+
"Team.ReadBasic.All",
|
|
871
|
+
"Channel.ReadBasic.All",
|
|
872
|
+
"ChannelMessage.Read.All",
|
|
873
|
+
"ChannelMessage.Send",
|
|
874
|
+
"Chat.Read",
|
|
875
|
+
"Chat.ReadWrite",
|
|
876
|
+
"offline_access"
|
|
877
|
+
]
|
|
878
|
+
},
|
|
879
|
+
delivery: {
|
|
880
|
+
mcp: {
|
|
881
|
+
// @floriscornel/teams-mcp (Node): BYO Graph access token via AUTH_TOKEN
|
|
882
|
+
// (env only, never argv). Headless. Version PINNED; bump only after
|
|
883
|
+
// re-verifying headless. Tools: get/send channel + chat messages, replies.
|
|
884
|
+
command: "npx",
|
|
885
|
+
args: ["-y", "@floriscornel/teams-mcp@0.9.0"],
|
|
886
|
+
envMapping: {
|
|
887
|
+
AUTH_TOKEN: "accessToken"
|
|
888
|
+
}
|
|
889
|
+
}
|
|
890
|
+
}
|
|
861
891
|
},
|
|
862
892
|
google_chat: {
|
|
863
893
|
id: "google_chat",
|
|
@@ -6939,7 +6969,7 @@ function readAnonId() {
|
|
|
6939
6969
|
}
|
|
6940
6970
|
function superProperties() {
|
|
6941
6971
|
return {
|
|
6942
|
-
cliVersion: true ? "2.61.
|
|
6972
|
+
cliVersion: true ? "2.61.65" : "0.0.0-dev",
|
|
6943
6973
|
nodeVersion: process.version,
|
|
6944
6974
|
platform: process.platform,
|
|
6945
6975
|
arch: process.arch,
|
|
@@ -7120,7 +7150,7 @@ var os4 = __toESM(require("os"));
|
|
|
7120
7150
|
// package.json
|
|
7121
7151
|
var package_default = {
|
|
7122
7152
|
name: "codeam-cli",
|
|
7123
|
-
version: "2.61.
|
|
7153
|
+
version: "2.61.65",
|
|
7124
7154
|
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.",
|
|
7125
7155
|
type: "commonjs",
|
|
7126
7156
|
main: "dist/index.js",
|
|
@@ -8292,7 +8322,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
8292
8322
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
8293
8323
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
8294
8324
|
// pair/reconnect). Older backends ignore the extra field.
|
|
8295
|
-
..."2.61.
|
|
8325
|
+
..."2.61.65" ? { ideVersion: "2.61.65" } : {}
|
|
8296
8326
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
8297
8327
|
}
|
|
8298
8328
|
/**
|
|
@@ -19401,7 +19431,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
19401
19431
|
if (process.env.NODE_ENV === "test") return;
|
|
19402
19432
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
19403
19433
|
if (process.env.CI) return;
|
|
19404
|
-
const current = true ? "2.61.
|
|
19434
|
+
const current = true ? "2.61.65" : null;
|
|
19405
19435
|
if (!current) return;
|
|
19406
19436
|
const cache = readCache();
|
|
19407
19437
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -19418,7 +19448,7 @@ function checkForUpdates() {
|
|
|
19418
19448
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
19419
19449
|
if (process.env.CI) return;
|
|
19420
19450
|
if (!process.stdout.isTTY) return;
|
|
19421
|
-
const current = true ? "2.61.
|
|
19451
|
+
const current = true ? "2.61.65" : null;
|
|
19422
19452
|
if (!current) return;
|
|
19423
19453
|
const cache = readCache();
|
|
19424
19454
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -19438,7 +19468,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
19438
19468
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
19439
19469
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
19440
19470
|
function currentCliVersion() {
|
|
19441
|
-
return true ? "2.61.
|
|
19471
|
+
return true ? "2.61.65" : null;
|
|
19442
19472
|
}
|
|
19443
19473
|
function runCmd(cmd, args2, timeoutMs) {
|
|
19444
19474
|
return new Promise((resolve8) => {
|
|
@@ -39677,7 +39707,7 @@ function checkChokidar() {
|
|
|
39677
39707
|
}
|
|
39678
39708
|
async function doctor(args2 = []) {
|
|
39679
39709
|
const json = args2.includes("--json");
|
|
39680
|
-
const cliVersion = true ? "2.61.
|
|
39710
|
+
const cliVersion = true ? "2.61.65" : "0.0.0-dev";
|
|
39681
39711
|
const apiBase2 = resolveApiBaseUrl();
|
|
39682
39712
|
const diagnosticId = (0, import_node_crypto13.randomUUID)();
|
|
39683
39713
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -40199,7 +40229,7 @@ async function mcpRun(args2) {
|
|
|
40199
40229
|
// src/commands/version.ts
|
|
40200
40230
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
40201
40231
|
function version2() {
|
|
40202
|
-
const v = true ? "2.61.
|
|
40232
|
+
const v = true ? "2.61.65" : "unknown";
|
|
40203
40233
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
40204
40234
|
}
|
|
40205
40235
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.65",
|
|
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",
|