AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Lua Docs

skill-pledgeandgrow-pledge-skills-lua · by pledgeandgrow

>

No reviews yet
0 installs
35 views
0.0% view→install

Install

$ agentstack add skill-pledgeandgrow-pledge-skills-lua

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-pledgeandgrow-pledge-skills-lua)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Lua Docs? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Lua

Lua is a powerful, efficient, lightweight, embeddable scripting language. It supports procedural programming, object-oriented programming, functional programming, data-driven programming, and data description. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. It is dynamically typed, runs by interpreting bytecode with a register-based virtual machine, and has automatic memory management with generational garbage collection.

Specification: Lua 5.5 Reference Manual


Quick Reference

| Topic | File | |------|------| | Introduction (what is Lua, design, embedding, extension language) | introduction.md | | Values & Types (nil, boolean, number, string, function, userdata, thread, table; metatables; metamethods; GC; weak tables) | types.md | | Syntax (lexical conventions, identifiers, keywords, strings, comments, variables, scoping) | syntax.md | | Statements & Expressions (blocks, chunks, assignment, control structures, for loops, operators, precedence, table constructors, function definitions, multiple results) | expressions.md | | Coroutines (create, resume, yield, wrap, states, collaborative multithreading) | coroutines.md | | Standard Libraries (basic, string, table, math, I/O, OS, UTF-8, debug, modules) | standard-libraries.md | | Patterns (character classes, pattern items, captures, balanced match, frontier) | patterns.md | | C API (stack, registry, C closures, error handling, status codes, yields, debug interface, auxiliary library) | c-api.md | | Standalone Interpreter (CLI options, arg table, environment variables, interactive mode) | standalone.md | | Migration & Syntax (incompatibilities with 5.4, complete syntax grammar) | migration.md |


Core Concepts

  • Values and Types: Eight basic types — nil, boolean, number, string, function, userdata, thread, table. All values are first-class.
  • Tables: The sole data-structuring mechanism — arrays, lists, sets, records, graphs, trees. Associative arrays with any key type (except nil and NaN).
  • Metatables & Metamethods: Extensible semantics — operator overloading, indexing control, calls, GC finalizers, tostring, pairs, length.
  • Coroutines: Collaborative multithreading — coroutine.create, resume, yield, wrap, close.
  • Closures: Functions capture upvalues (external local variables) from their lexical scope.
  • Garbage Collection: Incremental and generational modes, GC metamethods (__gc), weak tables (__mode).
  • C API: Stack-based interaction — push/pop values, registry, C closures, error handling, continuation functions.
  • Patterns: Lightweight pattern matching (not full regex) — character classes, captures, balanced match, frontier patterns.
  • Modules: require, package.path, package.cpath, searchers, preload.
  • _ENV: Every chunk compiled in scope of _ENV; global variables are _ENV.var.

Official Documentation

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.