lua-cli 3.17.1 → 3.17.2
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 +8 -8
- package/dist/api-exports.js.map +1 -1
- package/dist/index.js +76 -193
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/template/lua.skill.yaml +10 -4
- package/template/package.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lua-cli",
|
|
3
|
-
"version": "3.17.
|
|
3
|
+
"version": "3.17.2",
|
|
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
|
@@ -10,9 +10,15 @@ preprocessors: []
|
|
|
10
10
|
postprocessors: []
|
|
11
11
|
mcpServers: []
|
|
12
12
|
|
|
13
|
-
# Optional: opt-in git auto-commits.
|
|
14
|
-
#
|
|
15
|
-
# `lua
|
|
16
|
-
# auto-commit (and `version create`
|
|
13
|
+
# Optional: opt-in git auto-commits. This block is managed by the CLI — run
|
|
14
|
+
# `lua git connect` to enable (it runs sanity checks first); don't edit by hand.
|
|
15
|
+
# When enabled, `lua push`, `lua version create`, `lua version promote`,
|
|
16
|
+
# `lua version delete`, and `lua pull` auto-commit (and `version create` also
|
|
17
|
+
# annotate-tags lua/v<N>).
|
|
18
|
+
#
|
|
19
|
+
# To also push each auto-commit to GitHub, first link an account with
|
|
20
|
+
# `lua git auth github`, add a GitHub HTTPS origin remote, then run
|
|
21
|
+
# `lua git connect --auto-push` (writes autoPush: true below).
|
|
17
22
|
# git:
|
|
18
23
|
# enabled: true
|
|
24
|
+
# autoPush: true
|