From 9bf1d800f2a24ed71221c64370c98ee8d907314b Mon Sep 17 00:00:00 2001 From: t Date: Wed, 10 Jun 2026 09:46:00 -0600 Subject: expose `panto` to extensions as a require()able module, not a global --- examples/extensions/echo.lua | 2 ++ examples/extensions/greet.lua | 2 ++ 2 files changed, 4 insertions(+) (limited to 'examples/extensions') diff --git a/examples/extensions/echo.lua b/examples/extensions/echo.lua index d384e5b..2f2d4de 100644 --- a/examples/extensions/echo.lua +++ b/examples/extensions/echo.lua @@ -1,6 +1,8 @@ -- A trivial Lua tool that echoes back whatever the LLM asks it to. -- Useful for exercising the panto CLI's Lua extension path end-to-end. +local panto = require("panto") + panto.ext.register_tool { name = "echo", description = "Echo back the given message. Useful for testing whether tools work.", diff --git a/examples/extensions/greet.lua b/examples/extensions/greet.lua index 30a6f12..d74095b 100644 --- a/examples/extensions/greet.lua +++ b/examples/extensions/greet.lua @@ -6,6 +6,8 @@ -- writing to stdout). `args` is the trimmed text after the command name; -- it is an empty string when none was given. The return value is ignored. +local panto = require("panto") + panto.ext.register_command { name = "greet", description = "Print a greeting. Optional args name who to greet.", -- cgit v1.3