codeam-cli 2.61.13 → 2.61.15
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 +20 -14
- 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.14] — 2026-07-17
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **shared:** Dark-launch figma integration pending Figma app review
|
|
12
|
+
|
|
13
|
+
## [2.61.13] — 2026-07-17
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- **shared:** Add figma integration (read-only, figma-developer-mcp@0.13.2)
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- **cli:** Complete RemoteCommand literal in resume-session test (typecheck gate)
|
|
22
|
+
|
|
7
23
|
## [2.61.11] — 2026-07-16
|
|
8
24
|
|
|
9
25
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -485,6 +485,7 @@ var INTEGRATION_REGISTRY = {
|
|
|
485
485
|
id: "jira",
|
|
486
486
|
name: "Atlassian",
|
|
487
487
|
icon: "jira",
|
|
488
|
+
category: "tracker",
|
|
488
489
|
enabled: true,
|
|
489
490
|
auth: {
|
|
490
491
|
kind: "oauth_redirect",
|
|
@@ -524,6 +525,7 @@ var INTEGRATION_REGISTRY = {
|
|
|
524
525
|
id: "sentry",
|
|
525
526
|
name: "Sentry",
|
|
526
527
|
icon: "sentry",
|
|
528
|
+
category: "observability",
|
|
527
529
|
// LIVE — the Sentry OAuth Application (Confidential) is registered and
|
|
528
530
|
// SENTRY_OAUTH_CLIENT_ID/SECRET/REDIRECT_URI are in Secret Manager
|
|
529
531
|
// (prod+dev). The backend SentryOAuthProvider is config-gated (503 if
|
|
@@ -577,6 +579,7 @@ var INTEGRATION_REGISTRY = {
|
|
|
577
579
|
id: "linear",
|
|
578
580
|
name: "Linear",
|
|
579
581
|
icon: "linear",
|
|
582
|
+
category: "tracker",
|
|
580
583
|
// LIVE — the Linear OAuth Application (Public + Confidential) is registered
|
|
581
584
|
// and LINEAR_OAUTH_CLIENT_ID/SECRET/REDIRECT_URI are in Secret Manager
|
|
582
585
|
// (prod+dev). The backend LinearOAuthProvider is config-gated (503 if env
|
|
@@ -614,6 +617,7 @@ var INTEGRATION_REGISTRY = {
|
|
|
614
617
|
id: "slack",
|
|
615
618
|
name: "Slack",
|
|
616
619
|
icon: "slack",
|
|
620
|
+
category: "comms",
|
|
617
621
|
// LIVE — the Slack app (OAuth v2, USER token — the agent acts AS THE USER)
|
|
618
622
|
// is registered and
|
|
619
623
|
// SLACK_OAUTH_CLIENT_ID/SECRET/REDIRECT_URI are in Secret Manager
|
|
@@ -668,6 +672,7 @@ var INTEGRATION_REGISTRY = {
|
|
|
668
672
|
id: "notion",
|
|
669
673
|
name: "Notion",
|
|
670
674
|
icon: "notion",
|
|
675
|
+
category: "docs",
|
|
671
676
|
// LIVE — the Notion public OAuth integration is registered and
|
|
672
677
|
// NOTION_OAUTH_CLIENT_ID/SECRET/REDIRECT_URI are in Secret Manager
|
|
673
678
|
// (prod+dev). The backend NotionOAuthProvider is config-gated (503 if env
|
|
@@ -700,6 +705,7 @@ var INTEGRATION_REGISTRY = {
|
|
|
700
705
|
id: "azure_devops",
|
|
701
706
|
name: "Azure DevOps",
|
|
702
707
|
icon: "azure_devops",
|
|
708
|
+
category: "tracker",
|
|
703
709
|
// LIVE — the FIRST api_key (PAT) integration. No OAuth: Azure DevOps OAuth
|
|
704
710
|
// apps are being sunset by Microsoft in favor of Entra ID, and PATs are the
|
|
705
711
|
// native, reliable ADO auth. The user pastes their org URL + a PAT; the
|
|
@@ -747,12 +753,12 @@ var INTEGRATION_REGISTRY = {
|
|
|
747
753
|
id: "figma",
|
|
748
754
|
name: "Figma",
|
|
749
755
|
icon: "figma",
|
|
750
|
-
|
|
751
|
-
//
|
|
752
|
-
//
|
|
753
|
-
//
|
|
754
|
-
//
|
|
755
|
-
enabled:
|
|
756
|
+
category: "design",
|
|
757
|
+
// DARK — pending Figma's OAuth-app review approval (submitted 2026-07-16).
|
|
758
|
+
// Figma OAuth apps do NOT exist publicly until review passes (authorize URL
|
|
759
|
+
// errors "OAuth app ... doesn't exist"). Backend provider + secrets are
|
|
760
|
+
// already deployed; flip to true once approved (bead codeagent-m4ix).
|
|
761
|
+
enabled: false,
|
|
756
762
|
auth: {
|
|
757
763
|
kind: "oauth_redirect",
|
|
758
764
|
// Granular READ-ONLY scopes (legacy `files:read` is deprecated for
|
|
@@ -6018,7 +6024,7 @@ function readAnonId() {
|
|
|
6018
6024
|
}
|
|
6019
6025
|
function superProperties() {
|
|
6020
6026
|
return {
|
|
6021
|
-
cliVersion: true ? "2.61.
|
|
6027
|
+
cliVersion: true ? "2.61.15" : "0.0.0-dev",
|
|
6022
6028
|
nodeVersion: process.version,
|
|
6023
6029
|
platform: process.platform,
|
|
6024
6030
|
arch: process.arch,
|
|
@@ -6199,7 +6205,7 @@ var os4 = __toESM(require("os"));
|
|
|
6199
6205
|
// package.json
|
|
6200
6206
|
var package_default = {
|
|
6201
6207
|
name: "codeam-cli",
|
|
6202
|
-
version: "2.61.
|
|
6208
|
+
version: "2.61.15",
|
|
6203
6209
|
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.",
|
|
6204
6210
|
type: "commonjs",
|
|
6205
6211
|
main: "dist/index.js",
|
|
@@ -7342,7 +7348,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
7342
7348
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
7343
7349
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
7344
7350
|
// pair/reconnect). Older backends ignore the extra field.
|
|
7345
|
-
..."2.61.
|
|
7351
|
+
..."2.61.15" ? { ideVersion: "2.61.15" } : {}
|
|
7346
7352
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
7347
7353
|
}
|
|
7348
7354
|
/**
|
|
@@ -17943,7 +17949,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
17943
17949
|
if (process.env.NODE_ENV === "test") return;
|
|
17944
17950
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17945
17951
|
if (process.env.CI) return;
|
|
17946
|
-
const current = true ? "2.61.
|
|
17952
|
+
const current = true ? "2.61.15" : null;
|
|
17947
17953
|
if (!current) return;
|
|
17948
17954
|
const cache = readCache();
|
|
17949
17955
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17960,7 +17966,7 @@ function checkForUpdates() {
|
|
|
17960
17966
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17961
17967
|
if (process.env.CI) return;
|
|
17962
17968
|
if (!process.stdout.isTTY) return;
|
|
17963
|
-
const current = true ? "2.61.
|
|
17969
|
+
const current = true ? "2.61.15" : null;
|
|
17964
17970
|
if (!current) return;
|
|
17965
17971
|
const cache = readCache();
|
|
17966
17972
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17980,7 +17986,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
17980
17986
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
17981
17987
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
17982
17988
|
function currentCliVersion() {
|
|
17983
|
-
return true ? "2.61.
|
|
17989
|
+
return true ? "2.61.15" : null;
|
|
17984
17990
|
}
|
|
17985
17991
|
function runCmd(cmd, args2, timeoutMs) {
|
|
17986
17992
|
return new Promise((resolve8) => {
|
|
@@ -37539,7 +37545,7 @@ function checkChokidar() {
|
|
|
37539
37545
|
}
|
|
37540
37546
|
async function doctor(args2 = []) {
|
|
37541
37547
|
const json = args2.includes("--json");
|
|
37542
|
-
const cliVersion = true ? "2.61.
|
|
37548
|
+
const cliVersion = true ? "2.61.15" : "0.0.0-dev";
|
|
37543
37549
|
const apiBase2 = resolveApiBaseUrl();
|
|
37544
37550
|
const diagnosticId = (0, import_node_crypto12.randomUUID)();
|
|
37545
37551
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -38050,7 +38056,7 @@ async function mcpRun(args2) {
|
|
|
38050
38056
|
// src/commands/version.ts
|
|
38051
38057
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
38052
38058
|
function version2() {
|
|
38053
|
-
const v = true ? "2.61.
|
|
38059
|
+
const v = true ? "2.61.15" : "unknown";
|
|
38054
38060
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
38055
38061
|
}
|
|
38056
38062
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.15",
|
|
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",
|