@mtreeai/msapling-cli 2.3.6-beta.51 → 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.
Files changed (4) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +7 -4
  3. package/dist/index.js +1671 -1867
  4. 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 package (collectively, "the Software") are the
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 @mtreeai/msapling-cli@beta
10
+ npm install -g msapling@beta
11
11
  ```
12
12
 
13
13
  **Requirements:** Node.js 20.10 or higher.
14
14
 
15
- **Note:** This is a private/internal package (restricted access). Internal testers should `npm install -g @mtreeai/msapling-cli@beta`. See [@mtreeai/msapling-cli on npm](https://www.npmjs.com/package/@mtreeai/msapling-cli) for the latest version.
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
 
@@ -63,7 +63,10 @@ Once the REPL is running, type `/help` to see all available slash commands. Comm
63
63
  | `/chat <message>` | Send a message and stream a response |
64
64
  | `/chat new <title>` | Create a chat inside the fixed CLI project |
65
65
  | `/chat import <chat_id>` | Copy another owned chat into a new CLI chat without mutating the source |
66
- | `/model` | List vendors, then vendor-scoped models and pricing |
66
+ | `/model` | Open the loopback visual catalog (complete LAB catalog remotely; direct provider catalog standalone) |
67
+ | `/model --terminal` | Use the provider-first terminal selector instead |
68
+ | `/keys add <provider>` | Enter a BYOK key through hidden terminal input or the one-time local browser prompt |
69
+ | `/keys use <provider> [base_url]` | Select OpenRouter or an OpenAI-compatible provider in standalone mode |
67
70
  | `/footer [compact|expanded|field on|off]` | Configure telemetry visibility |
68
71
  | `/cost` | Show usage and billing data |
69
72
  | `/config` | View and edit configuration |
@@ -77,7 +80,7 @@ See `packages/cli/src/commands/index.ts` for the canonical slash-command list.
77
80
 
78
81
 
79
82
 
80
- The CLI is not meant to be a large standalone agent runtime. MSapling's backend is the source of truth for auth, projects, chats, model routing, usage, billing, MDrive, locks, and audit data. The website, mobile app, and CLI should all show and modify the same backend state.
83
+ The installed CLI has explicit remote and standalone profiles. In remote mode, MSapling's backend is the source of truth for auth, projects, chats, model routing, usage, billing, MDrive, locks, and audit data. In `--local` mode, model calls, provider keys, transcripts, tools, and project settings remain local and LAB is not contacted for turns.
81
84
 
82
85
  ## Product Direction
83
86