@mrclrchtr/supi-lsp 3.2.0 → 4.1.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 (58) hide show
  1. package/README.md +72 -62
  2. package/node_modules/@mrclrchtr/supi-code-runtime/README.md +8 -0
  3. package/node_modules/@mrclrchtr/supi-code-runtime/node_modules/@mrclrchtr/supi-core/package.json +2 -4
  4. package/node_modules/@mrclrchtr/supi-code-runtime/node_modules/@mrclrchtr/supi-core/src/api.ts +0 -4
  5. package/node_modules/@mrclrchtr/supi-code-runtime/node_modules/@mrclrchtr/supi-core/src/evidence-badge.ts +3 -2
  6. package/node_modules/@mrclrchtr/supi-code-runtime/node_modules/@mrclrchtr/supi-core/src/index.ts +0 -4
  7. package/node_modules/@mrclrchtr/supi-code-runtime/node_modules/@mrclrchtr/supi-core/src/llm.ts +0 -10
  8. package/node_modules/@mrclrchtr/supi-code-runtime/node_modules/@mrclrchtr/supi-core/src/path-utils.ts +19 -15
  9. package/node_modules/@mrclrchtr/supi-code-runtime/node_modules/@mrclrchtr/supi-core/src/settings/settings-action-menu.ts +1 -0
  10. package/node_modules/@mrclrchtr/supi-code-runtime/node_modules/@mrclrchtr/supi-core/src/settings/settings-schema.ts +9 -0
  11. package/node_modules/@mrclrchtr/supi-code-runtime/node_modules/@mrclrchtr/supi-core/src/settings.ts +1 -0
  12. package/node_modules/@mrclrchtr/supi-code-runtime/package.json +2 -2
  13. package/node_modules/@mrclrchtr/supi-code-runtime/src/api.ts +10 -1
  14. package/node_modules/@mrclrchtr/supi-code-runtime/src/capability/types.ts +19 -29
  15. package/node_modules/@mrclrchtr/supi-code-runtime/src/index.ts +7 -1
  16. package/node_modules/@mrclrchtr/supi-code-runtime/src/query-result.ts +42 -0
  17. package/node_modules/@mrclrchtr/supi-code-runtime/src/types.ts +15 -10
  18. package/node_modules/@mrclrchtr/supi-core/package.json +2 -4
  19. package/node_modules/@mrclrchtr/supi-core/src/api.ts +0 -4
  20. package/node_modules/@mrclrchtr/supi-core/src/evidence-badge.ts +3 -2
  21. package/node_modules/@mrclrchtr/supi-core/src/index.ts +0 -4
  22. package/node_modules/@mrclrchtr/supi-core/src/llm.ts +0 -10
  23. package/node_modules/@mrclrchtr/supi-core/src/path-utils.ts +19 -15
  24. package/node_modules/@mrclrchtr/supi-core/src/settings/settings-action-menu.ts +1 -0
  25. package/node_modules/@mrclrchtr/supi-core/src/settings/settings-schema.ts +9 -0
  26. package/node_modules/@mrclrchtr/supi-core/src/settings.ts +1 -0
  27. package/package.json +4 -5
  28. package/src/api.ts +9 -9
  29. package/src/client/client.ts +70 -41
  30. package/src/client/transport.ts +16 -13
  31. package/src/config/config.ts +2 -2
  32. package/src/config/lsp-settings.ts +0 -2
  33. package/src/index.ts +6 -6
  34. package/src/manager/manager-diagnostics.ts +5 -95
  35. package/src/manager/manager-workspace-recovery.ts +4 -3
  36. package/src/manager/manager-workspace-symbol.ts +44 -6
  37. package/src/manager/manager.ts +47 -65
  38. package/src/provider/lsp-semantic-provider.ts +132 -79
  39. package/src/provider/refactor-planning.ts +6 -14
  40. package/src/session/readiness.ts +38 -0
  41. package/src/session/runtime-controller.ts +87 -75
  42. package/src/session/runtime-registration.ts +5 -5
  43. package/src/session/{service-registry.ts → runtime-registry.ts} +163 -71
  44. package/node_modules/@mrclrchtr/supi-code-runtime/node_modules/@mrclrchtr/supi-core/src/abort-utils.ts +0 -31
  45. package/node_modules/@mrclrchtr/supi-code-runtime/node_modules/@mrclrchtr/supi-core/src/substrate-types.ts +0 -11
  46. package/node_modules/@mrclrchtr/supi-code-runtime/node_modules/@mrclrchtr/supi-core/src/types.ts +0 -2
  47. package/node_modules/@mrclrchtr/supi-core/src/abort-utils.ts +0 -31
  48. package/node_modules/@mrclrchtr/supi-core/src/substrate-types.ts +0 -11
  49. package/node_modules/@mrclrchtr/supi-core/src/types.ts +0 -2
  50. package/src/diagnostics/diagnostic-augmentation.ts +0 -82
  51. package/src/diagnostics/diagnostic-context.ts +0 -116
  52. package/src/diagnostics/diagnostic-display.ts +0 -69
  53. package/src/manager/capability-index.ts +0 -24
  54. package/src/manager/client-pool.ts +0 -33
  55. package/src/manager/diagnostic-store.ts +0 -51
  56. package/src/manager/manager-stale-resync.ts +0 -47
  57. package/src/manager/recovery-coordinator.ts +0 -37
  58. package/src/manager/workspace-router.ts +0 -44
