Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

lua-guidelua 指南

Agent Skill

lua-guide 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

349

周安装

14

GitHub Stars

8

下载量

113
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:lua-guide(lua 指南)
来源仓库:https://github.com/ar4mirez/samuel
仓库路径:skills/lua-guide
安装命令:
npx skills add https://github.com/ar4mirez/samuel --skill lua-guide
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/ar4mirez/samuel --skill lua-guide

简介

lua-guide 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在开发协作场景中整理代码变更事项。

  • 适用于围绕仓库状态、分支管理和团队协作流程进行信息梳理和任务跟进。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和是否触发命令执行或文件访问。
  • 建议在使用前核实仓库活跃度和技能的实际覆盖范围,避免误用或越权操作。
  • lua-guide 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Lua Guide

Applies to: Lua 5.4+, LuaJIT 2.1, Neovim Plugins, Love2D, Embedded Scripting

Core Principles

  1. Tables Are Everything: Arrays, maps, objects, modules, and namespaces -- master them
  2. Local by Default: Always declare variables local; globals are a performance and correctness hazard
  3. Explicit Error Handling: Use pcall/xpcall for recoverable errors; error() for programmer mistakes
  4. Minimal Metatables: Use metatables for genuine OOP needs, not as decoration on simple data
  5. Embed-Friendly Design: Lua exists to be embedded; keep the host/script boundary clean and narrow

Guardrails

Code Style

  • Use local for every variable and function unless it must be global
  • Naming: snake_case for variables/functions, PascalCase for class-like tables, UPPER_SNAKE_CASE for constants
  • Indent with 2 spaces; one statement per line; avoid semicolons
  • Use [[...]] long strings for multi-line text and SQL/HTML templates
  • Prefer #tbl over table.getn() for sequence length

Tables

  • Arrays are 1-based; for i = 1, #arr not for i = 0, #arr - 1
  • Use ipairs for sequential iteration, pairs for hash-map iteration
  • Do not mix array indices and string keys in the same table (undefined # behavior)
  • Use table.insert / table.remove for array ops; avoid manual index gaps
  • Freeze config tables by setting a __newindex metamethod that errors

Error Handling

  • Use pcall(fn,...) to catch errors; xpcall(fn, handler,...) for tracebacks
  • Return nil, err_msg from functions that can fail (idiomatic two-value return)
  • Reserve error("msg", level) for violated preconditions (programmer errors)
  • Never silently swallow errors; always log or propagate
local function read_config(path)
  local f, err = io.open(path, "r")
  if not f then return nil, "cannot open config: " .. err end
  local content = f:read("*a")
  f:close()
  return content
end

local ok, result = xpcall(dangerous_operation, debug.traceback)
if not ok then log.error("failed: %s", result) end

Performance

  • Localize hot functions: local insert = table.insert
  • Avoid closures inside hot loops (allocates every iteration)
  • Use table.concat instead of .. concatenation in loops
  • LuaJIT: avoid pairs() in hot paths (not JIT-compiled); prefer arrays with ipairs
  • LuaJIT: use FFI (ffi.new, ffi.cast) for C struct access instead of Lua tables

Embedding

  • Keep the Lua-to-host API surface small (<20 registered functions)
  • Validate all arguments from Lua in C/host bindings
  • Set memory limits via lua_setallocf or lua_gc configuration
  • Use debug.sethook instruction-count hooks for untrusted scripts

Key Patterns

Module Pattern

local M = {}
local TIMEOUT_MS = 5000

local function validate(data)
  assert(type(data) == "table", "expected table, got " .. type(data))
  assert(data.name, "missing required field: name")
end

function M.process(data)
  validate(data)
  return { status = "ok", name = data.name }
end

return M

OOP via Metatables

local Animal = {}
Animal.__index = Animal

function Animal.new(name, sound)
  return setmetatable({ name = name, sound = sound }, Animal)
end

function Animal:speak()
  return string.format("%s says %s", self.name, self.sound)
end

-- Inheritance
local Dog = setmetatable({}, { __index = Animal })
Dog.__index = Dog

function Dog.new(name)
  return setmetatable(Animal.new(name, "woof"), Dog)
end

function Dog:fetch(item)
  return string.format("%s fetches the %s", self.name, item)
end

Coroutines

local function producer(items)
  return coroutine.wrap(function()
    for _, item in ipairs(items) do
      coroutine.yield(item)
    end
  end)
end

local function filter(predicate, iter)
  return coroutine.wrap(function()
    for item in iter do
      if predicate(item) then coroutine.yield(item) end
    end
  end)
end

local nums = producer({ 1, 2, 3, 4, 5, 6 })
local evens = filter(function(n) return n % 2 == 0 end, nums)
for v in evens do print(v) end  --> 2, 4, 6

Custom Iterator

local function range(start, stop, step)
  step = step or 1
  local i = start - step
  return function()
    i = i + step
    if i <= stop then return i end
  end
end

for n in range(1, 10, 2) do print(n) end  --> 1, 3, 5, 7, 9

Neovim Lua API

local api, keymap = vim.api, vim.keymap
local M = {}

function M.setup(opts)
  opts = vim.tbl_deep_extend("force", { enabled = true, width = 80 }, opts or {})
  if not opts.enabled then return end

  local group = api.nvim_create_augroup("MyPlugin", { clear = true })
  api.nvim_create_autocmd("BufWritePre", {
    group = group, pattern = "*.lua",
    callback = function(ev)
      local lines = api.nvim_buf_get_lines(ev.buf, 0, -1, false)
      for i, line in ipairs(lines) do lines[i] = line:gsub("%s+$", "") end
      api.nvim_buf_set_lines(ev.buf, 0, -1, false, lines)
    end,
  })

  keymap.set("n", "<leader>mp", function()
    vim.notify("MyPlugin activated", vim.log.levels.INFO)
  end, { desc = "Activate MyPlugin" })
end

return M

Testing

Busted (Recommended)

local mymodule = require("mymodule")

describe("mymodule.process", function()
  it("returns ok for valid input", function()
    local result = mymodule.process({ name = "test" })
    assert.are.equal("ok", result.status)
  end)

  it("raises on missing name", function()
    assert.has_error(function() mymodule.process({}) end, "missing required field: name")
  end)
end)

Testing Standards

  • Test files: spec/*_spec.lua (busted) or test_*.lua (luaunit)
  • Test names describe behavior: it("returns nil when file not found")
  • Coverage: >80% for library modules, >60% overall
  • Test edge cases: nil, empty tables, boundary values, type mismatches
  • Run: busted --verbose

Tooling

Luacheck

-- .luacheckrc
std = "lua54+busted"          -- or "luajit+busted"
globals = { "vim" }           -- for Neovim plugins
max_line_length = 120
max_cyclomatic_complexity = 10

StyLua

# stylua.toml
column_width = 100
indent_type = "Spaces"
indent_width = 2
quote_style = "AutoPreferDouble"
call_parentheses = "Always"

Essential Commands

lua myfile.lua                # Run Lua script
luajit myfile.lua             # Run with LuaJIT
busted --verbose              # Run tests
luacheck .                    # Lint
stylua .                      # Format
luarocks install busted       # Install test framework
luarocks install luacheck     # Install linter

References

For detailed patterns and examples, see:

External References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.16%
按下载量换算39

Claude

33.65%
按下载量换算38

Cursor

18.97%
按下载量换算21

Gemini CLI

9.06%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills