codeam-cli 2.61.13 → 2.61.14
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 +13 -14
- 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.13] — 2026-07-17
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** Add figma integration (read-only, figma-developer-mcp@0.13.2)
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- **cli:** Complete RemoteCommand literal in resume-session test (typecheck gate)
|
|
16
|
+
|
|
7
17
|
## [2.61.11] — 2026-07-16
|
|
8
18
|
|
|
9
19
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -747,12 +747,11 @@ var INTEGRATION_REGISTRY = {
|
|
|
747
747
|
id: "figma",
|
|
748
748
|
name: "Figma",
|
|
749
749
|
icon: "figma",
|
|
750
|
-
//
|
|
751
|
-
//
|
|
752
|
-
//
|
|
753
|
-
//
|
|
754
|
-
|
|
755
|
-
enabled: true,
|
|
750
|
+
// DARK — pending Figma's OAuth-app review approval (submitted 2026-07-16).
|
|
751
|
+
// Figma OAuth apps do NOT exist publicly until review passes (authorize URL
|
|
752
|
+
// errors "OAuth app ... doesn't exist"). Backend provider + secrets are
|
|
753
|
+
// already deployed; flip to true once approved (bead codeagent-m4ix).
|
|
754
|
+
enabled: false,
|
|
756
755
|
auth: {
|
|
757
756
|
kind: "oauth_redirect",
|
|
758
757
|
// Granular READ-ONLY scopes (legacy `files:read` is deprecated for
|
|
@@ -6018,7 +6017,7 @@ function readAnonId() {
|
|
|
6018
6017
|
}
|
|
6019
6018
|
function superProperties() {
|
|
6020
6019
|
return {
|
|
6021
|
-
cliVersion: true ? "2.61.
|
|
6020
|
+
cliVersion: true ? "2.61.14" : "0.0.0-dev",
|
|
6022
6021
|
nodeVersion: process.version,
|
|
6023
6022
|
platform: process.platform,
|
|
6024
6023
|
arch: process.arch,
|
|
@@ -6199,7 +6198,7 @@ var os4 = __toESM(require("os"));
|
|
|
6199
6198
|
// package.json
|
|
6200
6199
|
var package_default = {
|
|
6201
6200
|
name: "codeam-cli",
|
|
6202
|
-
version: "2.61.
|
|
6201
|
+
version: "2.61.14",
|
|
6203
6202
|
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
6203
|
type: "commonjs",
|
|
6205
6204
|
main: "dist/index.js",
|
|
@@ -7342,7 +7341,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
7342
7341
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
7343
7342
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
7344
7343
|
// pair/reconnect). Older backends ignore the extra field.
|
|
7345
|
-
..."2.61.
|
|
7344
|
+
..."2.61.14" ? { ideVersion: "2.61.14" } : {}
|
|
7346
7345
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
7347
7346
|
}
|
|
7348
7347
|
/**
|
|
@@ -17943,7 +17942,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
17943
17942
|
if (process.env.NODE_ENV === "test") return;
|
|
17944
17943
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17945
17944
|
if (process.env.CI) return;
|
|
17946
|
-
const current = true ? "2.61.
|
|
17945
|
+
const current = true ? "2.61.14" : null;
|
|
17947
17946
|
if (!current) return;
|
|
17948
17947
|
const cache = readCache();
|
|
17949
17948
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17960,7 +17959,7 @@ function checkForUpdates() {
|
|
|
17960
17959
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17961
17960
|
if (process.env.CI) return;
|
|
17962
17961
|
if (!process.stdout.isTTY) return;
|
|
17963
|
-
const current = true ? "2.61.
|
|
17962
|
+
const current = true ? "2.61.14" : null;
|
|
17964
17963
|
if (!current) return;
|
|
17965
17964
|
const cache = readCache();
|
|
17966
17965
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17980,7 +17979,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
17980
17979
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
17981
17980
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
17982
17981
|
function currentCliVersion() {
|
|
17983
|
-
return true ? "2.61.
|
|
17982
|
+
return true ? "2.61.14" : null;
|
|
17984
17983
|
}
|
|
17985
17984
|
function runCmd(cmd, args2, timeoutMs) {
|
|
17986
17985
|
return new Promise((resolve8) => {
|
|
@@ -37539,7 +37538,7 @@ function checkChokidar() {
|
|
|
37539
37538
|
}
|
|
37540
37539
|
async function doctor(args2 = []) {
|
|
37541
37540
|
const json = args2.includes("--json");
|
|
37542
|
-
const cliVersion = true ? "2.61.
|
|
37541
|
+
const cliVersion = true ? "2.61.14" : "0.0.0-dev";
|
|
37543
37542
|
const apiBase2 = resolveApiBaseUrl();
|
|
37544
37543
|
const diagnosticId = (0, import_node_crypto12.randomUUID)();
|
|
37545
37544
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -38050,7 +38049,7 @@ async function mcpRun(args2) {
|
|
|
38050
38049
|
// src/commands/version.ts
|
|
38051
38050
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
38052
38051
|
function version2() {
|
|
38053
|
-
const v = true ? "2.61.
|
|
38052
|
+
const v = true ? "2.61.14" : "unknown";
|
|
38054
38053
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
38055
38054
|
}
|
|
38056
38055
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.14",
|
|
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",
|