Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From helm
helm_ls Language Server for Helm provides code intelligence — diagnostics, autocomplete, go-to-definition, hover info, and template validation for .yaml/.yml/.tpl files.
npx claudepluginhub thebushidocollective/han --plugin helmThis LSP server requires ${CLAUDE_PLUGIN_ROOT}/scripts/lsp-entrypoint.shto be installed on your system. Make sure it's available in your PATH before enabling.
Copy this JSON into your .lsp.json to enable this server
Add to your .lsp.json or plugin.json:
{
"lspServers": {
"helm_ls": {
"command": "${CLAUDE_PLUGIN_ROOT}/scripts/lsp-entrypoint.sh",
"extensionToLanguage": {
".tpl": "helm",
".yml": "helm",
".yaml": "helm"
},
"args": [
"serve"
]
}
}
}File extensions mapped to language identifiers
Server configuration and transport parameters
${CLAUDE_PLUGIN_ROOT}/scripts/lsp-entrypoint.shstdioCommand-line arguments passed to the server process
Initialization options and workspace settings
Share bugs, ideas, or general feedback.