@mtreeai/msapling-cli 2.3.6-beta.18 → 2.3.6-beta.19

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 +11 -8
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -9316,11 +9316,14 @@ HW at start: ${hw.cores}-core ${hw.platform} | CPU ${hw.cpuPct}% | RAM ${hw.ramP
9316
9316
  }
9317
9317
  try {
9318
9318
  const hwRound = takeSnapshot();
9319
- const resp = await context.client.post("/api/benchmark/run", {
9320
- models,
9321
- prompts: DEFAULT_PROMPTS,
9322
- byok: false,
9323
- hw_context: hwCtx
9319
+ const resp = await context.client.request("/api/benchmark/run", {
9320
+ method: "POST",
9321
+ body: JSON.stringify({
9322
+ models,
9323
+ prompts: DEFAULT_PROMPTS,
9324
+ byok: false,
9325
+ hw_context: hwCtx
9326
+ })
9324
9327
  });
9325
9328
  const items = Array.isArray(resp) ? resp : resp?.results ?? [];
9326
9329
  for (const item of items) {
@@ -9691,7 +9694,7 @@ var init_version = __esm({
9691
9694
  description: "Show version information for CLI and core packages",
9692
9695
  category: "debug",
9693
9696
  handler: async (_args, context) => {
9694
- const cliVersion = true ? "2.3.6-beta.18" : "(dev)";
9697
+ const cliVersion = true ? "2.3.6-beta.19" : "(dev)";
9695
9698
  const coreVersion = true ? "2.3.2" : "(dev)";
9696
9699
  const runtime = process.version;
9697
9700
  context.addMessage("system", "MSapling Version Info");
@@ -9700,7 +9703,7 @@ var init_version = __esm({
9700
9703
  context.addMessage("system", row2("Core (@msapling/core)", coreVersion));
9701
9704
  context.addMessage("system", row2("Runtime (Node/Bun)", runtime));
9702
9705
  try {
9703
- const ts = "2026-05-28T17:29:33.881Z";
9706
+ const ts = "2026-05-28T18:28:54.068Z";
9704
9707
  if (ts && ts !== "__BUILD_TIMESTAMP__") {
9705
9708
  context.addMessage("system", row2("Build Timestamp", ts));
9706
9709
  }
@@ -13368,7 +13371,7 @@ import { jsx, jsxs } from "react/jsx-runtime";
13368
13371
  var Header = () => /* @__PURE__ */ jsxs(Box, { borderStyle: "single", borderColor: "cyan", paddingX: 1, marginBottom: 1, children: [
13369
13372
  /* @__PURE__ */ jsxs(Text, { bold: true, color: "cyan", children: [
13370
13373
  "\u25CF MSapling CLI v",
13371
- "2.3.6-beta.18"
13374
+ "2.3.6-beta.19"
13372
13375
  ] }),
13373
13376
  /* @__PURE__ */ jsx(Box, { marginLeft: 2, children: /* @__PURE__ */ jsx(Text, { color: "gray", children: "Platinum Tier Architecture" }) })
13374
13377
  ] });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mtreeai/msapling-cli",
3
- "version": "2.3.6-beta.18",
3
+ "version": "2.3.6-beta.19",
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",