@mtreeai/msapling-cli 2.3.6-beta.52 → 2.3.6-beta.53
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/LICENSE +1 -1
- package/README.md +2 -2
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -2,7 +2,7 @@ MSapling CLI — Proprietary License
|
|
|
2
2
|
Copyright (c) 2026 MSapling / MTreeAI. All rights reserved.
|
|
3
3
|
|
|
4
4
|
This software, the source code in this repository, and the published
|
|
5
|
-
`@mtreeai/msapling-cli` npm
|
|
5
|
+
`@mtreeai/msapling-cli` and `msapling` npm packages (collectively, "the Software") are the
|
|
6
6
|
proprietary property of MSapling / MTreeAI.
|
|
7
7
|
|
|
8
8
|
PERMITTED USE
|
package/README.md
CHANGED
|
@@ -7,12 +7,12 @@ MSapling CLI is the React/TypeScript terminal client for the MSapling backend.
|
|
|
7
7
|
Install the MSapling CLI globally via npm:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install -g
|
|
10
|
+
npm install -g msapling@beta
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
**Requirements:** Node.js 20.10 or higher.
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
The short `msapling` package and compatibility package `@mtreeai/msapling-cli` contain the same CLI bundle. Both use the `beta` dist-tag during prerelease testing.
|
|
16
16
|
|
|
17
17
|
## First Run
|
|
18
18
|
|
package/dist/index.js
CHANGED
|
@@ -18604,7 +18604,7 @@ var init_version = __esm({
|
|
|
18604
18604
|
description: "Show version information for CLI and core packages",
|
|
18605
18605
|
category: "debug",
|
|
18606
18606
|
handler: async (_args, context) => {
|
|
18607
|
-
const cliVersion = true ? "2.3.6-beta.
|
|
18607
|
+
const cliVersion = true ? "2.3.6-beta.53" : "(dev)";
|
|
18608
18608
|
const coreVersion = true ? "2.3.6-beta.43" : "(dev)";
|
|
18609
18609
|
const runtime = process.version;
|
|
18610
18610
|
context.addMessage("system", "MSapling Version Info");
|
|
@@ -18613,7 +18613,7 @@ var init_version = __esm({
|
|
|
18613
18613
|
context.addMessage("system", row2("Core (@msapling/core)", coreVersion));
|
|
18614
18614
|
context.addMessage("system", row2("Runtime (Node/Bun)", runtime));
|
|
18615
18615
|
try {
|
|
18616
|
-
const ts = "2026-08-
|
|
18616
|
+
const ts = "2026-08-12T03:02:20.879Z";
|
|
18617
18617
|
if (ts && ts !== "__BUILD_TIMESTAMP__") {
|
|
18618
18618
|
context.addMessage("system", row2("Build Timestamp", ts));
|
|
18619
18619
|
}
|
|
@@ -23127,7 +23127,7 @@ import { jsx, jsxs } from "react/jsx-runtime";
|
|
|
23127
23127
|
var Header = () => /* @__PURE__ */ jsxs(Box, { borderStyle: "single", borderColor: "cyan", paddingX: 1, marginBottom: 1, children: [
|
|
23128
23128
|
/* @__PURE__ */ jsxs(Text, { bold: true, color: "cyan", children: [
|
|
23129
23129
|
"\u25CF MSapling CLI v",
|
|
23130
|
-
"2.3.6-beta.
|
|
23130
|
+
"2.3.6-beta.53"
|
|
23131
23131
|
] }),
|
|
23132
23132
|
/* @__PURE__ */ jsx(Box, { marginLeft: 2, children: /* @__PURE__ */ jsx(Text, { color: "gray", children: "Platinum Tier Architecture" }) })
|
|
23133
23133
|
] });
|
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.53",
|
|
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",
|