lua-cli 3.16.2 → 3.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-exports.d.ts +28 -0
- package/dist/api-exports.js +2 -1
- package/dist/api-exports.js.map +1 -1
- package/dist/index.js +1307 -210
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/template/lua.skill.yaml +7 -0
- package/template/package.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lua-cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.17.0",
|
|
4
4
|
"description": "Build, test, and deploy AI agents with custom tools, webhooks, and scheduled jobs. Features LuaAgent unified configuration, streaming chat, and batch deployment.",
|
|
5
5
|
"readmeFilename": "README.md",
|
|
6
6
|
"main": "dist/api-exports.js",
|
package/template/lua.skill.yaml
CHANGED
|
@@ -9,3 +9,10 @@ jobs: []
|
|
|
9
9
|
preprocessors: []
|
|
10
10
|
postprocessors: []
|
|
11
11
|
mcpServers: []
|
|
12
|
+
|
|
13
|
+
# Optional: opt-in git auto-commits. Run `lua git connect` from this
|
|
14
|
+
# project to enable. When enabled, `lua push`, `lua version create`,
|
|
15
|
+
# `lua version promote`, `lua version delete`, and `lua pull` will
|
|
16
|
+
# auto-commit (and `version create` will also annotate-tag lua/v<N>).
|
|
17
|
+
# git:
|
|
18
|
+
# enabled: true
|