lua-cli 2.3.0-alpha.1 → 2.3.0-alpha.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/API_REFERENCE.md +2 -2
- package/CLI_REFERENCE.md +1 -1
- package/GETTING_STARTED.md +1 -1
- package/README.md +2 -2
- package/TEMPLATE_GUIDE.md +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/web/app.css +927 -8
- package/dist/web/app.js +174 -22
- package/dist/web/index.html +7 -1
- package/package.json +7 -1
- package/template/README.md +2 -2
package/dist/web/index.html
CHANGED
|
@@ -5,11 +5,17 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<meta name="description" content="Lua Developer Console - Build, test, and deploy AI agents">
|
|
7
7
|
<title>Lua Developer Console</title>
|
|
8
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
9
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
10
|
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
|
|
11
|
+
<link href="https://fonts.googleapis.com/css2?family=Onest:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
|
|
8
12
|
<link rel="stylesheet" href="/app.css">
|
|
9
13
|
<link rel="stylesheet" href="/tools-page.css">
|
|
10
14
|
</head>
|
|
11
15
|
<body>
|
|
12
|
-
<div id="root"
|
|
16
|
+
<div id="lua-root">
|
|
17
|
+
<div id="root"></div>
|
|
18
|
+
</div>
|
|
13
19
|
|
|
14
20
|
<script>
|
|
15
21
|
// Configuration will be injected by the server
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lua-cli",
|
|
3
|
-
"version": "2.3.0-alpha.
|
|
3
|
+
"version": "2.3.0-alpha.2",
|
|
4
4
|
"description": "Command-line interface for Lua AI platform - develop, test, and deploy LuaSkills with custom tools",
|
|
5
5
|
"readmeFilename": "README.md",
|
|
6
6
|
"main": "dist/api-exports.js",
|
|
@@ -61,15 +61,21 @@
|
|
|
61
61
|
"LICENSE"
|
|
62
62
|
],
|
|
63
63
|
"dependencies": {
|
|
64
|
+
"@tailwindcss/postcss": "^4.1.14",
|
|
65
|
+
"autoprefixer": "^10.4.21",
|
|
64
66
|
"commander": "^14.0.1",
|
|
65
67
|
"dotenv": "^17.2.3",
|
|
66
68
|
"esbuild": "^0.25.10",
|
|
67
69
|
"inquirer": "^12.9.6",
|
|
68
70
|
"js-yaml": "^4.1.0",
|
|
69
71
|
"keytar": "^7.9.0",
|
|
72
|
+
"lua-ai-chat": "^0.0.4",
|
|
70
73
|
"lua-cli": "^2.3.0-alpha.1",
|
|
74
|
+
"luaniverse": "^4.0.41",
|
|
71
75
|
"node-fetch": "^3.3.2",
|
|
72
76
|
"open": "^10.1.0",
|
|
77
|
+
"postcss": "^8.5.6",
|
|
78
|
+
"postcss-prefixwrap": "^1.57.0",
|
|
73
79
|
"react": "^18.2.0",
|
|
74
80
|
"react-dom": "^18.2.0",
|
|
75
81
|
"react-markdown": "^9.0.1",
|
package/template/README.md
CHANGED
|
@@ -716,7 +716,7 @@ lua deploy
|
|
|
716
716
|
ls node_modules/lua-cli/*.md
|
|
717
717
|
|
|
718
718
|
# Or online
|
|
719
|
-
https://docs.
|
|
719
|
+
https://docs.heylua.ai
|
|
720
720
|
```
|
|
721
721
|
|
|
722
722
|
---
|
|
@@ -1002,7 +1002,7 @@ async execute(input: any) {
|
|
|
1002
1002
|
|
|
1003
1003
|
### Documentation
|
|
1004
1004
|
- See markdown files in `node_modules/lua-cli/`
|
|
1005
|
-
- Visit https://docs.
|
|
1005
|
+
- Visit https://docs.heylua.ai
|
|
1006
1006
|
- Check CLI help: `lua --help`
|
|
1007
1007
|
|
|
1008
1008
|
### Examples
|