Lua CLI Starter Kit
A clean command-line project starter for small Lua tools and utilities.
$9.99 USD
Best for
Internal tools, one-off scripts, and developer utilities.
Includes
- Command structure
- Argument parsing pattern
- Logging conventions
- Release checklist
Command entry point
Command entry point
cli/main.lua
local parser = require("kit.args")local args = parser.parse({...}) if args.version then print("mytool 0.1.0") os.exit(0)end local name = "commands." .. args.commandrequire(name).run(args)