summaryrefslogtreecommitdiff
path: root/panto-web-scm-1.rockspec
blob: 5441c9decbaca8ce85554179ba72501c64f84bab (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
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",
   },
}