summaryrefslogtreecommitdiff
path: root/panto-agent-scm-1.rockspec
blob: bd3e4599e3c5a0c0de23470f3fbeeba1c728b14d (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-agent"
version = "scm-1"

source = {
   -- Placeholder until the suite moves to its own repository.
   url = "git+https://example.invalid/panto-agent.git",
}

description = {
   summary = "The agent.* extension suite for pantograph",
   detailed = [[
Coding-agent extensions for the panto CLI: rules-file context injection
(agent.rules), with skills and subagents to follow. Load by adding
"panto-agent" to `extensions.rocks` in panto's config.toml.
]],
   license = "MIT",
}

dependencies = {
   "lua >= 5.1",
}

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