codeam-cli 2.61.76 → 2.61.77
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 +43 -8
- 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.76] — 2026-07-30
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** Add code-naming Agent Skill (CodeAesthetic naming guidelines) (#572)
|
|
12
|
+
|
|
7
13
|
## [2.61.75] — 2026-07-29
|
|
8
14
|
|
|
9
15
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -1516,6 +1516,41 @@ var INTEGRATION_REGISTRY = {
|
|
|
1516
1516
|
}
|
|
1517
1517
|
}
|
|
1518
1518
|
},
|
|
1519
|
+
convex: {
|
|
1520
|
+
id: "convex",
|
|
1521
|
+
name: "Convex",
|
|
1522
|
+
icon: "convex",
|
|
1523
|
+
category: "database",
|
|
1524
|
+
// LIVE — OAuth 2.0 (authorization code, Confidential). authorize
|
|
1525
|
+
// dashboard.convex.dev/oauth/authorize/team (the scope is the URL PATH —
|
|
1526
|
+
// `team` for team-wide access — NOT a query param); token
|
|
1527
|
+
// api.convex.dev/oauth/token (form-urlencoded, client creds in the BODY).
|
|
1528
|
+
// ⚠️ Convex issues NO refresh token and the team-scoped application token
|
|
1529
|
+
// does not expire, so there is nothing to rotate (refresh() is a re-link
|
|
1530
|
+
// surface). The OAuth app (Team Settings → OAuth Applications) is registered
|
|
1531
|
+
// and CONVEX_OAUTH_CLIENT_ID/SECRET/REDIRECT_URI are in Secret Manager
|
|
1532
|
+
// (prod+dev); the config-gated 503 keeps this safe mid-rollout.
|
|
1533
|
+
enabled: true,
|
|
1534
|
+
auth: {
|
|
1535
|
+
kind: "oauth_redirect",
|
|
1536
|
+
// ⚠️ Convex's scope is the authorize URL path (`/team`), NOT sent in the
|
|
1537
|
+
// authorize URL as a query param — this list is informational.
|
|
1538
|
+
scopes: []
|
|
1539
|
+
},
|
|
1540
|
+
delivery: {
|
|
1541
|
+
mcp: {
|
|
1542
|
+
// Convex's OFFICIAL MCP server ships inside the `convex` npm package
|
|
1543
|
+
// (`convex mcp start`). The team-scoped OAuth application token doubles
|
|
1544
|
+
// as the CLI/MCP deploy key → fed via CONVEX_DEPLOY_KEY (env only, never
|
|
1545
|
+
// argv). Version PINNED; bump only after re-verifying headless.
|
|
1546
|
+
command: "npx",
|
|
1547
|
+
args: ["-y", "convex@1.42.3", "mcp", "start"],
|
|
1548
|
+
envMapping: {
|
|
1549
|
+
CONVEX_DEPLOY_KEY: "accessToken"
|
|
1550
|
+
}
|
|
1551
|
+
}
|
|
1552
|
+
}
|
|
1553
|
+
},
|
|
1519
1554
|
confluence: {
|
|
1520
1555
|
id: "confluence",
|
|
1521
1556
|
name: "Confluence",
|
|
@@ -7173,7 +7208,7 @@ function readAnonId() {
|
|
|
7173
7208
|
}
|
|
7174
7209
|
function superProperties() {
|
|
7175
7210
|
return {
|
|
7176
|
-
cliVersion: true ? "2.61.
|
|
7211
|
+
cliVersion: true ? "2.61.77" : "0.0.0-dev",
|
|
7177
7212
|
nodeVersion: process.version,
|
|
7178
7213
|
platform: process.platform,
|
|
7179
7214
|
arch: process.arch,
|
|
@@ -7354,7 +7389,7 @@ var os4 = __toESM(require("os"));
|
|
|
7354
7389
|
// package.json
|
|
7355
7390
|
var package_default = {
|
|
7356
7391
|
name: "codeam-cli",
|
|
7357
|
-
version: "2.61.
|
|
7392
|
+
version: "2.61.77",
|
|
7358
7393
|
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.",
|
|
7359
7394
|
type: "commonjs",
|
|
7360
7395
|
main: "dist/index.js",
|
|
@@ -8586,7 +8621,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
8586
8621
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
8587
8622
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
8588
8623
|
// pair/reconnect). Older backends ignore the extra field.
|
|
8589
|
-
..."2.61.
|
|
8624
|
+
..."2.61.77" ? { ideVersion: "2.61.77" } : {}
|
|
8590
8625
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
8591
8626
|
}
|
|
8592
8627
|
/**
|
|
@@ -19700,7 +19735,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
19700
19735
|
if (process.env.NODE_ENV === "test") return;
|
|
19701
19736
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
19702
19737
|
if (process.env.CI) return;
|
|
19703
|
-
const current = true ? "2.61.
|
|
19738
|
+
const current = true ? "2.61.77" : null;
|
|
19704
19739
|
if (!current) return;
|
|
19705
19740
|
const cache = readCache();
|
|
19706
19741
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -19717,7 +19752,7 @@ function checkForUpdates() {
|
|
|
19717
19752
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
19718
19753
|
if (process.env.CI) return;
|
|
19719
19754
|
if (!process.stdout.isTTY) return;
|
|
19720
|
-
const current = true ? "2.61.
|
|
19755
|
+
const current = true ? "2.61.77" : null;
|
|
19721
19756
|
if (!current) return;
|
|
19722
19757
|
const cache = readCache();
|
|
19723
19758
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -19737,7 +19772,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
19737
19772
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
19738
19773
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
19739
19774
|
function currentCliVersion() {
|
|
19740
|
-
return true ? "2.61.
|
|
19775
|
+
return true ? "2.61.77" : null;
|
|
19741
19776
|
}
|
|
19742
19777
|
function runCmd(cmd, args2, timeoutMs) {
|
|
19743
19778
|
return new Promise((resolve9) => {
|
|
@@ -40220,7 +40255,7 @@ function checkChokidar() {
|
|
|
40220
40255
|
}
|
|
40221
40256
|
async function doctor(args2 = []) {
|
|
40222
40257
|
const json = args2.includes("--json");
|
|
40223
|
-
const cliVersion = true ? "2.61.
|
|
40258
|
+
const cliVersion = true ? "2.61.77" : "0.0.0-dev";
|
|
40224
40259
|
const apiBase2 = resolveApiBaseUrl();
|
|
40225
40260
|
const diagnosticId = (0, import_node_crypto13.randomUUID)();
|
|
40226
40261
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -40742,7 +40777,7 @@ async function mcpRun(args2) {
|
|
|
40742
40777
|
// src/commands/version.ts
|
|
40743
40778
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
40744
40779
|
function version2() {
|
|
40745
|
-
const v = true ? "2.61.
|
|
40780
|
+
const v = true ? "2.61.77" : "unknown";
|
|
40746
40781
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
40747
40782
|
}
|
|
40748
40783
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.77",
|
|
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",
|