{"id":50410962,"url":"https://github.com/agent-sh/zig-lsp","last_synced_at":"2026-05-31T03:31:06.430Z","repository":{"id":353866106,"uuid":"1221217604","full_name":"agent-sh/zig-lsp","owner":"agent-sh","description":"Zig LSP plugin for Claude Code (via ZLS) — agent-sh marketplace","archived":false,"fork":false,"pushed_at":"2026-05-30T09:46:25.000Z","size":57,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-30T11:22:00.209Z","etag":null,"topics":["agentic-ai","ai-coding","ai-coding-assistant","anthropic","claude","claude-code","claude-code-marketplace","claude-code-plugin","claude-code-plugin-marketplace","claude-code-plugins","code-intelligence","developer-tooling","language-server","language-server-protocol","lsp","zig","zig-language-server","zig-tools","ziglang","zls"],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/agent-sh.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-04-25T22:53:31.000Z","updated_at":"2026-05-30T09:46:29.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/agent-sh/zig-lsp","commit_stats":null,"previous_names":["agent-sh/zig-lsp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/agent-sh/zig-lsp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agent-sh%2Fzig-lsp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agent-sh%2Fzig-lsp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agent-sh%2Fzig-lsp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agent-sh%2Fzig-lsp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/agent-sh","download_url":"https://codeload.github.com/agent-sh/zig-lsp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agent-sh%2Fzig-lsp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33718446,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-31T02:00:06.040Z","response_time":95,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agentic-ai","ai-coding","ai-coding-assistant","anthropic","claude","claude-code","claude-code-marketplace","claude-code-plugin","claude-code-plugin-marketplace","claude-code-plugins","code-intelligence","developer-tooling","language-server","language-server-protocol","lsp","zig","zig-language-server","zig-tools","ziglang","zls"],"created_at":"2026-05-31T03:31:04.944Z","updated_at":"2026-05-31T03:31:06.423Z","avatar_url":"https://github.com/agent-sh.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# agent-sh / zig-lsp\n\nA Claude Code marketplace hosting the [`zig-lsp`](plugins/zig-lsp) plugin — Zig language support via [ZLS](https://github.com/zigtools/zls).\n\n## Install\n\n```\n/plugin marketplace add agent-sh/zig-lsp\n/plugin install zig-lsp@agent-sh\n```\n\nOpen a `.zig` or `.zon` file. Claude Code reports diagnostics from `zls` automatically after every edit, and the `LSP` tool gives the model jump-to-definition, find-references, and hover.\n\nYou must have `zls` installed and on `PATH`. See [`plugins/zig-lsp/README.md`](plugins/zig-lsp/README.md) for setup, configuration, and troubleshooting.\n\n## What this is\n\nClaude Code's `LSP` tool dispatches to language-specific plugins. There are 11 official LSP plugins shipped by Anthropic; Zig isn't one of them yet. This plugin fills the gap with a thin manifest pointing at user-installed `zls`.\n\n## Layout\n\n```\n.\n├── .claude-plugin/\n│   └── marketplace.json     # Marketplace metadata + ZLS server config\n│                              (lspServers block — this is what Claude\n│                              Code actually reads to register the LSP)\n├── plugins/\n│   └── zig-lsp/\n│       ├── .claude-plugin/\n│       │   └── plugin.json  # Plugin identity (name, version, license)\n│       ├── .lsp.json        # ZLS server config — copied to user's\n│       │                      cache on install; this is what the\n│       │                      LSP runtime loader actually reads\n│       └── README.md        # User-facing setup + troubleshooting\n├── agent-knowledge/         # Research notes for contributors\n├── .agnix.toml              # agnix config (target: claude-code)\n├── .github/workflows/       # agnix CI on push and PR\n├── CHANGELOG.md\n├── CONTRIBUTING.md\n├── CLAUDE.md / AGENTS.md    # Project memory (byte-identical)\n├── LICENSE\n└── README.md\n```\n\n## Contributing\n\nIssues and PRs welcome. See [CONTRIBUTING.md](CONTRIBUTING.md) for local setup, validation, and the version-bump policy. The research notes in [`agent-knowledge/`](agent-knowledge/) document how Claude Code integrates LSP plugins, the `.lsp.json` schema, the contribution flow, and known pitfalls — useful background before opening a substantial PR.\n\n## Changelog\n\nSee [CHANGELOG.md](CHANGELOG.md). Format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).\n\n## License\n\nMIT — see [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagent-sh%2Fzig-lsp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fagent-sh%2Fzig-lsp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagent-sh%2Fzig-lsp/lists"}