diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 7d00aaf..ad51c3e 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "code-please", - "version": "0.1.21", + "version": "0.1.22", "description": "MCP server and CLI tool for AI-assisted coding with auto-formatting and LSP diagnostics", "repository": "https://github.com/chatbot-pf/code-please", "author": { diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8cf63aa..63fcc30 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - ".": "0.1.21", + ".": "0.1.22", "packages/code": "0.1.13", "packages/dora": "0.1.9", "packages/format": "0.1.4", diff --git a/CHANGELOG.md b/CHANGELOG.md index 5783f2e..56d2477 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.1.22](https://github.com/chatbot-pf/code-intelligence/compare/code-please-v0.1.21...code-please-v0.1.22) (2026-03-23) + + +### Features + +* **.claude-plugin:** add graphql-lsp to marketplace ([#93](https://github.com/chatbot-pf/code-intelligence/issues/93)) ([0243d71](https://github.com/chatbot-pf/code-intelligence/commit/0243d7173efaa8beefadf77b6c142af1cc6131a2)) +* **plugins:** use CLAUDE_PLUGIN_DATA for persistent LSP server installation ([#96](https://github.com/chatbot-pf/code-intelligence/issues/96)) ([87101f7](https://github.com/chatbot-pf/code-intelligence/commit/87101f7ecc28f22bf6638597f5aae7df45858901)) + ## [0.1.21](https://github.com/chatbot-pf/code-intelligence/compare/code-please-v0.1.20...code-please-v0.1.21) (2026-03-04) diff --git a/package.json b/package.json index ff2b4cc..03032e0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "code-please", "type": "module", - "version": "0.1.21", + "version": "0.1.22", "packageManager": "bun@1.3.5", "description": "Auto-format and type-check hooks for AI coding", "workspaces": [ diff --git a/plugins/astro-lsp/.claude-plugin/plugin.json b/plugins/astro-lsp/.claude-plugin/plugin.json index 9c265a6..6691800 100644 --- a/plugins/astro-lsp/.claude-plugin/plugin.json +++ b/plugins/astro-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "astro-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Astro Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,9 @@ "lspServers": { "astro": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/astro-ls", - "args": ["--stdio"], + "args": [ + "--stdio" + ], "extensionToLanguage": { ".astro": "astro" }, diff --git a/plugins/bash-lsp/.claude-plugin/plugin.json b/plugins/bash-lsp/.claude-plugin/plugin.json index f431fff..fee2992 100644 --- a/plugins/bash-lsp/.claude-plugin/plugin.json +++ b/plugins/bash-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "bash-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Bash/Shell Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,9 @@ "lspServers": { "bash": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/bash-language-server", - "args": ["start"], + "args": [ + "start" + ], "extensionToLanguage": { ".sh": "shellscript", ".bash": "shellscript", diff --git a/plugins/biome-lsp/.claude-plugin/plugin.json b/plugins/biome-lsp/.claude-plugin/plugin.json index 994c43e..cc4d130 100644 --- a/plugins/biome-lsp/.claude-plugin/plugin.json +++ b/plugins/biome-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "biome-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Biome Linter/Formatter for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -9,7 +9,9 @@ "lspServers": { "biome": { "command": "bash", - "args": ["${CLAUDE_PLUGIN_ROOT}/scripts/lsp.sh"], + "args": [ + "${CLAUDE_PLUGIN_ROOT}/scripts/lsp.sh" + ], "extensionToLanguage": { ".ts": "typescript", ".tsx": "typescriptreact", diff --git a/plugins/clangd-lsp/.claude-plugin/plugin.json b/plugins/clangd-lsp/.claude-plugin/plugin.json index b84e332..e7e8cbc 100644 --- a/plugins/clangd-lsp/.claude-plugin/plugin.json +++ b/plugins/clangd-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "clangd-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "C/C++ (Clangd) Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,10 @@ "lspServers": { "clangd": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/code", - "args": ["lsp-server", "clangd"], + "args": [ + "lsp-server", + "clangd" + ], "extensionToLanguage": { ".c": "c", ".cpp": "cpp", diff --git a/plugins/csharp-lsp/.claude-plugin/plugin.json b/plugins/csharp-lsp/.claude-plugin/plugin.json index 87269bb..62b25ae 100644 --- a/plugins/csharp-lsp/.claude-plugin/plugin.json +++ b/plugins/csharp-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "csharp-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "C# Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,10 @@ "lspServers": { "csharp": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/code", - "args": ["lsp-server", "csharp"], + "args": [ + "lsp-server", + "csharp" + ], "extensionToLanguage": { ".cs": "csharp" } diff --git a/plugins/dart-lsp/.claude-plugin/plugin.json b/plugins/dart-lsp/.claude-plugin/plugin.json index 7942948..92cf366 100644 --- a/plugins/dart-lsp/.claude-plugin/plugin.json +++ b/plugins/dart-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "dart-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Dart Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,10 @@ "lspServers": { "dart": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/code", - "args": ["lsp-server", "dart"], + "args": [ + "lsp-server", + "dart" + ], "extensionToLanguage": { ".dart": "dart" } diff --git a/plugins/deno-lsp/.claude-plugin/plugin.json b/plugins/deno-lsp/.claude-plugin/plugin.json index 3ef82b3..4c0d530 100644 --- a/plugins/deno-lsp/.claude-plugin/plugin.json +++ b/plugins/deno-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "deno-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Deno Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -9,7 +9,9 @@ "lspServers": { "deno": { "command": "deno", - "args": ["lsp"], + "args": [ + "lsp" + ], "extensionToLanguage": { ".ts": "typescript", ".tsx": "typescriptreact", diff --git a/plugins/dockerfile-lsp/.claude-plugin/plugin.json b/plugins/dockerfile-lsp/.claude-plugin/plugin.json index 04d6809..aef70cf 100644 --- a/plugins/dockerfile-lsp/.claude-plugin/plugin.json +++ b/plugins/dockerfile-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "dockerfile-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Dockerfile Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,9 @@ "lspServers": { "dockerfile": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/docker-langserver", - "args": ["--stdio"], + "args": [ + "--stdio" + ], "extensionToLanguage": { ".dockerfile": "dockerfile" } diff --git a/plugins/elixir-lsp/.claude-plugin/plugin.json b/plugins/elixir-lsp/.claude-plugin/plugin.json index 301fcb1..3ffd25f 100644 --- a/plugins/elixir-lsp/.claude-plugin/plugin.json +++ b/plugins/elixir-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "elixir-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Elixir Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,10 @@ "lspServers": { "elixir-ls": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/code", - "args": ["lsp-server", "elixir-ls"], + "args": [ + "lsp-server", + "elixir-ls" + ], "extensionToLanguage": { ".ex": "elixir", ".exs": "elixir" diff --git a/plugins/eslint-lsp/.claude-plugin/plugin.json b/plugins/eslint-lsp/.claude-plugin/plugin.json index fa9e702..ac0ad40 100644 --- a/plugins/eslint-lsp/.claude-plugin/plugin.json +++ b/plugins/eslint-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "eslint-lsp", - "version": "0.1.17", + "version": "0.1.22", "description": "ESLint Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,10 @@ "lspServers": { "eslint": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/code", - "args": ["lsp-server", "eslint"], + "args": [ + "lsp-server", + "eslint" + ], "extensionToLanguage": { ".ts": "typescript", ".tsx": "typescriptreact", diff --git a/plugins/fsharp-lsp/.claude-plugin/plugin.json b/plugins/fsharp-lsp/.claude-plugin/plugin.json index c14f068..c4278a4 100644 --- a/plugins/fsharp-lsp/.claude-plugin/plugin.json +++ b/plugins/fsharp-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "fsharp-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "F# Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,10 @@ "lspServers": { "fsharp": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/code", - "args": ["lsp-server", "fsharp"], + "args": [ + "lsp-server", + "fsharp" + ], "extensionToLanguage": { ".fs": "fsharp", ".fsi": "fsharp", diff --git a/plugins/gleam-lsp/.claude-plugin/plugin.json b/plugins/gleam-lsp/.claude-plugin/plugin.json index dc138d5..dd9512a 100644 --- a/plugins/gleam-lsp/.claude-plugin/plugin.json +++ b/plugins/gleam-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "gleam-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Gleam Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -9,7 +9,9 @@ "lspServers": { "gleam": { "command": "gleam", - "args": ["lsp"], + "args": [ + "lsp" + ], "extensionToLanguage": { ".gleam": "gleam" } diff --git a/plugins/gopls-lsp/.claude-plugin/plugin.json b/plugins/gopls-lsp/.claude-plugin/plugin.json index a81f85b..40e2bd8 100644 --- a/plugins/gopls-lsp/.claude-plugin/plugin.json +++ b/plugins/gopls-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "gopls-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Go Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -9,7 +9,9 @@ "lspServers": { "gopls": { "command": "gopls", - "args": ["serve"], + "args": [ + "serve" + ], "extensionToLanguage": { ".go": "go" } diff --git a/plugins/graphql-lsp/.claude-plugin/plugin.json b/plugins/graphql-lsp/.claude-plugin/plugin.json index 92c3064..003ae80 100644 --- a/plugins/graphql-lsp/.claude-plugin/plugin.json +++ b/plugins/graphql-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "graphql-lsp", - "version": "0.1.17", + "version": "0.1.22", "description": "GraphQL Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,11 @@ "lspServers": { "graphql": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/graphql-lsp", - "args": ["server", "-m", "stream"], + "args": [ + "server", + "-m", + "stream" + ], "extensionToLanguage": { ".graphql": "graphql", ".graphqls": "graphql", diff --git a/plugins/jdtls-lsp/.claude-plugin/plugin.json b/plugins/jdtls-lsp/.claude-plugin/plugin.json index 1a60686..9d3f1a0 100644 --- a/plugins/jdtls-lsp/.claude-plugin/plugin.json +++ b/plugins/jdtls-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "jdtls-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Java (Eclipse JDTLS) Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,10 @@ "lspServers": { "jdtls": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/code", - "args": ["lsp-server", "jdtls"], + "args": [ + "lsp-server", + "jdtls" + ], "extensionToLanguage": { ".java": "java" } diff --git a/plugins/kotlin-lsp/.claude-plugin/plugin.json b/plugins/kotlin-lsp/.claude-plugin/plugin.json index 6386184..31ddbb7 100644 --- a/plugins/kotlin-lsp/.claude-plugin/plugin.json +++ b/plugins/kotlin-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "kotlin-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Kotlin Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,10 @@ "lspServers": { "kotlin": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/code", - "args": ["lsp-server", "kotlin"], + "args": [ + "lsp-server", + "kotlin" + ], "extensionToLanguage": { ".kt": "kotlin", ".kts": "kotlin" diff --git a/plugins/lua-lsp/.claude-plugin/plugin.json b/plugins/lua-lsp/.claude-plugin/plugin.json index 2c8347e..84fb5cf 100644 --- a/plugins/lua-lsp/.claude-plugin/plugin.json +++ b/plugins/lua-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "lua-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Lua Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,10 @@ "lspServers": { "lua-ls": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/code", - "args": ["lsp-server", "lua-ls"], + "args": [ + "lsp-server", + "lua-ls" + ], "extensionToLanguage": { ".lua": "lua" } diff --git a/plugins/ocaml-lsp/.claude-plugin/plugin.json b/plugins/ocaml-lsp/.claude-plugin/plugin.json index 47bf452..924ea3c 100644 --- a/plugins/ocaml-lsp/.claude-plugin/plugin.json +++ b/plugins/ocaml-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "ocaml-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "OCaml Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { diff --git a/plugins/oxlint-lsp/.claude-plugin/plugin.json b/plugins/oxlint-lsp/.claude-plugin/plugin.json index c4185dc..2cf3cc0 100644 --- a/plugins/oxlint-lsp/.claude-plugin/plugin.json +++ b/plugins/oxlint-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "oxlint-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Oxlint Linter for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -9,7 +9,9 @@ "lspServers": { "oxlint": { "command": "bash", - "args": ["${CLAUDE_PLUGIN_ROOT}/scripts/lsp.sh"], + "args": [ + "${CLAUDE_PLUGIN_ROOT}/scripts/lsp.sh" + ], "extensionToLanguage": { ".ts": "typescript", ".tsx": "typescriptreact", diff --git a/plugins/php-lsp/.claude-plugin/plugin.json b/plugins/php-lsp/.claude-plugin/plugin.json index ccdaf92..99e92cd 100644 --- a/plugins/php-lsp/.claude-plugin/plugin.json +++ b/plugins/php-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "php-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "PHP (Intelephense) Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,9 @@ "lspServers": { "php": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/intelephense", - "args": ["--stdio"], + "args": [ + "--stdio" + ], "extensionToLanguage": { ".php": "php" } diff --git a/plugins/prisma-lsp/.claude-plugin/plugin.json b/plugins/prisma-lsp/.claude-plugin/plugin.json index 3962c49..18fcf57 100644 --- a/plugins/prisma-lsp/.claude-plugin/plugin.json +++ b/plugins/prisma-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "prisma-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Prisma Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,9 @@ "lspServers": { "prisma": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/prisma-language-server", - "args": ["--stdio"], + "args": [ + "--stdio" + ], "extensionToLanguage": { ".prisma": "prisma" } diff --git a/plugins/pyright-lsp/.claude-plugin/plugin.json b/plugins/pyright-lsp/.claude-plugin/plugin.json index 86ab20d..fef6ad0 100644 --- a/plugins/pyright-lsp/.claude-plugin/plugin.json +++ b/plugins/pyright-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "pyright-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Python (Pyright) Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,9 @@ "lspServers": { "pyright": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/pyright-langserver", - "args": ["--stdio"], + "args": [ + "--stdio" + ], "extensionToLanguage": { ".py": "python", ".pyi": "python" diff --git a/plugins/rubocop-lsp/.claude-plugin/plugin.json b/plugins/rubocop-lsp/.claude-plugin/plugin.json index 8ef0576..5156455 100644 --- a/plugins/rubocop-lsp/.claude-plugin/plugin.json +++ b/plugins/rubocop-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "rubocop-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "RuboCop (Ruby) Linter for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,10 @@ "lspServers": { "rubocop": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/code", - "args": ["lsp-server", "rubocop"], + "args": [ + "lsp-server", + "rubocop" + ], "extensionToLanguage": { ".rb": "ruby", ".rake": "ruby", diff --git a/plugins/rust-analyzer-lsp/.claude-plugin/plugin.json b/plugins/rust-analyzer-lsp/.claude-plugin/plugin.json index 0038a34..615aab8 100644 --- a/plugins/rust-analyzer-lsp/.claude-plugin/plugin.json +++ b/plugins/rust-analyzer-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "rust-analyzer-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Rust Analyzer for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { diff --git a/plugins/svelte-lsp/.claude-plugin/plugin.json b/plugins/svelte-lsp/.claude-plugin/plugin.json index cf00a7a..665a21c 100644 --- a/plugins/svelte-lsp/.claude-plugin/plugin.json +++ b/plugins/svelte-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "svelte-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Svelte Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,9 @@ "lspServers": { "svelte": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/svelteserver", - "args": ["--stdio"], + "args": [ + "--stdio" + ], "extensionToLanguage": { ".svelte": "svelte" } diff --git a/plugins/swift-lsp/.claude-plugin/plugin.json b/plugins/swift-lsp/.claude-plugin/plugin.json index bbd5d09..10d3d70 100644 --- a/plugins/swift-lsp/.claude-plugin/plugin.json +++ b/plugins/swift-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "swift-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Swift (SourceKit) Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { diff --git a/plugins/terraform-lsp/.claude-plugin/plugin.json b/plugins/terraform-lsp/.claude-plugin/plugin.json index 2490abb..689e012 100644 --- a/plugins/terraform-lsp/.claude-plugin/plugin.json +++ b/plugins/terraform-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "terraform-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Terraform Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,10 @@ "lspServers": { "terraform": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/code", - "args": ["lsp-server", "terraform"], + "args": [ + "lsp-server", + "terraform" + ], "extensionToLanguage": { ".tf": "terraform", ".tfvars": "terraform-vars" diff --git a/plugins/texlab-lsp/.claude-plugin/plugin.json b/plugins/texlab-lsp/.claude-plugin/plugin.json index c236f46..9735820 100644 --- a/plugins/texlab-lsp/.claude-plugin/plugin.json +++ b/plugins/texlab-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "texlab-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "LaTeX (TexLab) Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,10 @@ "lspServers": { "texlab": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/code", - "args": ["lsp-server", "texlab"], + "args": [ + "lsp-server", + "texlab" + ], "extensionToLanguage": { ".tex": "latex", ".bib": "bibtex" diff --git a/plugins/typescript-lsp/.claude-plugin/plugin.json b/plugins/typescript-lsp/.claude-plugin/plugin.json index 20f3fb5..a54783a 100644 --- a/plugins/typescript-lsp/.claude-plugin/plugin.json +++ b/plugins/typescript-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "typescript-lsp", - "version": "0.1.17", + "version": "0.1.22", "description": "TypeScript/JavaScript Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,9 @@ "lspServers": { "typescript": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/typescript-language-server", - "args": ["--stdio"], + "args": [ + "--stdio" + ], "extensionToLanguage": { ".ts": "typescript", ".tsx": "typescriptreact", diff --git a/plugins/vue-lsp/.claude-plugin/plugin.json b/plugins/vue-lsp/.claude-plugin/plugin.json index df42217..288c883 100644 --- a/plugins/vue-lsp/.claude-plugin/plugin.json +++ b/plugins/vue-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "vue-lsp", - "version": "0.1.17", + "version": "0.1.22", "description": "Vue Language Server with TypeScript Support for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,9 @@ "lspServers": { "vue": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/vue-language-server", - "args": ["--stdio"], + "args": [ + "--stdio" + ], "extensionToLanguage": { ".vue": "vue" }, diff --git a/plugins/yaml-lsp/.claude-plugin/plugin.json b/plugins/yaml-lsp/.claude-plugin/plugin.json index 8a34a41..d6c6883 100644 --- a/plugins/yaml-lsp/.claude-plugin/plugin.json +++ b/plugins/yaml-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "yaml-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "YAML Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,9 @@ "lspServers": { "yaml": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/yaml-language-server", - "args": ["--stdio"], + "args": [ + "--stdio" + ], "extensionToLanguage": { ".yaml": "yaml", ".yml": "yaml" diff --git a/plugins/zls-lsp/.claude-plugin/plugin.json b/plugins/zls-lsp/.claude-plugin/plugin.json index 7336032..9396c5a 100644 --- a/plugins/zls-lsp/.claude-plugin/plugin.json +++ b/plugins/zls-lsp/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "zls-lsp", - "version": "0.1.19", + "version": "0.1.22", "description": "Zig Language Server for Claude Code", "repository": "https://github.com/chatbot-pf/code-please", "author": { @@ -21,7 +21,10 @@ "lspServers": { "zls": { "command": "${CLAUDE_PLUGIN_DATA}/node_modules/.bin/code", - "args": ["lsp-server", "zls"], + "args": [ + "lsp-server", + "zls" + ], "extensionToLanguage": { ".zig": "zig", ".zon": "zig"