Community Claude Code plugins by Intergrado - LSP servers, developer tools, and productivity extensions.
| Plugin | Description |
|---|---|
| svelte-lsp | Svelte language server for code intelligence |
claude plugin marketplace add intergrado/intergrado-claude-pluginsclaude plugin install svelte-lsp@intergrado-claude-pluginsRestart Claude Code for the plugin to take effect.
The marketplace can be added using the GitHub shorthand:
claude plugin marketplace add intergrado/intergrado-claude-pluginsVerify the marketplace was added:
claude plugin marketplace listYou should see intergrado-claude-plugins in the list.
Once the marketplace is added, install any plugin using:
claude plugin install <plugin-name>@intergrado-claude-pluginsFor example:
claude plugin install svelte-lsp@intergrado-claude-pluginsTo see all plugins available in this marketplace:
claude plugin list --marketplace intergrado-claude-pluginsTo update a plugin to the latest version:
claude plugin update svelte-lsp@intergrado-claude-pluginsTo remove a plugin:
claude plugin uninstall svelte-lsp@intergrado-claude-pluginsTo remove this marketplace entirely:
claude plugin marketplace remove intergrado-claude-pluginsAdds Svelte language server support to Claude Code.
Features:
- Go to Definition
- Find References
- Hover Information
- Document Symbols
- Workspace Symbols
- Diagnostics
Prerequisites: Install svelte-language-server globally:
npm install -g svelte-language-serverSupported extensions: .svelte
If you get an error when adding the marketplace, ensure you have the correct repository path:
claude plugin marketplace add intergrado/intergrado-claude-plugins-
Verify the marketplace is added:
claude plugin marketplace list
-
Try updating the marketplace:
claude plugin marketplace update intergrado-claude-plugins
- Ensure the required language server is installed globally
- Verify it's in your PATH:
- Linux/macOS:
which svelteserver - Windows (PowerShell):
Get-Command svelteserver - Windows (cmd.exe):
where svelteserver
- Linux/macOS:
- Restart Claude Code
Check Claude Code logs for errors:
Linux/macOS:
grep -i "plugin\|lsp" ~/.claude/debug/<session>.txtWindows (PowerShell):
Select-String -Pattern "plugin|lsp" -Path "$env:USERPROFILE\.claude\debug\<session>.txt"Windows (cmd.exe):
findstr /i "plugin lsp" "%USERPROFILE%\.claude\debug\<session>.txt"Want to add a plugin to this marketplace? Open a pull request with:
- Your plugin in
plugins/<plugin-name>/ - A
.claude-plugin/plugin.jsonmanifest - A
README.mdwith documentation - An entry in the root
marketplace.json
MIT