@mtreeai/msapling-cli 2.3.6-beta.54 → 2.3.6-beta.55

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 +9 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -16097,6 +16097,9 @@ var init_projectSettings = __esm({
16097
16097
  function resetModelCatalogCache() {
16098
16098
  catalogCache = /* @__PURE__ */ new WeakMap();
16099
16099
  }
16100
+ function modelPickerReadyMessage(_secretUrl) {
16101
+ return "Model picker opened in your browser (expires in five minutes).";
16102
+ }
16100
16103
  function price(value) {
16101
16104
  if (value === void 0 || value === null || value === "") return "?";
16102
16105
  const n2 = typeof value === "string" ? Number.parseFloat(value) : value;
@@ -16230,7 +16233,9 @@ var init_model = __esm({
16230
16233
  contextLength: model2.context_length ?? null
16231
16234
  }));
16232
16235
  const selected = context.pickModel ? await context.pickModel(pickerRows, current) : await openModelPicker(pickerRows, current, {
16233
- onReady: (url) => context.addMessage("system", `Model picker: ${url}`)
16236
+ // The URL fragment contains the one-time API credential. The
16237
+ // browser receives it directly; never persist it in chat logs.
16238
+ onReady: (url) => context.addMessage("system", modelPickerReadyMessage(url))
16234
16239
  });
16235
16240
  if (!selected) {
16236
16241
  context.addMessage("system", "Model selection cancelled or expired.");
@@ -18599,7 +18604,7 @@ var init_version = __esm({
18599
18604
  description: "Show version information for CLI and core packages",
18600
18605
  category: "debug",
18601
18606
  handler: async (_args, context) => {
18602
- const cliVersion = true ? "2.3.6-beta.54" : "(dev)";
18607
+ const cliVersion = true ? "2.3.6-beta.55" : "(dev)";
18603
18608
  const coreVersion = true ? "2.3.6-beta.43" : "(dev)";
18604
18609
  const runtime = process.version;
18605
18610
  context.addMessage("system", "MSapling Version Info");
@@ -18608,7 +18613,7 @@ var init_version = __esm({
18608
18613
  context.addMessage("system", row2("Core (@msapling/core)", coreVersion));
18609
18614
  context.addMessage("system", row2("Runtime (Node/Bun)", runtime));
18610
18615
  try {
18611
- const ts = "2026-08-12T06:13:46.315Z";
18616
+ const ts = "2026-08-12T06:20:51.782Z";
18612
18617
  if (ts && ts !== "__BUILD_TIMESTAMP__") {
18613
18618
  context.addMessage("system", row2("Build Timestamp", ts));
18614
18619
  }
@@ -23122,7 +23127,7 @@ import { jsx, jsxs } from "react/jsx-runtime";
23122
23127
  var Header = () => /* @__PURE__ */ jsxs(Box, { borderStyle: "single", borderColor: "cyan", paddingX: 1, marginBottom: 1, children: [
23123
23128
  /* @__PURE__ */ jsxs(Text, { bold: true, color: "cyan", children: [
23124
23129
  "\u25CF MSapling CLI v",
23125
- "2.3.6-beta.54"
23130
+ "2.3.6-beta.55"
23126
23131
  ] }),
23127
23132
  /* @__PURE__ */ jsx(Box, { marginLeft: 2, children: /* @__PURE__ */ jsx(Text, { color: "gray", children: "Platinum Tier Architecture" }) })
23128
23133
  ] });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mtreeai/msapling-cli",
3
- "version": "2.3.6-beta.54",
3
+ "version": "2.3.6-beta.55",
4
4
  "description": "MSapling CLI — React/Ink terminal client for the MSapling backend (chat, projects, MDrive, agent tools). Proprietary; redistribution prohibited.",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "author": "MSapling Team",