Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/LSP_COMPATIBILITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Every standalone LSP exposes the same agent CLI operation set: `check`, `context

| LSP Server | Diagnostic Engine | Agent CLI | Agent Operations | Help Smoke | Closed Loop |
|------------|-------------------|-----------|------------------|------------|-------------|
| `abacus-lsp` | v1 | `abacus-lsp-tool` | `check`, `context`, `complete`, `hover`, `symbols`, `fix` | Pending | Planned |
| `abacus-lsp` | v1 | `abacus-lsp-tool` | `check`, `context`, `complete`, `hover`, `symbols`, `fix` | Passing | Partial |
| `abinit-lsp` | v1 | `abinit-lsp-tool` | `check`, `context`, `complete`, `hover`, `symbols`, `fix` | Passing | Partial |
| `cif-lsp` | v1 | `cif-lsp-tool` | `check`, `context`, `complete`, `hover`, `symbols`, `fix` | Pending | Planned |
| `cp2k-lsp-enhanced` | v1 | `cp2k-lsp-tool` | `check`, `context`, `complete`, `hover`, `symbols`, `fix` | Pending | Partial |
Expand Down
2 changes: 1 addition & 1 deletion docs/LSP_FAMILY_MATURITY_AUDIT_2026-06-15.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The OpenQC family gate has no blocking errors, but it still reports these maturi

| Repo | Remaining warnings |
|------|--------------------|
| `abacus-lsp` | Missing canonical capabilities section; no git tags; no `CHANGELOG.md` or `VERSION`; closed-loop support still planned. |
| `abacus-lsp` | No git tags; no `CHANGELOG.md` or `VERSION`. INPUT/STRU/KPT runtime diagnostics and fix-preview/refusal envelopes are now wired, but exhaustive ABACUS version/rule coverage is still open. |
| `abinit-lsp` | No git tags; no `CHANGELOG.md` or `VERSION`. Runtime/log diagnostics and fix-hint envelopes are now wired, but exhaustive ABINIT version/rule coverage is still open. |
| `cif-lsp` | Closed-loop support still planned. |
| `cp2k-lsp-enhanced` | No current family-gate warnings. |
Expand Down
2 changes: 1 addition & 1 deletion src/lsp/registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ const BUNDLED_LSP_SERVERS: readonly LSPServerRegistryEntry[] = [
] as const;

export const LSP_DIAGNOSTIC_READINESS: Readonly<Record<string, DiagnosticReadiness>> = {
'abacus-lsp': diagnosticReadiness('abacus-lsp-tool', 'planned'),
'abacus-lsp': diagnosticReadiness('abacus-lsp-tool', 'partial', 'passing'),
'abinit-lsp': diagnosticReadiness('abinit-lsp-tool', 'partial', 'passing'),
'cif-lsp': diagnosticReadiness('cif-lsp-tool', 'partial', 'passing'),
'cp2k-lsp-enhanced': diagnosticReadiness('cp2k-lsp-tool', 'partial'),
Expand Down
Loading