lema-mcp 0.11.1 → 0.13.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 (2) hide show
  1. package/README.md +8 -4
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -76,6 +76,12 @@ analytics over a graph you own.
76
76
 
77
77
  ## Install
78
78
 
79
+ **One click — installs the no-account public demo** (React's recorded decisions, zero setup):
80
+
81
+ [![Add lema to Cursor](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en/install-mcp?name=lema&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsImxlbWEtbWNwQGxhdGVzdCJdLCJlbnYiOnsiTEVNQV9NQ1BfTU9ERSI6InB1YmxpYyIsIkxFTUFfUFVCTElDX1JFUE8iOiJyZWFjdC1yZmNzIn19)   [![Install lema in VS Code](https://img.shields.io/badge/VS_Code-Install_lema-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522lema%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522-y%2522%252C%2522lema-mcp%2540latest%2522%255D%252C%2522env%2522%253A%257B%2522LEMA_MCP_MODE%2522%253A%2522public%2522%252C%2522LEMA_PUBLIC_REPO%2522%253A%2522react-rfcs%2522%257D%257D)
82
+
83
+ The button drops you straight into React's public record — ask *"why did React rule out X?"* and get a cited answer, no account. To wire **your own repo** for capture, or point the demo at Kubernetes or Rust, use the per-client setup below.
84
+
79
85
  `npx` needs only Node — no Go toolchain, no account. Two commands cover both ways
80
86
  to use lema:
81
87
 
@@ -254,9 +260,7 @@ Your agent calls these over MCP.
254
260
 
255
261
  | Tool | What it does |
256
262
  |------|--------------|
257
- | **`check_approach`** ★ | Name an approach → a three-valued verdict: `ruled_out` (rejected, with the recorded **why**, cited), `settled` (it *is* the project's in-force recorded choice, the governing decision cited), or an honest `no_recorded_ruling`. Every verdict carries a pointer to where the docs cover the how. The Fusion tool. |
258
- | **`settled`** | **Deprecated — use `check_approach`** (whose `settled` verdict folds this in). Typed `state` (`settled` / `not_settled` / `unsure`) for a direction, plus each governing decision's ref and reasoning. `not_settled` means *not on the record*, **not approved**. |
259
- | **`why_decided`** | One cited answer to "why did React / Kubernetes / Rust decide X?", surfacing status and ruled-out alternatives — with a machine-readable abstain (`record_silent: true`) when silent. (`why_not_public` is a deprecated alias — use `check_approach`.) |
263
+ | **`check_approach`** ★ | Name an approach → a three-valued verdict: `ruled_out` (rejected, with the recorded **why** synthesized and cited), `settled` (it *is* the project's in-force recorded choice, the governing decision cited), or an honest `no_recorded_ruling`. Every verdict carries a pointer to where the docs cover the how. The one public door — it folds in the cited "why was this decided?" answer (the former `why_decided`) and the `settled` check. |
260
264
 
261
265
  ### Your own repo
262
266
 
@@ -270,7 +274,7 @@ Your agent calls these over MCP.
270
274
  | **`ask`** | One cited, synthesized answer over your team's **hosted** decision graph (hosted mode). |
271
275
 
272
276
  In your own repo the full server registers the read + capture tools (and the public
273
- tools too); the `npx lema-mcp try` server runs the public subset only.
277
+ `check_approach` too); the `npx lema-mcp try` server runs the public door only.
274
278
 
275
279
  ---
276
280
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lema-mcp",
3
- "version": "0.11.1",
3
+ "version": "0.13.0",
4
4
  "mcpName": "io.github.lemahq/lema-mcp",
5
5
  "description": "MCP server that gives your coding agent the recorded why behind decisions — and what was already ruled out — cited. Check React, Rust, and Kubernetes out of the box, or capture and enforce never-reopen on your own repo. Local, no account.",
6
6
  "bin": {
@@ -13,10 +13,10 @@
13
13
  "prepack": "cp ../../README.md ./README.md && cp ../../LICENSE ./LICENSE"
14
14
  },
15
15
  "optionalDependencies": {
16
- "lema-mcp-darwin-arm64": "0.11.1",
17
- "lema-mcp-darwin-x64": "0.11.1",
18
- "lema-mcp-linux-x64": "0.11.1",
19
- "lema-mcp-linux-arm64": "0.11.1"
16
+ "lema-mcp-darwin-arm64": "0.13.0",
17
+ "lema-mcp-darwin-x64": "0.13.0",
18
+ "lema-mcp-linux-x64": "0.13.0",
19
+ "lema-mcp-linux-arm64": "0.13.0"
20
20
  },
21
21
  "engines": {
22
22
  "node": ">=18"