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/API_REFERENCE.md
CHANGED
|
@@ -1396,13 +1396,13 @@ async execute(input: any) {
|
|
|
1396
1396
|
- **Template Guide**: See `TEMPLATE_GUIDE.md`
|
|
1397
1397
|
- **Development**: See `DEVELOPER_GUIDE.md`
|
|
1398
1398
|
- **Examples**: Check `template/src/tools/` directory
|
|
1399
|
-
- **Platform Docs**: https://docs.
|
|
1399
|
+
- **Platform Docs**: https://docs.heylua.ai
|
|
1400
1400
|
|
|
1401
1401
|
---
|
|
1402
1402
|
|
|
1403
1403
|
## Support
|
|
1404
1404
|
|
|
1405
1405
|
- **Issues**: https://github.com/lua-ai/lua-cli/issues
|
|
1406
|
-
- **Docs**: https://docs.
|
|
1406
|
+
- **Docs**: https://docs.heylua.ai
|
|
1407
1407
|
- **Email**: support@lua.ai
|
|
1408
1408
|
|
package/CLI_REFERENCE.md
CHANGED
|
@@ -730,7 +730,7 @@ skill:
|
|
|
730
730
|
### Getting Help
|
|
731
731
|
|
|
732
732
|
- Check command help: `lua [command] --help`
|
|
733
|
-
- Visit documentation: https://docs.
|
|
733
|
+
- Visit documentation: https://docs.heylua.ai
|
|
734
734
|
- View examples in template: Check `template/` directory after install
|
|
735
735
|
|
|
736
736
|
---
|
package/GETTING_STARTED.md
CHANGED
|
@@ -1012,7 +1012,7 @@ After completing this guide:
|
|
|
1012
1012
|
|
|
1013
1013
|
## 📞 Getting Help
|
|
1014
1014
|
|
|
1015
|
-
- **Documentation**: https://docs.
|
|
1015
|
+
- **Documentation**: https://docs.heylua.ai
|
|
1016
1016
|
- **Examples**: `template/src/tools/` directory
|
|
1017
1017
|
- **Issues**: https://github.com/lua-ai/lua-cli/issues
|
|
1018
1018
|
- **Email**: support@lua.ai
|
package/README.md
CHANGED
|
@@ -826,7 +826,7 @@ MIT License - see [LICENSE](LICENSE) file for details.
|
|
|
826
826
|
|
|
827
827
|
## 🔗 Links
|
|
828
828
|
|
|
829
|
-
- **Documentation**: https://docs.
|
|
829
|
+
- **Documentation**: https://docs.heylua.ai
|
|
830
830
|
- **Platform**: https://heylua.ai
|
|
831
831
|
- **GitHub**: https://github.com/lua-ai/lua-cli
|
|
832
832
|
- **npm**: https://www.npmjs.com/package/lua-cli
|
|
@@ -837,7 +837,7 @@ MIT License - see [LICENSE](LICENSE) file for details.
|
|
|
837
837
|
|
|
838
838
|
- **Issues**: [GitHub Issues](https://github.com/lua-ai/lua-cli/issues)
|
|
839
839
|
- **Email**: support@lua.ai
|
|
840
|
-
- **Docs**: https://docs.
|
|
840
|
+
- **Docs**: https://docs.heylua.ai
|
|
841
841
|
|
|
842
842
|
---
|
|
843
843
|
|
package/TEMPLATE_GUIDE.md
CHANGED
|
@@ -1348,7 +1348,7 @@ Error: No API key found. Please run "lua auth configure" first.
|
|
|
1348
1348
|
- **CLI Commands**: `CLI_REFERENCE.md`
|
|
1349
1349
|
- **Developer Guide**: `DEVELOPER_GUIDE.md`
|
|
1350
1350
|
- **Example Tools**: `template/src/tools/`
|
|
1351
|
-
- **Platform Docs**: https://docs.
|
|
1351
|
+
- **Platform Docs**: https://docs.heylua.ai
|
|
1352
1352
|
|
|
1353
1353
|
---
|
|
1354
1354
|
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
* lua deploy # Deploy to production
|
|
16
16
|
* lua dev # Start development mode
|
|
17
17
|
*
|
|
18
|
-
* For more information: https://docs.
|
|
18
|
+
* For more information: https://docs.heylua.ai
|
|
19
19
|
*/
|
|
20
20
|
import { Command } from "commander";
|
|
21
21
|
import { setupAuthCommands, setupSkillCommands } from "./cli/command-definitions.js";
|
|
@@ -25,7 +25,7 @@ const program = new Command();
|
|
|
25
25
|
program
|
|
26
26
|
.name("lua")
|
|
27
27
|
.description("Lua AI Skill Management CLI")
|
|
28
|
-
.version("2.3.0-alpha.
|
|
28
|
+
.version("2.3.0-alpha.2");
|
|
29
29
|
// Set up all command groups
|
|
30
30
|
setupAuthCommands(program);
|
|
31
31
|
setupSkillCommands(program);
|