Zig development plugins for Claude Code.
Integrates ZLS (Zig Language Server) with Claude Code, enabling go-to-definition, hover, find-references, and other LSP features on .zig and .zon files.
Requires: zls installed and in your PATH (e.g. brew install zls). See zigtools.org/zls for other installation options.
First, add the zig-skills marketplace to your settings.json:
{
"extraKnownMarketplaces": {
"zig-skills": {
"source": {
"source": "github",
"repo": "bnferguson/zig-skills"
}
}
}
}Then install the plugin:
claude plugin install zls-lsp@zig-skillsOr enable it directly in settings.json:
{
"enabledPlugins": {
"zls-lsp@zig-skills": true
}
}MIT