lema-mcp 0.10.1 → 0.11.1
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 +5 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -30,6 +30,8 @@ something, or whether the approach you're about to take was already rejected.
|
|
|
30
30
|
links to the RFC / PR where the call was made.
|
|
31
31
|
- A typed **`ruled_out`** verdict when a project already rejected your approach,
|
|
32
32
|
with the recorded reason *and* a pointer to where the docs say to do it instead.
|
|
33
|
+
- A typed **`settled`** verdict when your approach *is* the project's in-force
|
|
34
|
+
recorded choice — the governing decision cited, with a docs pointer for the how.
|
|
33
35
|
- An honest **"no recorded ruling"** when the record is silent — which means
|
|
34
36
|
*unknown*, **not** *approved*. lema never fills the gap with a guess.
|
|
35
37
|
|
|
@@ -252,9 +254,9 @@ Your agent calls these over MCP.
|
|
|
252
254
|
|
|
253
255
|
| Tool | What it does |
|
|
254
256
|
|------|--------------|
|
|
255
|
-
| **`check_approach`** ★ | Name an approach → a
|
|
256
|
-
| **`settled`** | 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**. |
|
|
257
|
-
| **`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
|
|
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`.) |
|
|
258
260
|
|
|
259
261
|
### Your own repo
|
|
260
262
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lema-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.1",
|
|
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.
|
|
17
|
-
"lema-mcp-darwin-x64": "0.
|
|
18
|
-
"lema-mcp-linux-x64": "0.
|
|
19
|
-
"lema-mcp-linux-arm64": "0.
|
|
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"
|
|
20
20
|
},
|
|
21
21
|
"engines": {
|
|
22
22
|
"node": ">=18"
|