@indiccoder/mentis-cli 1.0.3 β 1.0.4
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/README.md +16 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,26 +5,30 @@ Mentis is a powerful terminal-based AI coding assistant that lives in your comma
|
|
|
5
5
|
|
|
6
6
|
## β¨ Features
|
|
7
7
|
|
|
8
|
-
* **π€ Multi-Model Support**: Switch seamlessly between **Gemini**, **Ollama** (Local), and **
|
|
8
|
+
* **π€ Multi-Model Support**: Switch seamlessly between **Gemini**, **Ollama** (Local), **OpenAI**, and **GLM-4.6** (Z.AI Coding).
|
|
9
9
|
* **π οΈ Agentic Capabilities**: Mentis can read, write, list files, and search your codebase to understand context.
|
|
10
|
-
* **π Web Intelligence**: Hybrid
|
|
11
|
-
* **πΊοΈ Smart Context**: Automatically maps your repository structure
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
10
|
+
* **π Web Intelligence**: Hybrid search for documentation and error fixing.
|
|
11
|
+
* **πΊοΈ Smart Context**: Automatically maps your repository structure.
|
|
12
|
+
* **π§© Interactive & Robust CLI**:
|
|
13
|
+
* **History**: Navigate previous commands with Up/Down arrows (persistent across sessions).
|
|
14
|
+
* **Cancellation**: Press `Esc` to instantly stop generation.
|
|
15
|
+
* **Markdown**: Beautiful syntax highlighting in terminal output.
|
|
16
|
+
* **π° Cost Awareness**: Real-time token usage and cost tracking.
|
|
17
|
+
* **π§ Persistent Memory**: Auto-saves sessions (`/resume`) and checkpoints (`/checkpoint`).
|
|
18
|
+
* **π MCP Support**: Full [Model Context Protocol](https://github.com/modelcontextprotocol) client.
|
|
19
|
+
* **π Codebase Search**: Built-in `grep` tool.
|
|
20
|
+
* **π Shell Integration**: Run shell commands and commit changes directly.
|
|
18
21
|
|
|
19
22
|
## π Installation
|
|
20
23
|
|
|
21
|
-
###
|
|
22
|
-
You can install Mentis directly from the
|
|
24
|
+
### Using NPM (Recommended)
|
|
25
|
+
You can install Mentis globally directly from the NPM registry:
|
|
23
26
|
|
|
24
27
|
```bash
|
|
25
|
-
npm install -g
|
|
28
|
+
npm install -g @indiccoder/mentis-cli
|
|
26
29
|
```
|
|
27
30
|
|
|
31
|
+
|
|
28
32
|
### From Source (Dev)
|
|
29
33
|
```bash
|
|
30
34
|
git clone https://github.com/CoderVLSI/Mentis-CLI.git
|