@@ -34,6 +34,9 @@ export interface SymbolAnchor {
34
34
  character: number;
35
35
  }
36
36
 
37
+ /** Provider-backed nesting evidence for a declaration reported within one document. */
38
+ export type DeclarationNesting = "top-level" | "nested" | "unknown";
39
+
37
40
  /**
38
41
  * A discovered symbol / declaration.
39
42
  *
@@ -51,9 +54,21 @@ export interface CodeSymbol {
51
54
  file: string;
52
55
  declarationAnchor: SymbolAnchor;
53
56
  nameAnchor?: SymbolAnchor;
57
+ /** Named symbolic container when reported; absence does not prove top-level nesting. */
54
58
  container?: string | null;
55
59
  }
56
60
 
61
+ /**
62
+ * A document-scoped declaration with explicit hierarchy evidence.
63
+ *
64
+ * `unknown` means the provider returned a flat observation without an actual
65
+ * hierarchy. A reported container name remains metadata and does not promote
66
+ * a flat observation to known nesting.
67
+ */
68
+ export interface DocumentCodeSymbol extends CodeSymbol {
69
+ nesting: DeclarationNesting;
70
+ }
71
+
57
72
  // ── Result types ───────────────────────────────────────────────────────
58
73
 
59
74
  /**
@@ -143,11 +158,8 @@ export interface WorkspaceEdit {
143
158
 
144
159
  /**
145
160
  * Supported refactor operation names for the current semantic planning path.
146
- *
147
- * `rename` is kept as a legacy alias for the public rename-only surface.
148
161
  */
149
162
  export type RefactorOperation =
150
- | "rename"
151
163
  | "rename_symbol"
152
164
  | "extract_function"
153
165
  | "extract_variable"
@@ -156,13 +168,6 @@ export type RefactorOperation =
156
168
  | "update_imports"
157
169
  | "delete_dead_code";
158
170
 
