baldart 3.33.0 → 3.33.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/CHANGELOG.md CHANGED
@@ -5,6 +5,26 @@ All notable changes to BALDART will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.33.1] - 2026-05-30
9
+
10
+ Fixes a **false-positive in the LSP layer's verify step** that let `/lsp-bootstrap` (and `baldart configure` / `doctor`) report a language server as `verified` while every real LSP call failed with `Executable not found in $PATH` — a dead layer masked by `codebase-architect`'s silent Grep fallback. Root cause was a **resolution mismatch**: verify used `npx --no-install typescript-language-server --version` (resolves from `node_modules/.bin`), but the consumer — Claude Code's LSP tool — spawns the server **by name from `$PATH`**. The npm-dev install (`npm install --save-dev`) put the binary in `node_modules/.bin`, which is *not* on `$PATH`, so verify passed and spawn failed. The npm-managed adapters now install **globally** so the binary lands on `$PATH`, and verify checks `$PATH` reachability the *same way the consumer spawns it*. **No new `baldart.config.yml` keys** — reachability is computed, not configured, so the schema-propagation rule does not apply.
11
+
12
+ ### Fixed — LSP verify no longer reports unreachable servers as `verified`
13
+
14
+ - **[src/utils/lsp-installer.js](src/utils/lsp-installer.js)**: `verifyServers()` rewritten around a 3-state taxonomy. It first probes `$PATH` reachability via `command -v <binary>` (new `_isOnPath` helper — mirrors the consumer's by-name spawn exactly), then runs the functional `verifyCommand()`. Results carry `status` ∈ `verified` (on `$PATH`, probe passed) / `installed-but-unreachable` (present in `node_modules` but not on `$PATH` — new `_isInstalledLocally` helper fingerprints the legacy devDep install; `fix` = global-install command) / `unreachable` / `not-installed` / `unknown-adapter`. Never throws.
15
+ - **[src/utils/lsp-adapters/typescript.js](src/utils/lsp-adapters/typescript.js)** + **[src/utils/lsp-adapters/python.js](src/utils/lsp-adapters/python.js)**: `installMode` `npm-dev` → `npm-global`; `installCommand()` → `npm install -g …`; `verifyCommand()` → `<binary> --version` (resolved from `$PATH`, mirroring the consumer) instead of `npx --no-install …`. System adapters (go/rust/ruby) were already PATH-correct and are unchanged.
16
+
17
+ ### Changed — `configure` records unreachable servers; `doctor` fix is now real
18
+
19
+ - **[src/commands/configure.js](src/commands/configure.js)**: **every** known-adapter result that isn't cleanly `verified` is now recorded in `lsp.installed_servers` (like system-mode pending installs) instead of being dropped by the old `filter(v => v.ok)` — otherwise re-runs reinstall blindly and `doctor` never sees the mismatch. This covers both `installed-but-unreachable` and the npm-global happy-path trap where `npm install -g` exits 0 but npm's global bin dir isn't on the current `$PATH` (→ status `not-installed`, since `npx` can't see the global prefix either) — without this, the primary configure path would have silently reintroduced the dead layer. The fix command (+ `npm prefix -g` PATH hint) is surfaced inline for each.
20
+ - **[src/commands/doctor.js](src/commands/doctor.js)**: the `lsp-fix` remediation now reinstalls globally (a real fix that puts the binary on `$PATH`), where before it re-ran `npm install --save-dev` — a no-op for the reachability problem. The `why` text explains the `$PATH` contract, and a post-reinstall re-verify surfaces the `npm prefix -g` PATH escape when a server stays unreachable (so a misconfigured global bin dir doesn't trap the user in a reinstall loop).
21
+
22
+ ### Docs
23
+
24
+ - **[framework/.claude/skills/lsp-bootstrap/SKILL.md](framework/.claude/skills/lsp-bootstrap/SKILL.md)**: Output Contract redefines `verified` as `$PATH`-reachable, adds the `installed-but-unreachable` status, and documents the **cold-start caveat** (first query may under-report references until indexing completes).
25
+ - **[framework/agents/code-search-protocol.md](framework/agents/code-search-protocol.md)**: new fallback rule for cold-start under-reporting — re-issue the first query before trusting a suspiciously-low reference count; never declare a helper unused off one cold find-references.
26
+ - **[framework/docs/LSP-LAYER.md](framework/docs/LSP-LAYER.md)** + **[framework/docs/PROJECT-CONFIGURATION.md](framework/docs/PROJECT-CONFIGURATION.md)**: adapter-contract table, install-mode descriptions, `verifyServers` contract, and troubleshooting §6.3/§6.4 updated for global install + `$PATH` reachability + the PATH-mismatch cause.
27
+
8
28
  ## [3.33.0] - 2026-05-30
9
29
 
10
30
  Closes a **structural silent-partial-install** failure mode (observed on the `mayo` consumer, 3.28→3.31, still live in 3.32.0; same class as the historic v3.27.1 bug): `add` was **non-atomic** — the hook registration ran *after* optional blocking prompts (git aliases, configure). In a non-TTY context (Claude's Bash tool never has a TTY on stdin) or on any interruption, those `inquirer` prompts throw/hang, so `.framework/` + `state.json` landed on the new version while `Hooks.registerAll` never ran — a half-install that `baldart status` still reported as "Valid". The fix makes install atomic (correctness-critical mutations run **before** every optional prompt), adds a **post-flight hook assert** that refuses to declare success with any active hook missing, and finally exposes `add --yes` so agents/CI can install unattended. Two additive, non-breaking follow-ups ship alongside. **No new `baldart.config.yml` keys** — `--yes` is a CLI flag, so the schema-propagation rule does not apply.
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.33.0
1
+ 3.33.1
@@ -3,8 +3,8 @@ name: lsp-bootstrap
3
3
  description: >
4
4
  Install, verify, and document the LSP symbol-search layer for this project.
5
5
  Detects languages (TypeScript, Python, Go, Rust, Ruby), installs the matching
6
- language servers (npm devDep where possible, system command otherwise),
7
- verifies binaries are reachable, and writes lsp.installed_servers to
6
+ language servers (global npm install where possible, system command otherwise),
7
+ verifies binaries are reachable on $PATH, and writes lsp.installed_servers to
8
8
  baldart.config.yml. Use when the user says /lsp-bootstrap, "install LSP",
9
9
  "set up symbol search", or after enabling features.has_lsp_layer for the
10
10
  first time. Idempotent — re-running on an already-configured project
@@ -32,15 +32,22 @@ context on textual collisions; with it, references resolve to the same symbol
32
32
  present (markers: `tsconfig.json`, `pyproject.toml`, `go.mod`, `Cargo.toml`,
33
33
  `Gemfile`, plus heuristic fallbacks).
34
34
  3. For each detected language:
35
- - **npm-dev** adapters (TypeScript, Python via pyright): runs `npm install
36
- --save-dev <pkg>` with user confirmation.
35
+ - **npm-global** adapters (TypeScript, Python via pyright): runs `npm install
36
+ -g <pkg>` with user confirmation. The install is **global** on purpose —
37
+ the consumer (Claude Code's LSP tool) spawns the server by name from
38
+ `$PATH`, and a project-local devDep under `node_modules/.bin/` is not on
39
+ `$PATH`, so it would never be reachable.
37
40
  - **system** adapters (Go gopls, Rust rust-analyzer, Ruby ruby-lsp): prints
38
41
  the install command for the user to run in a separate terminal. Does NOT
39
42
  execute system-level installs automatically.
40
- 4. Verifies each binary is reachable (`<binary> --version`).
41
- 5. Updates `lsp.installed_servers` in `baldart.config.yml` with the verified
42
- set. System-mode servers are recorded even if not yet reachable (the user
43
- may have a pending install) `baldart doctor` will flag the mismatch.
43
+ 4. Verifies each binary is **reachable on `$PATH` the same way the consumer
44
+ spawns it** (`command -v <binary>`), then runs `<binary> --version` for the
45
+ functional check. A binary present only in `node_modules/.bin` (legacy
46
+ devDep) is reported as `installed-but-unreachable`, NOT `verified`.
47
+ 5. Updates `lsp.installed_servers` in `baldart.config.yml`. Both `verified` and
48
+ `installed-but-unreachable` servers are recorded (the latter so re-runs don't
49
+ reinstall blindly and `baldart doctor` keeps flagging the mismatch);
50
+ system-mode pending installs are recorded too.
44
51
  6. Prints a summary table and points the user to
45
52
  `framework/agents/code-search-protocol.md` for runtime behavior.
46
53
 
@@ -66,8 +73,11 @@ context on textual collisions; with it, references resolve to the same symbol
66
73
  4. **Install.** Run the appropriate `installCommand()`. Capture failures into a
67
74
  "Skipped" bucket — never abort the whole skill on one failure.
68
75
 
69
- 5. **Verify.** For each installed server, call its `verifyCommand()`. Mark the
70
- results.
76
+ 5. **Verify.** For each installed server, the installer first checks `$PATH`
77
+ reachability (`command -v <binary>` — exactly how the consumer spawns it),
78
+ then runs `verifyCommand()`. Mark each result `verified`,
79
+ `installed-but-unreachable` (present in node_modules but not on `$PATH` —
80
+ print the global-install fix), or `not-installed`.
71
81
 
72
82
  6. **Persist.** Update `baldart.config.yml`:
73
83
  ```yaml
@@ -86,19 +96,25 @@ A single short status block — never a multi-page report. Format:
86
96
 
87
97
  ```
88
98
  LSP bootstrap:
89
- ✓ typescript-language-server (npm devDep, verified)
90
- pyright (npm devDep, verified)
99
+ ✓ typescript-language-server (npm -g, on $PATH, verified)
100
+ pyright — installed but not on $PATH; run `npm install -g pyright`, then `baldart doctor`
91
101
  ⚠ gopls — run `go install golang.org/x/tools/gopls@latest`, then `baldart doctor`
92
102
  · ruby — not detected (no Gemfile)
93
103
  Config updated: baldart.config.yml lsp.installed_servers = [typescript, python, go]
94
104
  Next: codebase-architect will now prefer LSP find-references over Grep for symbols.
105
+ Note: the first LSP query after a cold start may under-report references until the
106
+ workspace finishes indexing — re-run the query once warm if a count looks low.
95
107
  ```
96
108
 
109
+ `verified` is reserved for binaries that resolve on `$PATH` (the consumer's
110
+ spawn path). Never report `verified` for a binary that only `npx --no-install`
111
+ can find — that is precisely the false positive this skill must not emit.
112
+
97
113
  ## Notes
98
114
 
99
115
  - This skill never edits source code or installs binaries that aren't language
100
- servers — its only side effect is `npm install --save-dev <lsp-package>` and a
101
- YAML write to `baldart.config.yml`.
116
+ servers — its only side effect is `npm install -g <lsp-package>` (global, so
117
+ the binary is reachable on `$PATH`) and a YAML write to `baldart.config.yml`.
102
118
  - For Claude Code users: in addition to the binaries, you may need to load a
103
119
  code-intelligence plugin (`/plugin` in Claude Code). That step is documented
104
120
  in the printed output when applicable, but the skill does NOT manage Claude
@@ -75,6 +75,14 @@ Before picking a tier, classify the query:
75
75
  a path excluded by `tsconfig.json`).
76
76
  - LSP times out (>8s) → fall back to Grep for this query, log the symptom in
77
77
  the agent's reasoning so the user can re-run doctor.
78
+ - **Cold start under-reporting**: the first LSP query in a session can return
79
+ an incomplete set (e.g. find-references returning 1 hit where the symbol has
80
+ 6) until the language server finishes indexing the workspace. If a reference
81
+ count looks suspiciously low for a symbol you expect to be widely used, treat
82
+ the first result as a warm-up: re-issue the same query once before trusting
83
+ it, or cross-check with a single Grep. Do not act on a cold-start count as if
84
+ it were exhaustive (e.g. don't declare a helper "unused / safe to delete"
85
+ off one cold find-references).
78
86
 
79
87
  ## Examples
80
88
 
@@ -38,8 +38,9 @@ function named `handleSubmit` declared in `src/forms/Login.tsx` returns
38
38
  exactly the callsites that resolve to *that* declaration; the CLI utility's
39
39
  unrelated `handleSubmit` is filtered out before any file is read.
40
40
 
41
- The layer is **opt-in** (some consumers don't want devDep churn, some target
42
- languages we don't have an adapter for yet) and **degrades gracefully** (when
41
+ The layer is **opt-in** (some consumers don't want a global npm install for a
42
+ language server, some target languages we don't have an adapter for yet) and
43
+ **degrades gracefully** (when
43
44
  LSP is unavailable, agents silently fall back to the legacy RAG → Grep flow,
44
45
  so existing behavior is preserved).
45
46
 
@@ -133,8 +134,13 @@ configure prompt (the user can still say no). The prompt copy is
133
134
 
134
135
  When the user confirms, for each detected language:
135
136
 
136
- - **npm-dev mode** (TS, Python via pyright): `npm install --save-dev <pkg>`
137
- runs in-process. Success added to `lsp.installed_servers`.
137
+ - **npm-global mode** (TS, Python via pyright): `npm install -g <pkg>` runs
138
+ in-process. The install is **global** — the consumer (Claude Code's LSP
139
+ tool) spawns the server by name from `$PATH`, so a project-local devDep in
140
+ `node_modules/.bin/` would never be reachable (this was the pre-v3.33.1
141
+ dead-layer bug). Reachable on `$PATH` → recorded as `verified`; present but
142
+ not on `$PATH` → recorded as `installed-but-unreachable` (with the
143
+ global-install fix printed).
138
144
  - **system mode** (Go, Rust, Ruby): the install command is *printed*, never
139
145
  executed. The server name is recorded as pending in `installed_servers`;
140
146
  `baldart doctor` re-verifies on the next run and flags the mismatch if the
@@ -180,8 +186,10 @@ npx baldart # smart doctor (no-arg, default since v3.2.0)
180
186
  ```
181
187
 
182
188
  `doctor.js` reads `config.lsp.installed_servers`. When
183
- `lsp.auto_verify !== false`, it executes each adapter's `verifyCommand()`
184
- (e.g. `npx --no-install typescript-language-server --version`). Output:
189
+ `lsp.auto_verify !== false`, the installer first checks `$PATH` reachability
190
+ (`command -v <binary>` — exactly how the consumer spawns the server), then runs
191
+ each adapter's `verifyCommand()` (e.g. `typescript-language-server --version`)
192
+ for the functional check. Output:
185
193
 
186
194
  ```
187
195
  · LSP layer 2 server(s) verified (typescript, python)
@@ -268,10 +276,10 @@ Every adapter is a class exporting:
268
276
  | `name` | string getter | Stable id used in `installed_servers` (e.g. `"typescript"`)|
269
277
  | `label` | string getter | Human-readable for prompts/diagnostics |
270
278
  | `binary` | string getter | Executable name expected on PATH or in node_modules |
271
- | `installMode` | `"npm-dev"` / `"system"` | How the installer treats this language |
272
- | `npmPackage` | string (npm-dev only) | What goes after `npm install --save-dev` |
279
+ | `installMode` | `"npm-global"` / `"system"` | How the installer treats this language |
280
+ | `npmPackage` | string (npm-global only) | What goes after `npm install -g` |
273
281
  | `installCommand()` | string | The exact shell command (printed or executed) |
274
- | `verifyCommand()` | string | A no-side-effect probe (e.g. `--version`) |
282
+ | `verifyCommand()` | string | Functional probe run by name from `$PATH` (e.g. `<binary> --version`); `$PATH` reachability is checked separately by the installer via `command -v <binary>` |
275
283
  | `claudePluginId()` | string \| null | Native Claude Code plugin id (e.g. `typescript-lsp@claude-plugins-official`) — installed by the configure flow alongside the language server (v3.14.0+). `null` = no companion plugin |
276
284
  | `static detect(cwd)` | boolean | Pure: does the language live in this repo? |
277
285
 
@@ -289,7 +297,13 @@ to the REGISTRY in `lsp-adapters/index.js`.
289
297
  - `recommend(langs?)` → entries with install metadata for UI consumption
290
298
  - `installServers(names, { interactive=true, dryRun=false })` →
291
299
  `{ installed, skipped, manual }` — returns rather than throws
292
- - `verifyServers(names)` → `[{ name, ok, output|error }]` — never throws
300
+ - `verifyServers(names)` → `[{ name, ok, status, output?, error?, fix? }]` —
301
+ never throws. `status` ∈ `verified` (on `$PATH`, probe passed) /
302
+ `installed-but-unreachable` (in node_modules but not on `$PATH`; `fix` =
303
+ global-install command) / `unreachable` (on `$PATH` but probe errored) /
304
+ `not-installed` / `unknown-adapter`. Reachability is `command -v <binary>`,
305
+ mirroring how the consumer spawns the server — never `npx --no-install`,
306
+ which resolves from node_modules and produces a false positive.
293
307
 
294
308
  **Native Claude Code plugin layer (since v3.14.0):**
295
309
 
@@ -396,20 +410,34 @@ The autodetector found no supported language markers. Either:
396
410
 
397
411
  ### 6.3 "doctor says my server is broken but it works in my editor"
398
412
 
399
- `verifyCommand()` executes from the consumer cwd with a hard 8s timeout. If
400
- the language server takes longer than that to print `--version` (rare, but
401
- seen on first-run cold caches), the verify fails. Re-run `baldart doctor`
402
- once warm. If still failing, run the exact `verifyCommand()` string in your
403
- shell the actual error will surface.
404
-
405
- ### 6.4 "I want to enable the layer but not have devDeps in package.json"
406
-
407
- For TypeScript / Python you can override the adapter's `installMode` by
408
- writing an overlay at `.baldart/overlays/agents/codebase-architect.md`
409
- documenting your alternative install path (e.g. system pyright via uv), and
410
- then manually setting `lsp.installed_servers: [python]` in the config. The
411
- runtime layer doesn't care *how* the binary got there, only that it's
412
- reachable. `baldart doctor` will continue to verify it.
413
+ Two common causes:
414
+
415
+ 1. **PATH-resolution mismatch (the usual culprit).** Your editor resolves the
416
+ language server through `node_modules/.bin`, `npx`, or its own bundled copy;
417
+ the Claude Code LSP tool spawns it **by name from `$PATH`**. A binary
418
+ installed as a project-local devDep is visible to the editor but reports
419
+ `installed-but-unreachable` here, because it isn't on `$PATH`. Fix: install
420
+ it globally (`npm install -g <pkg>`) — or, if you installed globally and it's
421
+ still unreachable, confirm npm's global bin dir (`npm prefix -g`/`npm bin -g`)
422
+ is on your `$PATH`. This was the pre-v3.33.1 false-positive bug: verify used
423
+ `npx --no-install` (node_modules resolution) and passed while the consumer's
424
+ `$PATH` spawn failed.
425
+ 2. **Cold-start timeout.** `verifyCommand()` executes from the consumer cwd with
426
+ a hard 8s timeout. If the server takes longer than that to print `--version`
427
+ (rare, seen on first-run cold caches), verify fails. Re-run `baldart doctor`
428
+ once warm. If still failing, run the exact `command -v <binary>` and
429
+ `verifyCommand()` strings in your shell — the actual error will surface.
430
+
431
+ ### 6.4 "I don't want a global npm install for the language server"
432
+
433
+ The npm-global default exists because the consumer spawns the server from
434
+ `$PATH`. If you'd rather manage the binary yourself (system pyright via uv, a
435
+ Volta/asdf shim, a Nix profile, whatever), do it your way — just make sure the
436
+ binary ends up on `$PATH`. Then write an overlay at
437
+ `.baldart/overlays/agents/codebase-architect.md` documenting your install path
438
+ and manually set `lsp.installed_servers: [python]` in the config. The runtime
439
+ layer doesn't care *how* the binary got onto `$PATH`, only that it's reachable
440
+ there. `baldart doctor` will continue to verify it via `command -v`.
413
441
 
414
442
  ---
415
443
 
@@ -216,11 +216,11 @@ Populated by `baldart configure` and the `/lsp-bootstrap` skill when `features.h
216
216
  | Key | Meaning |
217
217
  |---|---|
218
218
  | `lsp.installed_servers` | List of language IDs (`typescript`, `python`, `go`, `rust`, `ruby`, …) whose server BALDART has recorded for this project. Identifiers map 1:1 to adapter files under `src/utils/lsp-adapters/`. |
219
- | `lsp.auto_verify` | When `true` (default), `baldart doctor` re-verifies the binaries are reachable on every run. Disable on CI if the verify step is too noisy. |
219
+ | `lsp.auto_verify` | When `true` (default), `baldart doctor` re-verifies the binaries are reachable **on `$PATH`** (via `command -v`, mirroring how the Claude Code LSP tool spawns them) on every run. Disable on CI if the verify step is too noisy. |
220
220
 
221
221
  **Install modes per adapter:**
222
222
 
223
- - `typescript`, `python` — installed as npm devDeps (`npm install --save-dev typescript-language-server typescript` / `pyright`). Project-local, version-pinned.
223
+ - `typescript`, `python` — installed globally via npm (`npm install -g typescript-language-server typescript` / `pyright`). Global on purpose: the consumer spawns the server by name from `$PATH`, so a project-local devDep under `node_modules/.bin/` would never be reachable. A binary present only in `node_modules` is reported `installed-but-unreachable`, not `verified`.
224
224
  - `go`, `rust`, `ruby` — installed via system tools (`go install …`, `rustup component add …`, `gem install …`). BALDART prints the command; the user runs it.
225
225
 
226
226
  **Fallback contract.** When the LSP layer is enabled but a server is missing or broken, agents silently fall back to Grep — code search never fails because of LSP issues. `baldart doctor` surfaces the mismatch and offers reinstall.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "baldart",
3
- "version": "3.33.0",
3
+ "version": "3.33.1",
4
4
  "description": "Claude Agent Framework - Reusable framework for coordinating AI agents and humans in software projects",
5
5
  "bin": {
6
6
  "baldart": "./bin/baldart.js"
@@ -706,7 +706,26 @@ async function interactivePrompts(merged, detected) {
706
706
  }
707
707
  const verify = installer.verifyServers(installed.map(i => i.name));
708
708
  const verified = verify.filter(v => v.ok).map(v => v.name);
709
- const newSet = new Set([...(merged.lsp.installed_servers || []), ...verified, ...manual.map(m => m.name)]);
709
+ // Every known-adapter result that isn't cleanly `verified` is STILL
710
+ // recorded (like system-mode pending installs): dropping it would make
711
+ // every re-run reinstall and `baldart doctor` would never see the
712
+ // mismatch. This covers `installed-but-unreachable` AND the npm-global
713
+ // happy-path trap where `npm install -g` exited 0 but npm's global bin
714
+ // dir isn't on the current `$PATH` (→ status `not-installed`, since npx
715
+ // can't see the global prefix either). Surface the fix in both cases.
716
+ const needsAttention = verify.filter(v => !v.ok && v.status !== 'unknown-adapter');
717
+ for (const u of needsAttention) {
718
+ UI.warning(`${u.name}: not reachable on $PATH (status: ${u.status}) — Claude Code's LSP tool can't spawn it.`);
719
+ if (u.fix) {
720
+ UI.code(u.fix, 'Run this, then ensure npm\'s global bin dir (`npm prefix -g` → /bin) is on $PATH; re-run `baldart doctor` to verify.');
721
+ }
722
+ }
723
+ const newSet = new Set([
724
+ ...(merged.lsp.installed_servers || []),
725
+ ...verified,
726
+ ...needsAttention.map(u => u.name),
727
+ ...manual.map(m => m.name)
728
+ ]);
710
729
  merged.lsp.installed_servers = Array.from(newSet);
711
730
  if (skipped.length) {
712
731
  UI.warning(`Skipped: ${skipped.map(s => `${s.name} (${s.reason})`).join(', ')}`);
@@ -534,14 +534,23 @@ function planActions(state) {
534
534
  actions.push({
535
535
  key: 'lsp-fix',
536
536
  label: `Reinstall ${state.lspBroken.length} broken LSP server(s)`,
537
- why: `LSP layer is enabled but these language servers are not reachable: ${state.lspBroken.join(', ')}. Symbol search will silently fall back to Grep until they are reinstalled.`,
538
- autoOk: false, // touches dev-deps and is the kind of action a user may
539
- // have made deliberate (switching from npm pyright to system pyright);
537
+ why: `LSP layer is enabled but these language servers are not reachable on $PATH: ${state.lspBroken.join(', ')}. The Claude Code LSP tool spawns each server by name from $PATH, so a binary that is missing OR only present in node_modules/.bin (a legacy devDep install) makes symbol search silently fall back to Grep. Reinstalling runs the global install so the binary lands on $PATH.`,
538
+ autoOk: false, // runs `npm install -g` and is the kind of action a user
539
+ // may have made deliberate (switching from npm pyright to system pyright);
540
540
  // keep the outer prompt + the per-server confirm both alive.
541
541
  run: async () => {
542
542
  const installer = new LspInstaller(state.cwd);
543
543
  const { installed, manual, skipped } = await installer.installServers(state.lspBroken);
544
- if (installed.length) UI.success(`Reinstalled: ${installed.map(i => i.name).join(', ')}`);
544
+ if (installed.length) {
545
+ UI.success(`Reinstalled: ${installed.map(i => i.name).join(', ')}`);
546
+ // If a reinstall keeps coming back broken, npm's global bin dir is
547
+ // likely not on $PATH — surface the escape so the user doesn't loop.
548
+ const recheck = installer.verifyServers(installed.map(i => i.name));
549
+ if (recheck.some(r => !r.ok)) {
550
+ UI.warning('Some servers are still unreachable after reinstall.');
551
+ UI.info('Check that npm\'s global bin dir is on $PATH: `npm prefix -g` → add its `/bin` to PATH.');
552
+ }
553
+ }
545
554
  for (const m of manual) {
546
555
  UI.warning(`System-level reinstall required for ${m.label}:`);
547
556
  console.log(` ${m.command}`);
@@ -4,10 +4,12 @@ const path = require('path');
4
4
  /**
5
5
  * Python LSP adapter — Pyright.
6
6
  *
7
- * Pyright ships as both an npm package and a pip package. We default to the
8
- * npm devDep route so installs stay project-local and version-pinned without
9
- * touching the user's Python env. Users who already drive Python via pip/uv
10
- * can override by removing pyright from devDeps and installing system-wide.
7
+ * Pyright ships as both an npm package and a pip package. We default to a
8
+ * global npm install so the `pyright` binary lands on `$PATH` — the consumer
9
+ * (Claude Code's LSP tool) spawns it by name from `$PATH`, so a project-local
10
+ * devDep under `node_modules/.bin/` (the pre-v3.33.1 behaviour) was never
11
+ * reachable and the layer silently fell back to Grep. Users who already drive
12
+ * Python via pip/uv can override with an overlay and a system-managed pyright.
11
13
  *
12
14
  * Detection signal: pyproject.toml, setup.py, setup.cfg, requirements.txt,
13
15
  * Pipfile, or a top-level .py source tree.
@@ -18,11 +20,13 @@ class PythonAdapter {
18
20
  get name() { return 'python'; }
19
21
  get label() { return 'Python (Pyright)'; }
20
22
  get binary() { return 'pyright'; }
21
- get installMode() { return 'npm-dev'; }
23
+ get installMode() { return 'npm-global'; }
22
24
  get npmPackage() { return 'pyright'; }
23
25
 
24
- installCommand() { return 'npm install --save-dev pyright'; }
25
- verifyCommand() { return 'npx --no-install pyright --version'; }
26
+ installCommand() { return 'npm install -g pyright'; }
27
+ // Functional probe; reachability on $PATH is checked by the installer via
28
+ // `command -v` (mirrors how the consumer spawns the binary).
29
+ verifyCommand() { return 'pyright --version'; }
26
30
  claudePluginId() { return 'pyright-lsp@claude-plugins-official'; }
27
31
 
28
32
  static detect(cwd = process.cwd()) {
@@ -5,8 +5,13 @@ const path = require('path');
5
5
  * TypeScript / JavaScript LSP adapter.
6
6
  *
7
7
  * Language server: `typescript-language-server` (Node, npm).
8
- * Install mode: project-local devDepkeeps the binary inside the consumer
9
- * repo's node_modules and avoids polluting the user's global env.
8
+ * Install mode: global npm install — the binary MUST land on `$PATH` because
9
+ * the consumer (Claude Code's LSP tool) spawns it by name from `$PATH`, not
10
+ * via `npx`/node_modules resolution. A project-local devDep (the pre-v3.33.1
11
+ * behaviour) installed into `node_modules/.bin/` which is NOT on `$PATH`, so
12
+ * every LSP spawn failed with `Executable not found in $PATH` while the
13
+ * `npx --no-install` verify falsely reported success — a dead layer masked by
14
+ * the silent Grep fallback.
10
15
  *
11
16
  * Detection signal: presence of `tsconfig.json`, `jsconfig.json`, or a
12
17
  * `package.json` referencing typescript in deps/devDeps.
@@ -18,19 +23,29 @@ class TypeScriptAdapter {
18
23
  get label() { return 'TypeScript / JavaScript'; }
19
24
  get binary() { return 'typescript-language-server'; }
20
25
 
21
- /** 'npm-dev' = npm devDependency, 'system' = printed install instructions. */
22
- get installMode() { return 'npm-dev'; }
26
+ /**
27
+ * 'npm-global' = installed globally via npm so it lands on `$PATH`.
28
+ * 'system' = printed install instructions (non-npm toolchains).
29
+ * Treated identically to system mode by the installer except that npm-global
30
+ * adapters are safe to auto-execute (no sudo, no toolchain assumptions).
31
+ */
32
+ get installMode() { return 'npm-global'; }
23
33
 
24
- /** npm package to install when mode='npm-dev'. */
34
+ /** npm package(s) to install when mode='npm-global'. */
25
35
  get npmPackage() { return 'typescript-language-server typescript'; }
26
36
 
27
37
  /** Shell command the user (or installer) should run. */
28
38
  installCommand() {
29
- return 'npm install --save-dev typescript-language-server typescript';
39
+ return 'npm install -g typescript-language-server typescript';
30
40
  }
31
41
 
32
- /** Verify the binary is reachable (no execution side effects). */
33
- verifyCommand() { return 'npx --no-install typescript-language-server --version'; }
42
+ /**
43
+ * Functional probe: invokes the binary the SAME way the consumer spawns it —
44
+ * by name from `$PATH`. Reachability on `$PATH` is the actual contract the
45
+ * consumer depends on; `LspInstaller.verifyServers()` checks it explicitly
46
+ * via `command -v` and only runs this probe once the binary resolves.
47
+ */
48
+ verifyCommand() { return 'typescript-language-server --version'; }
34
49
 
35
50
  /**
36
51
  * Claude Code code-intelligence plugin id, if any. Null = no companion plugin.
@@ -63,7 +63,7 @@ class LspInstaller {
63
63
  /**
64
64
  * Build a recommendation list from detected languages. Each entry carries
65
65
  * the install command and the install mode so the UI can decide whether
66
- * to run it automatically (npm-dev) or just print it (system).
66
+ * to run it automatically (npm-global) or just print it (system).
67
67
  */
68
68
  recommend(langs = this.detectLanguages()) {
69
69
  return langs.map(name => {
@@ -82,7 +82,8 @@ class LspInstaller {
82
82
 
83
83
  /**
84
84
  * Install one or more language servers. Returns `{ installed, skipped, manual }`.
85
- * - npm-dev adapters: executed in-process (npm install --save-dev …).
85
+ * - npm-global adapters: executed in-process (npm install -g …) so the
86
+ * binary lands on `$PATH` where the consumer can spawn it.
86
87
  * - system adapters: never executed automatically; surfaced under `manual`
87
88
  * so the caller can print the command for the user to run.
88
89
  *
@@ -335,25 +336,96 @@ class LspInstaller {
335
336
  }
336
337
 
337
338
  /**
338
- * Verify each named server's binary is reachable. Returns
339
- * `[{ name, ok, output | error }]`. Never throws.
339
+ * Is `binary` resolvable on `$PATH`? This mirrors EXACTLY how the consumer
340
+ * (Claude Code's LSP tool) spawns the language server — by name, from
341
+ * `$PATH`. Using `npx --no-install` here instead would resolve from
342
+ * `node_modules/.bin/` and produce a false positive: the verify passes while
343
+ * every real LSP spawn fails with `Executable not found in $PATH`. That
344
+ * resolution mismatch was the root cause of the pre-v3.33.1 dead-layer bug.
345
+ */
346
+ _isOnPath(binary) {
347
+ try {
348
+ execSync(`command -v ${binary}`, {
349
+ cwd: this.cwd,
350
+ stdio: ['ignore', 'pipe', 'pipe'],
351
+ timeout: 5000,
352
+ shell: '/bin/sh'
353
+ });
354
+ return true;
355
+ } catch { return false; }
356
+ }
357
+
358
+ /**
359
+ * For npm-managed adapters: is the binary installed project-locally (in
360
+ * `node_modules/.bin/`) even though it isn't on `$PATH`? This is the precise
361
+ * fingerprint of the legacy `npm install --save-dev` install — present, but
362
+ * unreachable by the consumer. System adapters have no local notion → false.
363
+ */
364
+ _isInstalledLocally(adapter) {
365
+ if (adapter.installMode === 'system') return false;
366
+ try {
367
+ execSync(`npx --no-install ${adapter.binary} --version`, {
368
+ cwd: this.cwd,
369
+ stdio: ['ignore', 'pipe', 'pipe'],
370
+ timeout: 8000
371
+ });
372
+ return true;
373
+ } catch { return false; }
374
+ }
375
+
376
+ /**
377
+ * Verify each named server is reachable the way the consumer spawns it.
378
+ * Returns `[{ name, ok, status, output? , error?, fix? }]`. Never throws.
379
+ *
380
+ * `status` is one of:
381
+ * - `verified` — on `$PATH` AND the functional probe passed.
382
+ * - `installed-but-unreachable` — installed locally (node_modules) but not
383
+ * on `$PATH`; the consumer cannot spawn it. `fix` carries the command
384
+ * that puts it on `$PATH`. Treated as broken (`ok:false`) — same honesty
385
+ * bar already applied to system adapters whose binary isn't installed.
386
+ * - `unreachable` — on `$PATH` but the probe errored (corrupt
387
+ * install / wrong flag). Rare.
388
+ * - `not-installed` — neither on `$PATH` nor locally installed.
389
+ * - `unknown-adapter` — name not in the registry.
340
390
  */
341
391
  verifyServers(serverNames) {
342
392
  return serverNames.map(name => {
343
393
  let a;
344
394
  try { a = getAdapter(name, this.cwd); }
345
- catch (err) { return { name, ok: false, error: err.message }; }
395
+ catch (err) { return { name, ok: false, status: 'unknown-adapter', error: err.message }; }
346
396
 
347
- try {
348
- const out = execSync(a.verifyCommand(), {
349
- cwd: this.cwd,
350
- stdio: ['ignore', 'pipe', 'pipe'],
351
- timeout: 8000
352
- }).toString().trim();
353
- return { name, ok: true, output: out };
354
- } catch (err) {
355
- return { name, ok: false, error: (err.message || '').split('\n')[0] };
397
+ if (this._isOnPath(a.binary)) {
398
+ try {
399
+ const out = execSync(a.verifyCommand(), {
400
+ cwd: this.cwd,
401
+ stdio: ['ignore', 'pipe', 'pipe'],
402
+ timeout: 8000
403
+ }).toString().trim();
404
+ return { name, ok: true, status: 'verified', output: out };
405
+ } catch (err) {
406
+ return {
407
+ name, ok: false, status: 'unreachable',
408
+ error: (err.message || '').split('\n')[0],
409
+ fix: a.installCommand()
410
+ };
411
+ }
412
+ }
413
+
414
+ // Not on $PATH. Distinguish "installed locally but unreachable" (the
415
+ // documented false-positive scenario) from "not installed at all".
416
+ if (this._isInstalledLocally(a)) {
417
+ return {
418
+ name, ok: false, status: 'installed-but-unreachable',
419
+ error: `${a.binary} is installed locally but not on $PATH; the Claude Code LSP tool spawns it by name from $PATH`,
420
+ fix: a.installCommand()
421
+ };
356
422
  }
423
+
424
+ return {
425
+ name, ok: false, status: 'not-installed',
426
+ error: `${a.binary} not found on $PATH`,
427
+ fix: a.installCommand()
428
+ };
357
429
  });
358
430
  }
359
431
  }