diff options
Diffstat (limited to 'panto-web-scm-1.rockspec')
| -rw-r--r-- | panto-web-scm-1.rockspec | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/panto-web-scm-1.rockspec b/panto-web-scm-1.rockspec new file mode 100644 index 0000000..5441c9d --- /dev/null +++ b/panto-web-scm-1.rockspec @@ -0,0 +1,29 @@ +rockspec_format = "3.0" +package = "panto-web" +version = "scm-1" + +source = { + -- Placeholder until the extension moves to its own repository. + url = "git+https://example.invalid/panto-web.git", +} + +description = { + summary = "Web fetch and search tools for pantograph", + detailed = [[ +Keyless web access for the panto CLI: web.fetch returns readable text from +public HTTP(S) URLs and web.search searches Exa's public MCP endpoint. +Load by adding "panto-web" to `extensions.rocks` in panto's config.toml. +]], + license = "MIT", +} + +dependencies = { + "lua >= 5.1", +} + +build = { + type = "builtin", + modules = { + ["panto-web"] = "panto-web/init.lua", + }, +} |
