feat: add Claude Code marketplace and dexter-lsp plugin#59
Open
pquadri wants to merge 5 commits into
Open
Conversation
Explains how to wire up Dexter as the Elixir LSP for Claude Code's LSP tool (go-to-definition, hover docs, find references) using a local plugin manifest.
Turns the dexter repo into a Claude Code marketplace so users can install Dexter as their Elixir LSP with two commands: claude plugin marketplace add remoteoss/dexter claude plugin install dexter-lsp@dexter The plugin wires up `dexter lsp` for .ex/.exs/.heex files and exposes followDelegates and debug as user-configurable options.
Member
|
Thanks for the PR @pquadri! I think this is a great addition. Going to sleep on whether to keep this in the same repo or in a different one. If you have any docs on the matter, I'd also be glad to read them. Should be able to merge this tomorrow. |
JesseHerrick
reviewed
May 6, 2026
| "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json", | ||
| "name": "dexter-lsp", | ||
| "description": "Dexter language server for Elixir (.ex, .exs, .heex)", | ||
| "version": "0.6.0", |
Member
There was a problem hiding this comment.
I'd say that this would be the version of the plugin itself, no? So v0.1
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
Reviewed by Cursor Bugbot for commit 305f540. Configure here.
Claude Code plugin template substitution (${user_config.X}) always
produces a JSON string even when the userConfig type is "boolean".
The strict `.(bool)` type assertions silently dropped the user's
followDelegates/debug settings, leaving them stuck at hardcoded defaults.
Add a coerceBool helper that accepts both native bool and string forms
("true"/"false"/"1"/"0"). Expand the initializationOptions test to call
server.Initialize and cover both forms.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
Turns the dexter repo into a Claude Code marketplace, so users can install Dexter as their Elixir LSP in Claude Code with just two commands:
Changes
.claude-plugin/marketplace.json— makes this repo a Claude Code marketplace nameddexterplugins/dexter-lsp/.claude-plugin/plugin.json— plugin manifest that wires updexter lspfor.ex,.exs, and.heexfiles, withfollowDelegatesanddebugexposed as user-configurable optionsREADME.md— adds a Claude Code section to the editor setup docsHow it works
Claude Code's LSP tool supports a plugin system. The
lspServersentry inplugin.jsontells Claude Code to spawndexter lspwhen opening Elixir files, giving it go-to-definition, hover docs, find references, workspace symbols, and more.Test plan
claude plugin marketplace add remoteoss/dextersucceedsclaude plugin install dexter-lsp@dextersucceeds.exfilesuserConfigprompts appear forfollowDelegatesanddebugon installNote
Low Risk
Low risk: mainly adds plugin/README metadata and only loosens
Initializeoption parsing to accept string booleans forfollowDelegates/debug.Overview
Enables installing Dexter as an Elixir LSP in Claude Code by adding a repo-level
.claude-plugin/marketplace.jsonand adexter-lspplugin manifest that launchesdexter lspfor.ex,.exs, and.heexfiles with user-configurablefollowDelegatesanddebug.Updates the LSP server
Initializepath to accept boolean initialization options provided as either JSON booleans or string values (e.g. from Claude Code template substitution), and expands tests to cover default behavior and the new coercion cases. Documentation is updated with Claude Code setup and install commands.Reviewed by Cursor Bugbot for commit 06e9523. Bugbot is set up for automated code reviews on this repo. Configure here.