159
- /** Normalize legacy refactor aliases to their canonical operation names. */
160
- export function normalizeRefactorOperation(
161
- operation: RefactorOperation,
162
- ): Exclude<RefactorOperation, "rename"> {
163
- return operation === "rename" ? "rename_symbol" : operation;
164
- }
165
-
166
171
  /**
167
172
  * Operation-aware refactor planning request.
168
173
  *
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrclrchtr/supi-core",
3
- "version": "3.2.0",
3
+ "version": "4.1.0",
4
4
  "description": "SuPi core — shared infrastructure for SuPi extensions (XML context tags, config system)",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -50,7 +50,6 @@
50
50
  },
51
51
  "main": "src/api.ts",
52
52
  "exports": {
53
- "./abort-utils": "./src/abort-utils.ts",
54
53
  "./api": "./src/api.ts",
55
54
  "./config": "./src/config.ts",
56
55
  "./context": "./src/context.ts",
@@ -71,7 +70,6 @@
71
70
  "./status-spinner": "./src/status-spinner.ts",
72
71
  "./terminal": "./src/terminal.ts",
73
72
  "./tool-framework": "./src/tool-framework.ts",
74
- "./prompt-surface": "./src/prompt-surface.ts",
75
- "./types": "./src/types.ts"
73
+ "./prompt-surface": "./src/prompt-surface.ts"
76
74
  }
77
75
  }
@@ -6,8 +6,6 @@
6
6
  // For lighter imports, use one of the domain subpaths directly
7
7
  // (e.g. @mrclrchtr/supi-core/config, @mrclrchtr/supi-core/context).
8
8
 
9
- // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
10
- export * from "./abort-utils.ts";
11
9
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
12
10
  export * from "./config.ts";
13
11
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
@@ -42,5 +40,3 @@ export * from "./status-spinner.ts";
42
40
  export * from "./terminal.ts";
43
41
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
44
42
  export * from "./tool-framework.ts";
45
- // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
46
- export * from "./types.ts";
@@ -22,14 +22,15 @@ export interface EvidenceBadgeInput {
22
22
  * |------------------------------------------------------|---------------------------------------|
23
23
  * | shown=12, total=12, omitted=0, label="references" | `12 references` |
24
24
  * | shown=8, total=20, omitted=12, label="symbols" | `8 of 20 symbols (12 omitted)` |
25
- * | shown=5, total=null, reason="timeout", label="matches" | `5 matches — timeout` |
25
+ * | shown=5, total=null, omitted=2, reason="timeout" | `5 matches (2 collected omitted; more may exist — timeout)` |
26
26
  */
