lema-mcp 0.8.1 → 0.9.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.
- package/README.md +16 -13
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -38,17 +38,18 @@ and Rust, served from lema's public demo. No account, no token:
|
|
|
38
38
|
npx lema-mcp try react # or: kubernetes · rust
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
That writes a **read-only** `lema
|
|
42
|
-
|
|
43
|
-
servers and
|
|
41
|
+
That writes a **read-only** `lema` server (public mode) to `.mcp.json` — and if
|
|
42
|
+
you already have the authed `lema` server from `init`, it's left untouched (that
|
|
43
|
+
server already serves these public tools). Reload your agent's MCP servers and
|
|
44
|
+
ask:
|
|
44
45
|
|
|
45
46
|
> *"why did React adopt Hooks over mixins?"* — or, before you reach for a pattern,
|
|
46
47
|
> *"was a global event bus ever ruled out in Kubernetes?"*
|
|
47
48
|
|
|
48
49
|
You get **one synthesized, cited answer** — each `[n]` links to its GitHub source
|
|
49
50
|
(the RFC/PR) where available — and an honest **"no recorded ruling"** when the
|
|
50
|
-
record is silent, instead of a confident guess. Two tools light up (`
|
|
51
|
-
`
|
|
51
|
+
record is silent, instead of a confident guess. Two tools light up (`why_decided`,
|
|
52
|
+
`settled`); nothing local is registered. Ready for the same on *your own*
|
|
52
53
|
repo? `npx lema-mcp init` adds capture + enforcement.
|
|
53
54
|
|
|
54
55
|
Grounded only in recorded decisions; claims are **summarized, not verbatim**;
|
|
@@ -184,7 +185,7 @@ regex), `--openspec-dir`, `--capture-file` (override the JSONL path), and
|
|
|
184
185
|
Your agent calls these over MCP. In the standard server **eight are always on**;
|
|
185
186
|
`search_docs` / `get_doc` also register in local mode once a markdown tree is
|
|
186
187
|
indexed. (The `npx lema-mcp try` public-demo server runs a public-only subset —
|
|
187
|
-
just `
|
|
188
|
+
just `why_decided` / `settled`.)
|
|
188
189
|
|
|
189
190
|
**Enforce + capture (the part read-only tools don't have):**
|
|
190
191
|
|
|
@@ -214,14 +215,16 @@ just `public_ask` / `why_not_public`.)
|
|
|
214
215
|
|
|
215
216
|
**Public demo (no account — `npx lema-mcp try <repo>`):**
|
|
216
217
|
|
|
217
|
-
- **`
|
|
218
|
+
- **`why_decided`** — ask why **React / Kubernetes / Rust** made a decision; one
|
|
218
219
|
cited answer over their recorded RFC/KEP decisions, surfacing status and the
|
|
219
|
-
ruled-out alternatives, with an honest abstain when the record is silent.
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
220
|
+
ruled-out alternatives, with an honest abstain when the record is silent. The
|
|
221
|
+
abstain is also machine-readable (`record_silent: true`), and a grounded answer
|
|
222
|
+
carries `caveats` naming what the public demo does *not* cover. Tokenless.
|
|
223
|
+
- **`settled`** — before you propose a library / pattern / approach, check whether
|
|
224
|
+
one of those projects already ruled it out. Returns a typed `state`
|
|
225
|
+
(`settled` / `not_settled` / `unsure`) plus each governing decision's ref and
|
|
226
|
+
recorded reasoning; `not_settled` means *not on the record*, **not *approved***.
|
|
227
|
+
(`why_not_public` remains as a deprecated alias.)
|
|
225
228
|
|
|
226
229
|
```
|
|
227
230
|
> search_decisions "why did we choose an MCP-first architecture?"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lema-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Local, database-less MCP server that makes your repo's decisions — and what it ruled out — queryable by your coding agent, and lets the agent record new ones with enforced never-reopen.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"lema-mcp": "bin/lema-mcp.js"
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"prepack": "cp ../../README.md ./README.md && cp ../../LICENSE ./LICENSE"
|
|
13
13
|
},
|
|
14
14
|
"optionalDependencies": {
|
|
15
|
-
"lema-mcp-darwin-arm64": "0.
|
|
16
|
-
"lema-mcp-darwin-x64": "0.
|
|
17
|
-
"lema-mcp-linux-x64": "0.
|
|
18
|
-
"lema-mcp-linux-arm64": "0.
|
|
15
|
+
"lema-mcp-darwin-arm64": "0.9.0",
|
|
16
|
+
"lema-mcp-darwin-x64": "0.9.0",
|
|
17
|
+
"lema-mcp-linux-x64": "0.9.0",
|
|
18
|
+
"lema-mcp-linux-arm64": "0.9.0"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=18"
|