con un clic
lua
Lua conventions, tooling, and CLI commands. For Neovim plugin development.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Lua conventions, tooling, and CLI commands. For Neovim plugin development.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Plan mode — iterative exploration and planning. Read-only.
Dev mode — implement features following a plan using TDD. Load when asked to build, implement, code, or apply a plan. Full tools available.
Review mode — evaluate implementations for correctness, security, style, and completeness. Load when asked to review, audit, evaluate, or assess code. Read-only.
todo.txt plain text task tracking. Use when managing tasks — creating, listing, updating status, searching, or completing tasks.
Jira CLI for issue management. Use when asked to list, view, create, transition, or comment on Jira issues, search with JQL, manage sprints, epics, or releases. Use for all Jira/Atlassian operations.
Academic research workflows — PDF parsing, literature review, and paper analysis. Load when working with papers, citations, or academic content.
Basado en la clasificación ocupacional SOC
| name | lua |
| description | Lua conventions, tooling, and CLI commands. For Neovim plugin development. |
| disable-model-invocation | true |
luacheck . # Lint
stylua . # Format
busted # Run tests (non-Neovim)
lua-language-server for linting and type checking with ---@type annotationsstylua for formattingbusted for testing in non-Neovim projectsmini.test for Neovim plugin testslocal by default; never pollute the global namespaceM = {} + return M module pattern---@param and ---@return annotations on all public functions@class over inline table<...> for shapes used more than once@alias for string enums — never bare string unions repeated across filesvim.api over vim.cmd string-splicingvim.iter everywhere — never raw ipairs/pairsvim.uv over vim.loop (deprecated)