codeam-cli 2.37.1 → 2.37.2
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 +12 -0
- package/dist/index.js +16 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ 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.1] — 2026-06-11
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **cli:** Persist ACP onboarding welcome to the conversation anchor
|
|
12
|
+
|
|
13
|
+
## [2.37.0] — 2026-06-11
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- **cli:** Agent sends a first onboarding welcome on a fresh pair
|
|
18
|
+
|
|
7
19
|
## [2.36.5] — 2026-06-11
|
|
8
20
|
|
|
9
21
|
### 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.2",
|
|
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.2" : "0.0.0-dev",
|
|
5904
5904
|
nodeVersion: process.version,
|
|
5905
5905
|
platform: process.platform,
|
|
5906
5906
|
arch: process.arch,
|
|
@@ -15380,19 +15380,25 @@ 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
|
|
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
|
|
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",
|
|
15393
|
+
" (https://github.com/edgar-durand/codeagent-mobile-clients/issues) or the Discord",
|
|
15394
|
+
" bugs channel (https://discord.gg/ADMKwGAB).",
|
|
15389
15395
|
`- End with a SHORT, concrete invitation tied to THIS project (working dir: ${cwd},`,
|
|
15390
15396
|
` repo: "${repo}") \u2014 suggest 1\u20132 specific things you could help with here.`,
|
|
15391
15397
|
"",
|
|
15392
15398
|
"Rules: do NOT run any tools or shell commands \u2014 base the project hint only on the",
|
|
15393
15399
|
'repo name/path above so your reply is instant. No preamble like "Sure" or "Of',
|
|
15394
15400
|
'course" \u2014 start directly with the greeting. Use light markdown (one intro line +',
|
|
15395
|
-
"a few bullets). Keep it tight."
|
|
15401
|
+
"a few bullets). Keep it tight despite the feature list."
|
|
15396
15402
|
].join("\n");
|
|
15397
15403
|
}
|
|
15398
15404
|
function maybeSendOnboardingWelcome(opts) {
|
|
@@ -26596,7 +26602,7 @@ function checkChokidar() {
|
|
|
26596
26602
|
}
|
|
26597
26603
|
async function doctor(args2 = []) {
|
|
26598
26604
|
const json = args2.includes("--json");
|
|
26599
|
-
const cliVersion = true ? "2.37.
|
|
26605
|
+
const cliVersion = true ? "2.37.2" : "0.0.0-dev";
|
|
26600
26606
|
const apiBase = resolveApiBaseUrl();
|
|
26601
26607
|
const diagnosticId = (0, import_node_crypto8.randomUUID)();
|
|
26602
26608
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -26795,7 +26801,7 @@ async function completion(args2) {
|
|
|
26795
26801
|
// src/commands/version.ts
|
|
26796
26802
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
26797
26803
|
function version2() {
|
|
26798
|
-
const v = true ? "2.37.
|
|
26804
|
+
const v = true ? "2.37.2" : "unknown";
|
|
26799
26805
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
26800
26806
|
}
|
|
26801
26807
|
|
|
@@ -27081,7 +27087,7 @@ function checkForUpdates() {
|
|
|
27081
27087
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
27082
27088
|
if (process.env.CI) return;
|
|
27083
27089
|
if (!process.stdout.isTTY) return;
|
|
27084
|
-
const current = true ? "2.37.
|
|
27090
|
+
const current = true ? "2.37.2" : null;
|
|
27085
27091
|
if (!current) return;
|
|
27086
27092
|
const cache = readCache();
|
|
27087
27093
|
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.2",
|
|
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",
|