lua
Installation
SKILL.md
Critical Patterns
Table Patterns (REQUIRED)
-- ✅ ALWAYS: Use tables for structured data
local user = {
name = "John",
age = 30,
greet = function(self)
print("Hello, " .. self.name)
end
}
user:greet() -- method call with self