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

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
@@ -8266,7 +8266,7 @@ async function checkApiHealth(client) {
8266
8266
  if (typeof client.request !== "function") {
8267
8267
  return { ok: false, message: "client.request not available" };
8268
8268
  }
8269
- await client.request("/api/health");
8269
+ await client.request("/health");
8270
8270
  return { ok: true, message: "OK" };
8271
8271
  } catch (e) {
8272
8272
  return { ok: false, message: e?.message ?? String(e) };
@@ -9500,7 +9500,7 @@ var init_status = __esm({
9500
9500
  context.addMessage("system", "=== MSapling Backend Status ===");
9501
9501
  let health = null;
9502
9502
  try {
9503
- health = await context.client["request"]("/api/health");
9503
+ health = await context.client["request"]("/health");
9504
9504
  const overallStatus = health?.status ?? "unknown";
9505
9505
  const color = statusColor(overallStatus);
9506
9506
  const label = statusLabel(overallStatus);
@@ -9691,7 +9691,7 @@ var init_version = __esm({
9691
9691
  description: "Show version information for CLI and core packages",
9692
9692
  category: "debug",
9693
9693
  handler: async (_args, context) => {
9694
- const cliVersion = true ? "2.3.6-beta.17" : "(dev)";
9694
+ const cliVersion = true ? "2.3.6-beta.18" : "(dev)";
9695
9695
  const coreVersion = true ? "2.3.2" : "(dev)";
9696
9696
  const runtime = process.version;
9697
9697
  context.addMessage("system", "MSapling Version Info");
@@ -9700,7 +9700,7 @@ var init_version = __esm({
9700
9700
  context.addMessage("system", row2("Core (@msapling/core)", coreVersion));
9701
9701
  context.addMessage("system", row2("Runtime (Node/Bun)", runtime));
9702
9702
  try {
9703
- const ts = "2026-05-28T16:29:43.918Z";
9703
+ const ts = "2026-05-28T17:29:33.881Z";
9704
9704
  if (ts && ts !== "__BUILD_TIMESTAMP__") {
9705
9705
  context.addMessage("system", row2("Build Timestamp", ts));
9706
9706
  }
@@ -10850,7 +10850,7 @@ async function checkNetworkReach() {
10850
10850
  try {
10851
10851
  const controller = new AbortController();
10852
10852
  const timeoutId = setTimeout(() => controller.abort(), timeout);
10853
- const response = await fetch(`${apiUrl}/api/health`, {
10853
+ const response = await fetch(`${apiUrl}/health`, {
10854
10854
  method: "HEAD",
10855
10855
  signal: controller.signal
10856
10856
  });
@@ -13368,7 +13368,7 @@ import { jsx, jsxs } from "react/jsx-runtime";
13368
13368
  var Header = () => /* @__PURE__ */ jsxs(Box, { borderStyle: "single", borderColor: "cyan", paddingX: 1, marginBottom: 1, children: [
13369
13369
  /* @__PURE__ */ jsxs(Text, { bold: true, color: "cyan", children: [
13370
13370
  "\u25CF MSapling CLI v",
13371
- "2.3.6-beta.17"
13371
+ "2.3.6-beta.18"
13372
13372
  ] }),
13373
13373
  /* @__PURE__ */ jsx(Box, { marginLeft: 2, children: /* @__PURE__ */ jsx(Text, { color: "gray", children: "Platinum Tier Architecture" }) })
13374
13374
  ] });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mtreeai/msapling-cli",
3
- "version": "2.3.6-beta.17",
3
+ "version": "2.3.6-beta.18",
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",