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

Module Pattern (REQUIRED)

Installs
6
GitHub Stars
1
First Seen
Jan 29, 2026
lua — poletron/custom-rules