@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.
Files changed (2) hide show
  1. package/README.md +16 -12
  2. 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 **OpenAI**.
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 **Google** + **DuckDuckGo** search for documentation and error fixing (Zero-Config).
11
- * **πŸ—ΊοΈ Smart Context**: Automatically maps your repository structure for better spatial awareness.
12
- * **πŸ’° Cost Awareness**: Real-time token usage and cost estimation displayed after every response.
13
- * **🧠 Persistent Memory**: Auto-saves sessions (`/resume`) and supports manual checkpoints (`/checkpoint`).
14
- * **πŸ”Œ MCP Support**: Full [Model Context Protocol](https://github.com/modelcontextprotocol) client. Connect external tools like databases or memory servers.
15
- * **πŸ” Codebase Search**: Built-in `grep` tool to find code across your project.
16
- * **🐚 Shell Integration**: Run shell commands (`/run`) and commit changes (`/commit`) directly from the agent.
17
- * **🎨 Premium UI**: Beautiful terminal interface with modes (`PLAN` vs `BUILD`).
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
- ### From GitHub (Recommended)
22
- You can install Mentis directly from the repository, ensuring you always get the latest version (bypassing NPM delays).
24
+ ### Using NPM (Recommended)
25
+ You can install Mentis globally directly from the NPM registry:
23
26
 
24
27
  ```bash
25
- npm install -g git+https://github.com/CoderVLSI/Mentis-CLI.git
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indiccoder/mentis-cli",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },