codeam-cli 2.37.2 → 2.37.3
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 +12 -9
- 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.37.2] — 2026-06-11
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **cli:** Surface core features + collab channels in onboarding welcome
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- **cli:** Persist ACP onboarding welcome to the conversation anchor
|
|
16
|
+
|
|
7
17
|
## [2.37.1] — 2026-06-11
|
|
8
18
|
|
|
9
19
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -498,7 +498,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
498
498
|
// package.json
|
|
499
499
|
var package_default = {
|
|
500
500
|
name: "codeam-cli",
|
|
501
|
-
version: "2.37.
|
|
501
|
+
version: "2.37.3",
|
|
502
502
|
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.",
|
|
503
503
|
type: "commonjs",
|
|
504
504
|
main: "dist/index.js",
|
|
@@ -5900,7 +5900,7 @@ function readAnonId() {
|
|
|
5900
5900
|
}
|
|
5901
5901
|
function superProperties() {
|
|
5902
5902
|
return {
|
|
5903
|
-
cliVersion: true ? "2.37.
|
|
5903
|
+
cliVersion: true ? "2.37.3" : "0.0.0-dev",
|
|
5904
5904
|
nodeVersion: process.version,
|
|
5905
5905
|
platform: process.platform,
|
|
5906
5906
|
arch: process.arch,
|
|
@@ -15389,16 +15389,19 @@ function buildOnboardingPrompt(cwd) {
|
|
|
15389
15389
|
" \u2022 a full integrated IDE powered by Monaco \u2014 edit code, live preview, rich visual output (NOT just a file viewer);",
|
|
15390
15390
|
" \u2022 Smart Composer \u2014 helps them craft and structure prompts;",
|
|
15391
15391
|
" \u2022 Team Spaces \u2014 share this session with their team to collaborate, or hand a session to someone else.",
|
|
15392
|
-
"- Invite them to share feedback or report any issue via GitHub",
|
|
15393
|
-
"
|
|
15394
|
-
"
|
|
15392
|
+
"- Invite them to share feedback or report any issue via GitHub or the Discord",
|
|
15393
|
+
" bugs channel. Include BOTH of these URLs in full, EXACTLY as written here",
|
|
15394
|
+
" (keep the https:// scheme on each so the app renders them as tappable links):",
|
|
15395
|
+
" https://github.com/edgar-durand/codeagent-mobile-clients/issues",
|
|
15396
|
+
" https://discord.gg/ADMKwGAB",
|
|
15395
15397
|
`- End with a SHORT, concrete invitation tied to THIS project (working dir: ${cwd},`,
|
|
15396
15398
|
` repo: "${repo}") \u2014 suggest 1\u20132 specific things you could help with here.`,
|
|
15397
15399
|
"",
|
|
15398
15400
|
"Rules: do NOT run any tools or shell commands \u2014 base the project hint only on the",
|
|
15399
15401
|
'repo name/path above so your reply is instant. No preamble like "Sure" or "Of',
|
|
15400
15402
|
'course" \u2014 start directly with the greeting. Use light markdown (one intro line +',
|
|
15401
|
-
"a few bullets).
|
|
15403
|
+
"a few bullets). NEVER shorten a URL or drop its https:// scheme \u2014 paste each link",
|
|
15404
|
+
"verbatim so both render as navigable links. Keep it tight despite the feature list."
|
|
15402
15405
|
].join("\n");
|
|
15403
15406
|
}
|
|
15404
15407
|
function maybeSendOnboardingWelcome(opts) {
|
|
@@ -26602,7 +26605,7 @@ function checkChokidar() {
|
|
|
26602
26605
|
}
|
|
26603
26606
|
async function doctor(args2 = []) {
|
|
26604
26607
|
const json = args2.includes("--json");
|
|
26605
|
-
const cliVersion = true ? "2.37.
|
|
26608
|
+
const cliVersion = true ? "2.37.3" : "0.0.0-dev";
|
|
26606
26609
|
const apiBase = resolveApiBaseUrl();
|
|
26607
26610
|
const diagnosticId = (0, import_node_crypto8.randomUUID)();
|
|
26608
26611
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -26801,7 +26804,7 @@ async function completion(args2) {
|
|
|
26801
26804
|
// src/commands/version.ts
|
|
26802
26805
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
26803
26806
|
function version2() {
|
|
26804
|
-
const v = true ? "2.37.
|
|
26807
|
+
const v = true ? "2.37.3" : "unknown";
|
|
26805
26808
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
26806
26809
|
}
|
|
26807
26810
|
|
|
@@ -27087,7 +27090,7 @@ function checkForUpdates() {
|
|
|
27087
27090
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
27088
27091
|
if (process.env.CI) return;
|
|
27089
27092
|
if (!process.stdout.isTTY) return;
|
|
27090
|
-
const current = true ? "2.37.
|
|
27093
|
+
const current = true ? "2.37.3" : null;
|
|
27091
27094
|
if (!current) return;
|
|
27092
27095
|
const cache = readCache();
|
|
27093
27096
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.37.
|
|
3
|
+
"version": "2.37.3",
|
|
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",
|