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 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.lua.ai
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.lua.ai
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.lua.ai
733
+ - Visit documentation: https://docs.heylua.ai
734
734
  - View examples in template: Check `template/` directory after install
735
735
 
736
736
  ---
@@ -1012,7 +1012,7 @@ After completing this guide:
1012
1012
 
1013
1013
  ## 📞 Getting Help
1014
1014
 
1015
- - **Documentation**: https://docs.lua.ai
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.lua.ai
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.lua.ai
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.lua.ai
1351
+ - **Platform Docs**: https://docs.heylua.ai
1352
1352
 
1353
1353
  ---
1354
1354
 
package/dist/index.d.ts CHANGED
@@ -15,6 +15,6 @@
15
15
  * lua deploy # Deploy to production
16
16
  * lua dev # Start development mode
17
17
  *
18
- * For more information: https://docs.lua.ai
18
+ * For more information: https://docs.heylua.ai
19
19
  */
20
20
  export {};
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.lua.ai
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.1");
28
+ .version("2.3.0-alpha.2");
29
29
  // Set up all command groups
30
30
  setupAuthCommands(program);
31
31
  setupSkillCommands(program);