
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
lockzero-lsp
Advanced tools
LockZero language server. One server, every editor that speaks LSP gets red squiggles + quick fixes for hardcoded secrets.
| Editor | Status |
|---|---|
| Neovim | via nvim-lspconfig |
| Vim 8/9 | via coc.nvim or vim-lsp |
| Emacs | via lsp-mode or eglot |
| Helix | native LSP support |
| Lapce | native LSP support |
| Zed | native LSP support |
| Sublime Text | via LSP package |
For VS Code / Cursor / Windsurf, install the dedicated LockZero VS Code extension instead — it's richer (vault integration, hover blast radius, auto-config proxy).
npm install -g lockzero-lsp
Now lockzero-lsp is on your path.
local configs = require("lspconfig.configs")
local lspconfig = require("lspconfig")
if not configs.lockzero then
configs.lockzero = {
default_config = {
cmd = { "lockzero-lsp", "--stdio" },
filetypes = {
"python", "javascript", "typescript", "javascriptreact", "typescriptreact",
"go", "rust", "ruby", "php", "java", "kotlin", "swift",
"yaml", "json", "toml", "sh", "bash", "markdown",
},
root_dir = lspconfig.util.find_git_ancestor,
single_file_support = true,
},
}
end
lspconfig.lockzero.setup({})
~/.config/helix/languages.toml)[[language]]
name = "python"
language-servers = ["pyright", "lockzero"]
[language-server.lockzero]
command = "lockzero-lsp"
args = ["--stdio"]
(Add lockzero to every language's language-servers list.)
settings.json){
"languages": {
"Python": {
"language_servers": ["pyright", "lockzero"]
}
},
"lsp": {
"lockzero": {
"binary": { "path": "lockzero-lsp", "arguments": ["--stdio"] }
}
}
}
(with-eval-after-load 'eglot
(add-to-list 'eglot-server-programs
'((python-mode typescript-mode javascript-mode go-mode rust-mode)
. ("lockzero-lsp" "--stdio"))))
Diagnostic (red squiggle in your editor)process.env.<NAME> (or the language-appropriate equivalent — os.environ["X"] for Python, ENV["X"] for Ruby, etc.)For the full LockZero experience (vault integration, blast radius, auto-config proxy), use the VS Code extension.
MIT
FAQs
LockZero language server — diagnostics and code actions for hardcoded secrets
The npm package lockzero-lsp receives a total of 3 weekly downloads. As such, lockzero-lsp popularity was classified as not popular.
We found that lockzero-lsp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.