27
27
  export function formatEvidenceBadge(input: EvidenceBadgeInput): string {
28
28
  const { shownCount, totalCount, omittedCount, partialReason, label } = input;
29
29
 
30
30
  if (totalCount === null) {
31
31
  const reasonSuffix = partialReason ? ` — ${partialReason}` : "";
32
- return `${shownCount} ${label}${reasonSuffix}`;
32
+ const omittedPrefix = (omittedCount ?? 0) > 0 ? `${omittedCount} collected omitted; ` : "";
33
+ return `${shownCount} ${label} (${omittedPrefix}more may exist${reasonSuffix})`;
33
34
  }
34
35
 
35
36
  if (omittedCount !== null && omittedCount > 0) {
@@ -6,8 +6,6 @@
6
6
  // For lighter imports, use one of the domain subpaths directly
7
7
  // (e.g. @mrclrchtr/supi-core/config, @mrclrchtr/supi-core/context).
8
8
 
9
- // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
10
- export * from "./abort-utils.ts";
11
9
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
12
10
  export * from "./config.ts";
13
11
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
@@ -36,5 +34,3 @@ export * from "./status-spinner.ts";
36
34
  export * from "./terminal.ts";
37
35
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
38
36
  export * from "./tool-framework.ts";
39
- // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
40
- export * from "./types.ts";
@@ -24,16 +24,6 @@ export interface WithRetryOptions {
24
24
  onRetry?: (attempt: number, delayMs: number) => void;
25
25
  }
26
26
 
27
- /**
28
- * Attempt an async operation with retries and exponential backoff.
29
- *
30
- * If the signal is already aborted on entry, the operation is skipped entirely.
31
- * If the signal aborts during a delay, the delay is cancelled immediately.
32
- *
33
- * @param fn - The async operation to retry.
34
- * @param options - Optional configuration for retries, backoff, signal, and callbacks.
35
- * @returns The result on success, or `null` if all attempts fail or the signal aborts.
36
- */
37
27
  /**
38
28
  * Create a promise that resolves after `ms` milliseconds, or rejects if
39
29
  * the signal fires before the timeout elapses.
@@ -1,4 +1,5 @@
1
1
  import * as path from "node:path";
2
+ import { fileURLToPath, pathToFileURL } from "node:url";
2
3
 
3
4
  /** Strip pi's optional leading `@` file-path prefix from a tool input. */
4
5
  export function stripToolPathPrefix(target: string): string {
@@ -16,25 +17,28 @@ export function resolveToolPath(cwd: string, target: string): string {
16
17
  return path.resolve(cwd, stripToolPathPrefix(target));
17
18
  }
18
19
 
19
- /** Convert a file path to a file:// URI. */
20
+ /**
21
+ * Convert a file path to a file:// URI.
22
+ *
23
+ * Uses Node's `pathToFileURL` to produce a standards-compliant URI with
24
+ * proper percent-encoding of spaces, hashes, and other special characters.
25
+ */
20
26
  export function fileToUri(filePath: string): string {
21
- const resolved = path.resolve(filePath);
22
- if (process.platform === "win32") {
23
- return `file:///${resolved.replace(/\\/g, "/")}`;
24
- }
25
- return `file://${resolved}`;
27
+ return pathToFileURL(filePath).href;
26
28
  }
27
29
 
28
- /** Convert a file:// URI to a file path. */
30
+ /**
31
+ * Convert a file:// URI to a file path.
32
+ *
33
+ * Uses Node's `fileURLToPath` for standards-compliant decoding. Non-file
34
+ * URIs are passed through unchanged so consumers (such as LSP diagnostic
35
+ * handling) remain compatible with non-file URI schemes.
36
+ */
29
37
  export function uriToFile(uri: string): string {
30
38
  if (!uri.startsWith("file://")) return uri;
31
- let filePath = decodeURIComponent(uri.slice(7));
32
- if (
33
- process.platform === "win32" &&
34
- filePath.startsWith("/") &&
35
- /^[A-Za-z]:/.test(filePath.slice(1))
36
- ) {
37
- filePath = filePath.slice(1);
39
+ try {
40
+ return fileURLToPath(uri);
41
+ } catch {
42
+ return uri;
38
43
  }
39
- return filePath;
40
44
  }
@@ -34,6 +34,7 @@ export function buildActionMenu(field: ScopedFieldValue, scope: SettingsScope):
34
34
  if (choices.length > 0) {
35
35
  for (const choice of choices) menu.push({ value: `set:${choice}`, label: choice });
36
36
  } else if (field.field.kind === "number") menu.push({ value: "edit", label: "Edit value…" });
37
+ else if (field.field.kind === "string") menu.push({ value: "edit", label: "Edit value…" });
37
38
  else if (field.field.kind === "stringList") menu.push({ value: "edit", label: "Edit values…" });
38
39
  else if (field.field.kind === "modelPicker")
39
40
  menu.push({ value: "edit", label: "Choose model…" });
@@ -86,6 +86,11 @@ export interface NumberField extends BaseField {
86
86
  values?: string[];
87
87
  }
88
88
 
89
+ /** One free-form string. */
90
+ export interface StringField extends BaseField {
91
+ kind: "string";
92
+ }
93
+
89
94
  /** Comma-separated string list. */
90
95
  export interface StringListField extends BaseField {
91
96
  kind: "stringList";
@@ -164,6 +169,7 @@ export type SettingsField =
164
169
  | BoolField
165
170
  | EnumField
166
171
  | NumberField
172
+ | StringField
167
173
  | StringListField
168
174
  | ModelPickerField
169
175
  | CustomField;
@@ -248,6 +254,8 @@ export function formatValue(value: unknown, field: SettingsField): string {
248
254
  return value ? "on" : "off";
249
255
  case "number":
250
256
  return String(value ?? "");
257
+ case "string":
258
+ return typeof value === "string" && value ? value : "none";
251
259
  case "stringList": {
252
260
  const arr = Array.isArray(value) ? value : [];
253
261
  return arr.length > 0 ? arr.map(String).join(", ") : "none";
@@ -271,6 +279,7 @@ export function sourceBadge(displayValue: string, source: ValueSource): string {
271
279
 
272
280
  /** Format the value used to prefill editors and compare concrete choices. */
273
281
  export function formatEditValue(value: unknown, field: SettingsField): string {
282
+ if (field.kind === "string") return typeof value === "string" ? value : "";
274
283
  if (field.kind === "stringList") {
275
284
  const arr = Array.isArray(value) ? value : [];
276
285
  return arr.map(String).join(", ");
@@ -26,6 +26,7 @@ export type {
26
26
  SettingsField,
27
27
  SettingsFieldAction,
28
28
  SettingsPersistedChange,
29
+ StringField,
29
30
  StringListField,
30
31
  ValueSource,
31
32
  } from "./settings/settings-schema.ts";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mrclrchtr/supi-lsp",
3
- "version": "3.2.0",
4
- "description": "SuPi LSP extension — Language Server Protocol integration for pi",
3
+ "version": "4.1.0",
4
+ "description": "SuPi LSP runtime — Language Server Protocol integration library for pi",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -18,7 +18,6 @@
18
18
  "keywords": [
19
19
  "pi",
20
20
  "pi-coding-agent",
21
- "pi-extension",
22
21
  "lsp",
23
22
  "language-server",
24
23
  "go-to-definition",
@@ -38,8 +37,8 @@
38
37
  "vscode-jsonrpc": "^9.0.0",
39
38
  "vscode-languageserver-protocol": "^3.17.5",
40
39
  "vscode-languageserver-types": "^3.17.5",
41
- "@mrclrchtr/supi-code-runtime": "3.2.0",
42
- "@mrclrchtr/supi-core": "3.2.0"
40
+ "@mrclrchtr/supi-code-runtime": "4.1.0",
41
+ "@mrclrchtr/supi-core": "4.1.0"
43
42
  },
44
43
  "bundledDependencies": [
45
44
  "@mrclrchtr/supi-code-runtime",
package/src/api.ts CHANGED
@@ -38,18 +38,18 @@ export type {
38
38
  LspStartResult,
39
39
  } from "./session/runtime-controller.ts";
40
40
  export { LspRuntimeController } from "./session/runtime-controller.ts";
41
- export { scanMissingServers } from "./session/scanner.ts";
42
41
  export type {
43
42
  OutstandingDiagnosticSummaryEntry,
44
43
  RecoverDiagnosticsResult,
45
44
  SemanticReadinessResult,
46
- SessionLspServiceState,
47
45
  WorkspaceDiagnosticSummaryEntry,
48
- } from "./session/service-registry.ts";
46
+ WorkspaceLspRuntime,
47
+ WorkspaceLspRuntimeState,
48
+ } from "./session/runtime-registry.ts";
49
49
  export {
50
- clearSessionLspService,
51
- getSessionLspService,
52
- SessionLspService,
53
- setSessionLspServiceState,
54
- waitForSessionLspService,
55
- } from "./session/service-registry.ts";
50
+ clearWorkspaceLspRuntime,
51
+ getWorkspaceLspRuntime,
52
+ setWorkspaceLspRuntimeState,
53
+ waitForWorkspaceLspRuntime,
54
+ } from "./session/runtime-registry.ts";
55
+ export { scanMissingServers } from "./session/scanner.ts";
@@ -5,6 +5,11 @@
5
5
  import { type ChildProcess, execSync, spawn } from "node:child_process";
6
6
  import { existsSync } from "node:fs";
7
7
  import * as path from "node:path";
8
+ import {
9
+ type CodeQueryResult,
10
+ completedCodeQuery,
11
+ unavailableCodeQuery,
12
+ } from "@mrclrchtr/supi-code-runtime/api";
8
13
  import { recordDebugEvent } from "@mrclrchtr/supi-core/debug";
9
14
  import type { ProgressToken } from "vscode-languageserver-protocol";
10
15
  import { CLIENT_CAPABILITIES } from "../config/capabilities.ts";
@@ -37,6 +42,25 @@ import { JsonRpcClient, JsonRpcRequestError } from "./transport.ts";
37
42
  const SHUTDOWN_TIMEOUT_MS = 5_000;
38
43
  const DIAGNOSTIC_WAIT_MS = 3_000;
39
44
 
45
+ /** Race an operation against a timeout without retaining the timer after settlement. */
46
+ async function withTimeout<T>(
47
+ operation: Promise<T>,
48
+ timeoutMs: number,
49
+ message: string,
50
+ ): Promise<T> {
51
+ let timer: ReturnType<typeof setTimeout> | undefined;
52
+ try {
53
+ return await Promise.race([
54
+ operation,
55
+ new Promise<never>((_resolve, reject) => {
56
+ timer = setTimeout(() => reject(new Error(message)), timeoutMs);
57
+ }),
58
+ ]);
59
+ } finally {
60
+ if (timer !== undefined) clearTimeout(timer);
61
+ }
62
+ }
63
+
40
64
  // ── Process-tree cleanup ──────────────────────────────────────────────
41
65
 
42
66
  /**
@@ -218,20 +242,13 @@ export class LspClient {
218
242
  if (!this.rpc || !this.process) return;
219
243
 
220
244
  try {
221
- // Send shutdown request with a timeout
222
- await Promise.race([
223
- this.rpc.sendRequest("shutdown"),
224
- new Promise((_, reject) =>
225
- setTimeout(() => reject(new Error("shutdown timeout")), SHUTDOWN_TIMEOUT_MS),
226
- ),
227
- ]);
245
+ await withTimeout(this.rpc.sendRequest("shutdown"), SHUTDOWN_TIMEOUT_MS, "shutdown timeout");
228
246
  // Flush the final exit notification before disposing the transport.
229
- await Promise.race([
247
+ await withTimeout(
230
248
  this.rpc.sendNotification("exit"),
231
- new Promise((_, reject) =>
232
- setTimeout(() => reject(new Error("exit notification timeout")), SHUTDOWN_TIMEOUT_MS),
233
- ),
234
- ]);
249
+ SHUTDOWN_TIMEOUT_MS,
250
+ "exit notification timeout",
251
+ );
235
252
  } catch {
236
253
  // Timeout or error — force kill
237
254
  }
@@ -382,11 +399,6 @@ export class LspClient {
382
399
  return result;
383
400
  }
384
401
 
385
- /** Get the internal cache entry for a file (exposed for testing / version checks). */
386
- getDiagnosticCacheEntry(uri: string): DiagnosticCacheEntry | undefined {
387
- return this.diagnosticStore.get(uri);
388
- }
389
-
390
402
  /**
391
403
  * Clear all pull-diagnostic result IDs, forcing full (not `unchanged`)
392
404
  * pull diagnostic responses on the next refresh cycle.
@@ -401,11 +413,6 @@ export class LspClient {
401
413
  }
402
414
  }
403
415
 
404
- /** Get all currently open document URIs. */
405
- get openUris(): string[] {
406
- return Array.from(this.openDocs.keys());
407
- }
408
-
409
416
  /** Check if server supports pull diagnostics. */
410
417
  get hasDiagnosticProvider(): boolean {
411
418
  return this.capabilities?.diagnosticProvider !== undefined;
@@ -462,8 +469,8 @@ export class LspClient {
462
469
  }
463
470
 
464
471
  // ── LSP Requests ───────────────────────────────────────────────────
465
- async hover(filePath: string, position: Position): Promise<Hover | null> {
466
- return this.request("textDocument/hover", {
472
+ async hover(filePath: string, position: Position): Promise<CodeQueryResult<Hover | null>> {
473
+ return this.query("textDocument/hover", {
467
474
  textDocument: { uri: fileToUri(filePath) },
468
475
  position,
469
476
  });
@@ -472,30 +479,39 @@ export class LspClient {
472
479
  async definition(
473
480
  filePath: string,
474
481
  position: Position,
475
- ): Promise<Location | Location[] | LocationLink[] | null> {
476
- return this.request("textDocument/definition", {
482
+ ): Promise<CodeQueryResult<Location | Location[] | LocationLink[] | null>> {
483
+ return this.query("textDocument/definition", {
477
484
  textDocument: { uri: fileToUri(filePath) },
478
485
  position,
479
486
  });
480
487
  }
481
488
 
482
- async references(filePath: string, position: Position): Promise<Location[] | null> {
483
- return this.request("textDocument/references", {
489
+ async references(
490
+ filePath: string,
491
+ position: Position,
492
+ ): Promise<CodeQueryResult<Location[] | null>> {
493
+ return this.query("textDocument/references", {
484
494
  textDocument: { uri: fileToUri(filePath) },
485
495
  position,
486
496
  context: { includeDeclaration: true },
487
497
  });
488
498
  }
489
499
 
490
- async documentSymbols(filePath: string): Promise<DocumentSymbol[] | SymbolInformation[] | null> {
491
- return this.request("textDocument/documentSymbol", {
500
+ async documentSymbols(
501
+ filePath: string,
502
+ ): Promise<CodeQueryResult<DocumentSymbol[] | SymbolInformation[] | null>> {
503
+ return this.query("textDocument/documentSymbol", {
492
504
  textDocument: { uri: fileToUri(filePath) },
493
505
  });
494
506
  }
495
507
 
496
- async workspaceSymbol(query: string): Promise<SymbolInformation[] | WorkspaceSymbol[] | null> {
497
- if (!this.capabilities?.workspaceSymbolProvider) return null;
498
- return this.request("workspace/symbol", { query });
508
+ async workspaceSymbol(
509
+ query: string,
510
+ ): Promise<CodeQueryResult<SymbolInformation[] | WorkspaceSymbol[] | null>> {
511
+ if (!this.capabilities?.workspaceSymbolProvider) {
512
+ return unavailableCodeQuery("Workspace-symbol requests are not supported by this server.");
513
+ }
514
+ return this.query("workspace/symbol", { query });
499
515
  }
500
516
 
501
517
  async rename(
@@ -525,25 +541,38 @@ export class LspClient {
525
541
  async implementation(
526
542
  filePath: string,
527
543
  position: Position,
528
- ): Promise<Location | Location[] | LocationLink[] | null> {
529
- if (!this.capabilities?.implementationProvider) return null;
530
- return this.request("textDocument/implementation", {
544
+ ): Promise<CodeQueryResult<Location | Location[] | LocationLink[] | null>> {
545
+ if (!this.capabilities?.implementationProvider) {
546
+ return unavailableCodeQuery("Implementation requests are not supported by this server.");
547
+ }
548
+ return this.query("textDocument/implementation", {
531
549
  textDocument: { uri: fileToUri(filePath) },
532
550
  position,
533
551
  });
534
552
  }
535
553
 
536
554
  // ── Private ─────────────────────────────────────────────────────────
537
- private async request<T>(method: string, params: unknown): Promise<T | null> {
538
- if (!this.rpc || this._status !== "running") return null;
555
+ private async query<T>(method: string, params: unknown): Promise<CodeQueryResult<T | null>> {
556
+ if (!this.rpc || this._status !== "running") {
557
+ return unavailableCodeQuery(
558
+ `LSP request ${method} is unavailable because the client is not running.`,
559
+ );
560
+ }
539
561
  try {
540
562
  await this.getReady();
541
- return (await this.rpc.sendRequest(method, params)) as T;
542
- } catch {
543
- return null;
563
+ const data = (await this.rpc.sendRequest(method, params)) as T | null | undefined;
564
+ return completedCodeQuery(data ?? null);
565
+ } catch (error) {
566
+ const detail = error instanceof Error ? error.message : String(error);
567
+ return unavailableCodeQuery(`LSP request ${method} failed: ${detail}`);
544
568
  }
545
569
  }
546
570
 
571
+ private async request<T>(method: string, params: unknown): Promise<T | null> {
572
+ const result = await this.query<T>(method, params);
573
+ return result.kind === "unavailable" ? null : result.data;
574
+ }
575
+
547
576
  private handleServerRequest(method: string, params: unknown): unknown {
548
577
  switch (method) {
549
578
  case "workspace/configuration":
@@ -90,26 +90,29 @@ export class JsonRpcClient {
90
90
  const timeoutMs = options?.timeoutMs ?? this.timeoutMs;
91
91
  const tokenSource = new CancellationTokenSource();
92
92
 
93
- const timer = setTimeout(() => tokenSource.cancel(), timeoutMs);
93
+ let timeout: ReturnType<typeof setTimeout> | undefined;
94
+ const timeoutError = new Error(`Request ${method} timed out after ${timeoutMs}ms`);
94
95
 
95
96
  const request = this.connection.sendRequest(method, params, tokenSource.token);
96
97
  // Catch the raw request promise to prevent unhandled rejections when
97
- // dispose() cancels the token without a preceding timeout (the raced
98
- // promise below covers the timeout-then-dispose path separately).
98
+ // dispose() cancels the token without a preceding timeout.
99
99
  request.catch(() => {});
100
100
 
101
- // Race the request against a timeout so callers don't hang forever.
102
- // The CancellationToken is also passed to sendRequest so the connection
103
- // can short-circuit writes and cleanup when the token fires.
101
+ // Race the request against a single shared timeout that both cancels
102
+ // the JSON-RPC token and rejects the caller. Using one timer avoids
103
+ // a leak where the rejecting timer in a second Promise stays alive
104
+ // after a successful response.
104
105
  const promise = Promise.race([
105
106
  request,
106
- new Promise<never>((_, reject) =>
107
- setTimeout(
108
- () => reject(new Error(`Request ${method} timed out after ${timeoutMs}ms`)),
109
- timeoutMs,
110
- ),
111
- ),
112
- ]).finally(() => clearTimeout(timer));
107
+ new Promise<never>((_resolve, reject) => {
108
+ timeout = setTimeout(() => {
109
+ tokenSource.cancel();
110
+ reject(timeoutError);
111
+ }, timeoutMs);
112
+ }),
113
+ ]).finally(() => {
114
+ if (timeout !== undefined) clearTimeout(timeout);
115
+ });
113
116
 
114
117
  // Prevent unhandled rejection when dispose() cancels requests
115
118
  promise.catch(() => {});
@@ -49,13 +49,13 @@ export function loadConfig(cwd: string, options?: LoadConfigOptions): LspConfig
49
49
  const globalLsp = loadSupiConfigForScope(
50
50
  "lsp",
51
51
  cwd,
52
- { enabled: true, severity: 1, active: [], servers: {} as Record<string, ServerConfig> },
52
+ { enabled: true, active: [], servers: {} as Record<string, ServerConfig> },
53
53
  { scope: "global", homeDir: options?.homeDir },
54
54
  );
55
55
  const projectLsp = loadSupiConfigForScope(
56
56
  "lsp",
57
57
  cwd,
58
- { enabled: true, severity: 1, active: [], servers: {} as Record<string, ServerConfig> },
58
+ { enabled: true, active: [], servers: {} as Record<string, ServerConfig> },
59
59
  { scope: "project" },
60
60
  );
61
61
 
@@ -10,14 +10,12 @@ import { loadSupiConfig, loadSupiConfigForScope } from "@mrclrchtr/supi-core/con
10
10
 
11
11
  export interface LspSettings extends Record<string, unknown> {
12
12
  enabled: boolean;
13
- severity: number;
14
13
  active: string[];
15
14
  exclude: string[];
16
15
  }
17
16
 
18
17
  export const LSP_DEFAULTS: LspSettings = {
19
18
  enabled: true,
20
- severity: 1,
21
19
  active: [],
22
20
  exclude: [],
23
21
  };
package/src/index.ts CHANGED
@@ -31,11 +31,11 @@ export type {
31
31
  OutstandingDiagnosticSummaryEntry,
32
32
  RecoverDiagnosticsResult,
33
33
  SemanticReadinessResult,
34
- SessionLspServiceState,
35
34
  WorkspaceDiagnosticSummaryEntry,
36
- } from "./session/service-registry.ts";
35
+ WorkspaceLspRuntime,
36
+ WorkspaceLspRuntimeState,
37
+ } from "./session/runtime-registry.ts";
37
38
  export {
38
- getSessionLspService,
39
- SessionLspService,
40
- waitForSessionLspService,
41
- } from "./session/service-registry.ts";
39
+ getWorkspaceLspRuntime,
40
+ waitForWorkspaceLspRuntime,
41
+ } from "./session/runtime-registry.ts";