@mcplato/wandplus 2.2.6 → 2.3.0

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 (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +43 -19
  3. package/package.json +5 -5
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 MCPlato
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,6 +1,22 @@
1
- # @mcplato/wandplus
1
+ # WandPlus
2
2
 
3
- **WandPlus** — a terminal AI coding agent powered by the [MCPlato](https://wandplus.dev) monolith engine. Built with [Ink](https://github.com/vadimdemedes/ink) (React for the terminal).
3
+ **A terminal AI coding agent.** Talk to your codebase, run tools, edit files all from your shell.
4
+
5
+ [![npm](https://img.shields.io/npm/v/@mcplato/wandplus?color=cb3837&logo=npm)](https://www.npmjs.com/package/@mcplato/wandplus)
6
+ [![downloads](https://img.shields.io/npm/dm/@mcplato/wandplus?color=cb3837)](https://www.npmjs.com/package/@mcplato/wandplus)
7
+ [![license](https://img.shields.io/npm/l/@mcplato/wandplus?color=3da638)](https://www.npmjs.com/package/@mcplato/wandplus)
8
+ [![node](https://img.shields.io/node/v/@mcplato/wandplus?color=339933&logo=node.js&logoColor=white)](https://nodejs.org)
9
+
10
+ ```text
11
+ $ wandplus
12
+ WandPlus ~/projects/acme
13
+ › refactor the retry logic in src/http.ts to use exponential backoff
14
+
15
+ ● Read src/http.ts (142 lines)
16
+ ● Edited src/http.ts (+18 −6) exponential backoff with jitter
17
+ Done — want me to add a test for it?
18
+
19
+ ```
4
20
 
5
21
  ## Install
6
22
 
@@ -8,20 +24,22 @@
8
24
  npm i -g @mcplato/wandplus
9
25
  ```
10
26
 
11
- This pulls in a small JS frontend plus a single platform-matched binary bundle
12
- (`@mcplato/wandplus-<platform>`) containing the `monolith` engine and its tool
13
- runtime. Only the bundle matching your OS/CPU is installed.
27
+ Pulls a small JS frontend plus a single platform-matched binary bundle
28
+ (`@mcplato/wandplus-<platform>`) containing the engine and its tool runtime —
29
+ only the bundle matching your OS/CPU is downloaded.
14
30
 
15
- Supported platforms: macOS (arm64 / x64), Linux (x64), Windows (x64).
31
+ **Supported:** macOS (arm64 / x64) · Linux (x64) · Windows (x64) · Node ≥ 20.
16
32
 
17
- ## Configure (no login — just a base URL + token)
33
+ ## Configure
18
34
 
19
- WandPlus reads credentials from environment variables or `~/.config/mcplato-tui/config.json`.
20
- On first run it offers an interactive setup wizard.
35
+ No login just a token and (optionally) a base URL. WandPlus reads them from a
36
+ `.env`, environment variables, or `~/.config/mcplato-tui/config.json`. On first
37
+ run it offers an interactive setup wizard.
21
38
 
22
39
  ```bash
23
- export WANDPLUS_AUTH_TOKEN=... # required — your token
24
- # optional; defaults to the MCPlato gateway:
40
+ export WANDPLUS_AUTH_TOKEN=... # required
41
+ # optional defaults to the MCPlato gateway. Point it at any
42
+ # Anthropic-compatible endpoint by ending the URL in /v1/messages.
25
43
  export WANDPLUS_BASE_URL=https://api.mcplato.com/api/v1/provider/anthropic
26
44
  ```
27
45
 
@@ -31,16 +49,22 @@ export WANDPLUS_BASE_URL=https://api.mcplato.com/api/v1/provider/anthropic
31
49
  wandplus --cwd /path/to/your/project
32
50
  ```
33
51
 
34
- Keys: `Enter` send · `Ctrl+J` newline · `Ctrl+C` interrupt · `↑/↓ + Enter` approve.
35
- Slash commands: `/compact` `/clear` `/quit`.
52
+ | Flag | |
53
+ |---|---|
54
+ | `-C, --cwd <dir>` | Working directory for the agent (default: cwd) |
55
+ | `-h, --help` | Show help |
56
+ | `-v, --version` | Show version |
57
+
58
+ **Keys:** `Enter` send · `Ctrl+J` newline · `Ctrl+C` interrupt · `↑/↓ + Enter` approve.
59
+ **Slash commands:** `/compact` · `/clear` · `/quit`.
36
60
 
37
61
  ## Features
38
62
 
39
- - Multi-turn streaming conversation
40
- - Tools / MCP / Skills (executed by the monolith engine)
41
- - Permission approval, plan-mode approval, and ask-user multi-choice prompts
42
- - Todo list panel, automatic + manual context compaction (`/compact`)
63
+ - Multi-turn streaming conversation, rendered live then sealed into your scrollback
64
+ - Tools, MCP servers, and Skills executed by the bundled engine
65
+ - Permission approval, plan-mode approval, and `ask-user` multi-choice prompts
66
+ - Todo-list panel and automatic + manual context compaction (`/compact`)
43
67
 
44
- ## License
68
+ ## Links
45
69
 
46
- MIT
70
+ Homepage · docs: [wandplus.dev](https://wandplus.dev) — License: MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcplato/wandplus",
3
- "version": "2.2.6",
3
+ "version": "2.3.0",
4
4
  "description": "WandPlus — a terminal AI coding agent powered by the MCPlato monolith engine (Ink / React for terminal).",
5
5
  "keywords": [
6
6
  "ai",
@@ -42,9 +42,9 @@
42
42
  "react": "^18.3.1"
43
43
  },
44
44
  "optionalDependencies": {
45
- "@mcplato/wandplus-darwin-arm64": "2.2.6",
46
- "@mcplato/wandplus-darwin-x64": "2.2.6",
47
- "@mcplato/wandplus-linux-x64": "2.2.6",
48
- "@mcplato/wandplus-win-x64": "2.2.6"
45
+ "@mcplato/wandplus-darwin-arm64": "2.3.0",
46
+ "@mcplato/wandplus-darwin-x64": "2.3.0",
47
+ "@mcplato/wandplus-linux-x64": "2.3.0",
48
+ "@mcplato/wandplus-win-x64": "2.3.0"
49
49
  }
50
50
  }