summaryrefslogtreecommitdiff
path: root/panto-agent-scm-1.rockspec
diff options
context:
space:
mode:
Diffstat (limited to 'panto-agent-scm-1.rockspec')
-rw-r--r--panto-agent-scm-1.rockspec31
1 files changed, 31 insertions, 0 deletions
diff --git a/panto-agent-scm-1.rockspec b/panto-agent-scm-1.rockspec
new file mode 100644
index 0000000..bd3e459
--- /dev/null
+++ b/panto-agent-scm-1.rockspec
@@ -0,0 +1,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",
+ },
+}