@mtreeai/msapling-cli 2.3.6-beta.39 → 2.3.6-beta.40

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -10455,7 +10455,7 @@ function resolveChat(arg, chats) {
10455
10455
  if (matches2.length > 1) {
10456
10456
  return {
10457
10457
  kind: "error",
10458
- message: `'${trimmed}' matches ${matches2.length} chats: ${matches2.map((m) => m.title).join(", ")}`
10458
+ message: `'${trimmed}' matches ${matches2.length} chats: ${matches2.map((m) => m.title ?? m.id).join(", ")}`
10459
10459
  };
10460
10460
  }
10461
10461
  return { kind: "error", message: `no chat matches '${trimmed}'. Run /chat (no args) for the list.` };
@@ -11230,7 +11230,7 @@ Current: ${current}`);
11230
11230
  if (subs.length > 1 && subs.length <= 10) {
11231
11231
  context.addMessage(
11232
11232
  "error",
11233
- `'${trimmed}' matches ${subs.length} models: ${subs.map((m) => m.id).join(", ")}`
11233
+ `'${trimmed}' matches ${subs.length} models: ${subs.map((m) => m.id ?? "?").join(", ")}`
11234
11234
  );
11235
11235
  return;
11236
11236
  }
@@ -11396,7 +11396,7 @@ function resolveProject(arg, list2) {
11396
11396
  if (matches2.length > 1) {
11397
11397
  return {
11398
11398
  kind: "error",
11399
- message: `'${trimmed}' matches ${matches2.length} projects: ${matches2.map((m) => m.name).join(", ")}`
11399
+ message: `'${trimmed}' matches ${matches2.length} projects: ${matches2.map((m) => m.name ?? m.id).join(", ")}`
11400
11400
  };
11401
11401
  }
11402
11402
  return { kind: "error", message: `no project matches '${trimmed}'. Run /project (no args) for the list.` };
@@ -12380,7 +12380,7 @@ var init_version = __esm({
12380
12380
  description: "Show version information for CLI and core packages",
12381
12381
  category: "debug",
12382
12382
  handler: async (_args, context) => {
12383
- const cliVersion = true ? "2.3.6-beta.39" : "(dev)";
12383
+ const cliVersion = true ? "2.3.6-beta.40" : "(dev)";
12384
12384
  const coreVersion = true ? "2.3.2" : "(dev)";
12385
12385
  const runtime = process.version;
12386
12386
  context.addMessage("system", "MSapling Version Info");
@@ -12389,7 +12389,7 @@ var init_version = __esm({
12389
12389
  context.addMessage("system", row2("Core (@msapling/core)", coreVersion));
12390
12390
  context.addMessage("system", row2("Runtime (Node/Bun)", runtime));
12391
12391
  try {
12392
- const ts = "2026-06-02T15:25:43.157Z";
12392
+ const ts = "2026-06-02T15:27:42.676Z";
12393
12393
  if (ts && ts !== "__BUILD_TIMESTAMP__") {
12394
12394
  context.addMessage("system", row2("Build Timestamp", ts));
12395
12395
  }
@@ -17905,7 +17905,7 @@ import { jsx, jsxs } from "react/jsx-runtime";
17905
17905
  var Header = () => /* @__PURE__ */ jsxs(Box, { borderStyle: "single", borderColor: "cyan", paddingX: 1, marginBottom: 1, children: [
17906
17906
  /* @__PURE__ */ jsxs(Text, { bold: true, color: "cyan", children: [
17907
17907
  "\u25CF MSapling CLI v",
17908
- "2.3.6-beta.39"
17908
+ "2.3.6-beta.40"
17909
17909
  ] }),
17910
17910
  /* @__PURE__ */ jsx(Box, { marginLeft: 2, children: /* @__PURE__ */ jsx(Text, { color: "gray", children: "Platinum Tier Architecture" }) })
17911
17911
  ] });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mtreeai/msapling-cli",
3
- "version": "2.3.6-beta.39",
3
+ "version": "2.3.6-beta.40",
4
4
  "description": "MSapling CLI — React/Ink terminal client for the MSapling backend (chat, projects, MDrive, agent tools). Proprietary; redistribution prohibited.",
5
5
  "license": "UNLICENSED",
6
6
  "author": "MSapling Team",