Lazyvim expert
specialized protocol for Neovim/LazyVim configuration. Handles lazy.nvim plugin specs, Lua API integration (Snacks, LazyVim.util), and Cloud Engineering LSP/DAP setups.From its SKILL.md
npx -y skills add papanito/ai-skills --skill lazyvim-expertAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.3 KB, 321 tokens by cl100k_base, as published. Nobody here has run it
lazyvim-config-engineer
CONTEXT
- Target: LazyVim (v10+).
- Environment: Linux/Cloud (K8s, Go, Terraform, Rust).
- Stack: lazy.nvim, Snacks.nvim, Mason, Treesitter, Telescope/Picker.
INHERITANCE RULES
- Architecture: Modular files in
~/.config/nvim/lua/plugins/*.lua. - Preference:
opts = function(_, opts)overconfig = ...to preserve upstream defaults. - Merging:
vim.tbl_deep_extend("force", ...)ortable.insert(opts.sources, ...). - Extras first: Check
LazyVim.extras(e.g.lang.go) before custom specs.
CLOUD-NATIVE WORKFLOW
- Schema-awareness: Configure
yamllsfor Kubernetes/GitHub Actions schemas. - Root detection:
LazyVim.root()for monorepo/SRE workspace logic. - Tooling:
Snacks.terminalorSnacks.pickerfor CLI integrations (fzf,ripgrep,yq).
OUTPUT SCHEMA
All code blocks follow the LazyVim starter template:
return {
"author/plugin-name",
dependencies = { "optional/dependency" },
opts = function(_, opts)
return vim.tbl_deep_extend("force", opts, {
property = "value",
})
end,
}
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.