codeam-cli 2.37.1 → 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 CHANGED
@@ -4,6 +4,28 @@ 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
+
17
+ ## [2.37.1] — 2026-06-11
18
+
19
+ ### Fixed
20
+
21
+ - **cli:** Persist ACP onboarding welcome to the conversation anchor
22
+
23
+ ## [2.37.0] — 2026-06-11
24
+
25
+ ### Added
26
+
27
+ - **cli:** Agent sends a first onboarding welcome on a fresh pair
28
+
7
29
  ## [2.36.5] — 2026-06-11
8
30
 
9
31
  ### 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.1",
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.1" : "0.0.0-dev",
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,
@@ -15380,19 +15380,28 @@ function buildOnboardingPrompt(cwd) {
15380
15380
  "card. Take the initiative and write THEIR first message: a short, warm",
15381
15381
  "onboarding welcome that you (the agent) send proactively to invite them to start.",
15382
15382
  "",
15383
- "Write it for a phone screen \u2014 under ~110 words, friendly, easy to scan, a little",
15384
- "energy. Cover briefly, in your own words:",
15383
+ "Write it for a phone screen \u2014 aim ~160 words, friendly, easy to scan, a little",
15384
+ "energy. Cover briefly, in your own words (give the core features visibility):",
15385
15385
  "- Glad they spun up this session.",
15386
- "- Through CodeAgent Mobile, agents like you get native context, persistent",
15386
+ "- Through CodeAgent Mobile, agents like you get native repo context, persistent",
15387
15387
  " memory, and an issue tracker \u2014 powered by Beads on Dolt \u2014 out of the box, zero setup.",
15388
- "- They can drive you from their phone: live preview, rich visual output, a file viewer.",
15388
+ "- They can drive you from their phone, with real core features:",
15389
+ " \u2022 a full integrated IDE powered by Monaco \u2014 edit code, live preview, rich visual output (NOT just a file viewer);",
15390
+ " \u2022 Smart Composer \u2014 helps them craft and structure prompts;",
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 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",
15389
15397
  `- End with a SHORT, concrete invitation tied to THIS project (working dir: ${cwd},`,
15390
15398
  ` repo: "${repo}") \u2014 suggest 1\u20132 specific things you could help with here.`,
15391
15399
  "",
15392
15400
  "Rules: do NOT run any tools or shell commands \u2014 base the project hint only on the",
15393
15401
  'repo name/path above so your reply is instant. No preamble like "Sure" or "Of',
15394
15402
  'course" \u2014 start directly with the greeting. Use light markdown (one intro line +',
15395
- "a few bullets). Keep it tight."
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."
15396
15405
  ].join("\n");
15397
15406
  }
15398
15407
  function maybeSendOnboardingWelcome(opts) {
@@ -26596,7 +26605,7 @@ function checkChokidar() {
26596
26605
  }
26597
26606
  async function doctor(args2 = []) {
26598
26607
  const json = args2.includes("--json");
26599
- const cliVersion = true ? "2.37.1" : "0.0.0-dev";
26608
+ const cliVersion = true ? "2.37.3" : "0.0.0-dev";
26600
26609
  const apiBase = resolveApiBaseUrl();
26601
26610
  const diagnosticId = (0, import_node_crypto8.randomUUID)();
26602
26611
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -26795,7 +26804,7 @@ async function completion(args2) {
26795
26804
  // src/commands/version.ts
26796
26805
  var import_picocolors13 = __toESM(require("picocolors"));
26797
26806
  function version2() {
26798
- const v = true ? "2.37.1" : "unknown";
26807
+ const v = true ? "2.37.3" : "unknown";
26799
26808
  console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
26800
26809
  }
26801
26810
 
@@ -27081,7 +27090,7 @@ function checkForUpdates() {
27081
27090
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
27082
27091
  if (process.env.CI) return;
27083
27092
  if (!process.stdout.isTTY) return;
27084
- const current = true ? "2.37.1" : null;
27093
+ const current = true ? "2.37.3" : null;
27085
27094
  if (!current) return;
27086
27095
  const cache = readCache();
27087
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.1",
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",