summaryrefslogtreecommitdiff
path: root/panto-web-scm-1.rockspec
blob: e98cc2dd120f3441c4afbf2a3f754d1203d0a830 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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 = "Lightpanda-backed web fetch and Exa search tools for pantograph",
   detailed = [[
Web access for the panto CLI: web.fetch returns JavaScript-rendered Markdown
through a Lightpanda MCP subprocess, and web.search uses Exa's keyless MCP HTTP
endpoint or its REST API when EXA_API_KEY is configured.
Lightpanda must be on PATH.
Load by adding "panto-web" to `extensions.rocks` in panto's config.toml.
]],
   license = "MIT",
}

dependencies = {
   "lua >= 5.4, < 5.5",
}

build = {
   type = "builtin",
   modules = {
      ["panto-web"] = "panto-web/init.lua",
   },
}