@nxuss/lemma 0.4.10 → 0.4.12
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 +27 -2
- package/dashboard/dist/assets/index-B4TA31pA.js +490 -0
- package/dashboard/dist/assets/index-B4TA31pA.js.map +1 -0
- package/dashboard/dist/assets/index-DNqq3gA9.css +1 -0
- package/dashboard/dist/index.html +2 -2
- package/dist/cjs/cli/lemma-proxy.d.ts.map +1 -1
- package/dist/cjs/cli/lemma-proxy.js +136 -17
- package/dist/cjs/cli/lemma-proxy.js.map +1 -1
- package/dist/cjs/utils/ContextSqueezer.d.ts +1 -0
- package/dist/cjs/utils/ContextSqueezer.d.ts.map +1 -1
- package/dist/cjs/utils/ContextSqueezer.js +80 -40
- package/dist/cjs/utils/ContextSqueezer.js.map +1 -1
- package/dist/esm/cli/lemma-proxy.d.ts.map +1 -1
- package/dist/esm/cli/lemma-proxy.js +136 -17
- package/dist/esm/cli/lemma-proxy.js.map +1 -1
- package/dist/esm/utils/ContextSqueezer.d.ts +1 -0
- package/dist/esm/utils/ContextSqueezer.d.ts.map +1 -1
- package/dist/esm/utils/ContextSqueezer.js +79 -40
- package/dist/esm/utils/ContextSqueezer.js.map +1 -1
- package/package.json +2 -2
- package/dashboard/dist/assets/index-CIx8ECj8.css +0 -1
- package/dashboard/dist/assets/index-zTlIPJOp.js +0 -478
- package/dashboard/dist/assets/index-zTlIPJOp.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Lemma v0.4.
|
|
1
|
+
# Lemma v0.4.12
|
|
2
2
|
> **The Intelligent AI Gateway — Privacy, Performance, and Precision for the Agentic Era.**
|
|
3
3
|
|
|
4
4
|
Lemma is a high-performance orchestration layer that sits between your development environment and LLM providers. It transforms the way you build with AI by providing **Shared Semantic Memory**, **Autonomous Cost Optimization**, and **Privacy Guardrails**.
|
|
@@ -29,7 +29,7 @@ Lemma is a high-performance orchestration layer that sits between your developme
|
|
|
29
29
|
|
|
30
30
|
## 🚀 Smart CLI (Zero-Config)
|
|
31
31
|
|
|
32
|
-
Lemma v0.4.
|
|
32
|
+
Lemma v0.4.12 introduces the **Smart CLI**, making it easier than ever to get started:
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
35
|
# 1. Install
|
|
@@ -71,6 +71,31 @@ You don't need to change your habits. Just point your tool's "Base URL" to Lemma
|
|
|
71
71
|
* **AutoGPT / BabyAGI:** Set the `OPENAI_API_BASE` environment variable.
|
|
72
72
|
* **Custom Apps:** Replace `https://api.openai.com/v1` with `http://localhost:8081/v1` in your SDK initialization.
|
|
73
73
|
|
|
74
|
+
### 💎 Pro Integration (Model Context Protocol - MCP)
|
|
75
|
+
For **Lemma Pro** users, you can expose Lemma's entire intelligence layer (Privacy Firewall, Semantic Brain Search, and Auto-Heal) directly as native tools using the **Model Context Protocol (MCP)**.
|
|
76
|
+
|
|
77
|
+
#### 🟢 Cursor:
|
|
78
|
+
1. Go to **Settings > Features > MCP**.
|
|
79
|
+
2. Click **+ Add New MCP Server**.
|
|
80
|
+
3. Configure the server:
|
|
81
|
+
* **Name**: `Lemma`
|
|
82
|
+
* **Type**: `command`
|
|
83
|
+
* **Command**: `lemma mcp`
|
|
84
|
+
4. Click **Save**. A green **"Connected"** dot will appear, confirming that the IDE has loaded all of Lemma's tools.
|
|
85
|
+
|
|
86
|
+
#### 🟢 Claude Desktop:
|
|
87
|
+
Add the following to your `claude_desktop_config.json` configuration file:
|
|
88
|
+
```json
|
|
89
|
+
{
|
|
90
|
+
"mcpServers": {
|
|
91
|
+
"lemma": {
|
|
92
|
+
"command": "npx",
|
|
93
|
+
"args": ["-y", "@nxuss/lemma", "mcp"]
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
```
|
|
98
|
+
|
|
74
99
|
### ⚡ Why use Lemma for Chat?
|
|
75
100
|
1. **Privacy:** Your IDE won't leak your secrets to the cloud.
|
|
76
101
|
2. **Context:** Lemma syncs your runtime crashes directly to your chat window.
|