@mtreeai/msapling-cli 2.3.6-beta.37 → 2.3.6-beta.38
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/dist/index.js +6 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -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.
|
|
12383
|
+
const cliVersion = true ? "2.3.6-beta.38" : "(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:
|
|
12392
|
+
const ts = "2026-06-02T15:24:09.781Z";
|
|
12393
12393
|
if (ts && ts !== "__BUILD_TIMESTAMP__") {
|
|
12394
12394
|
context.addMessage("system", row2("Build Timestamp", ts));
|
|
12395
12395
|
}
|
|
@@ -13158,13 +13158,11 @@ var init_image = __esm({
|
|
|
13158
13158
|
for (let i = 0; i < args2.length; i++) {
|
|
13159
13159
|
if (args2[i] === "--model" && i + 1 < args2.length) {
|
|
13160
13160
|
model = args2[++i];
|
|
13161
|
-
|
|
13162
|
-
}
|
|
13163
|
-
if (args2[i] === "--output" && i + 1 < args2.length) {
|
|
13161
|
+
} else if (args2[i] === "--output" && i + 1 < args2.length) {
|
|
13164
13162
|
outputFile = args2[++i];
|
|
13165
|
-
|
|
13163
|
+
} else {
|
|
13164
|
+
prompt4 += (prompt4 ? " " : "") + args2[i];
|
|
13166
13165
|
}
|
|
13167
|
-
prompt4 += (prompt4 ? " " : "") + args2[i];
|
|
13168
13166
|
}
|
|
13169
13167
|
if (!prompt4) {
|
|
13170
13168
|
context.addMessage("system", "Usage: /image <prompt> [--model MODEL] [--output FILE]");
|
|
@@ -17907,7 +17905,7 @@ import { jsx, jsxs } from "react/jsx-runtime";
|
|
|
17907
17905
|
var Header = () => /* @__PURE__ */ jsxs(Box, { borderStyle: "single", borderColor: "cyan", paddingX: 1, marginBottom: 1, children: [
|
|
17908
17906
|
/* @__PURE__ */ jsxs(Text, { bold: true, color: "cyan", children: [
|
|
17909
17907
|
"\u25CF MSapling CLI v",
|
|
17910
|
-
"2.3.6-beta.
|
|
17908
|
+
"2.3.6-beta.38"
|
|
17911
17909
|
] }),
|
|
17912
17910
|
/* @__PURE__ */ jsx(Box, { marginLeft: 2, children: /* @__PURE__ */ jsx(Text, { color: "gray", children: "Platinum Tier Architecture" }) })
|
|
17913
17911
|
] });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mtreeai/msapling-cli",
|
|
3
|
-
"version": "2.3.6-beta.
|
|
3
|
+
"version": "2.3.6-beta.38",
|
|
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",
|