lua-cli 1.1.0 → 1.1.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/README.md +15 -9
- package/package.json +6 -4
package/README.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
A command-line interface for the Lua AI platform that helps you manage agents, organizations, and skills with ease.
|
|
4
4
|
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g lua-cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
After installation, you can use the `lua` command:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
lua --help
|
|
17
|
+
```
|
|
18
|
+
|
|
5
19
|
## Features
|
|
6
20
|
|
|
7
21
|
- 🔐 **Secure Authentication**: Support for both API key and email-based OTP authentication
|
|
@@ -11,14 +25,6 @@ A command-line interface for the Lua AI platform that helps you manage agents, o
|
|
|
11
25
|
- 🔑 **API Key Management**: Securely store, view, and manage your API keys
|
|
12
26
|
- 📦 **Template System**: Quick project setup with pre-configured templates
|
|
13
27
|
|
|
14
|
-
## Installation
|
|
15
|
-
|
|
16
|
-
Install the Lua CLI globally using npm:
|
|
17
|
-
|
|
18
|
-
```bash
|
|
19
|
-
npm install -g lua-cli
|
|
20
|
-
```
|
|
21
|
-
|
|
22
28
|
## Quick Start
|
|
23
29
|
|
|
24
30
|
1. **Configure your authentication:**
|
|
@@ -163,7 +169,7 @@ MIT License - see [LICENSE](LICENSE) file for details.
|
|
|
163
169
|
## Support
|
|
164
170
|
|
|
165
171
|
For support and questions:
|
|
166
|
-
- Create an issue on [GitHub](https://github.com/
|
|
172
|
+
- Create an issue on [GitHub](https://github.com/lua-ai-global/lua-cli/issues)
|
|
167
173
|
- Contact: stefan@heylua.ai
|
|
168
174
|
|
|
169
175
|
## Changelog
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lua-cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Command-line interface for Lua AI platform - manage agents, organizations, and skills",
|
|
5
|
+
"readmeFilename": "README.md",
|
|
5
6
|
"main": "dist/index.js",
|
|
6
7
|
"scripts": {
|
|
7
8
|
"build": "tsc",
|
|
@@ -23,11 +24,12 @@
|
|
|
23
24
|
"type": "module",
|
|
24
25
|
"repository": {
|
|
25
26
|
"type": "git",
|
|
26
|
-
"url": "https://github.com/
|
|
27
|
+
"url": "https://github.com/lua-ai-global/lua-cli.git"
|
|
27
28
|
},
|
|
28
|
-
"homepage": "https://github.com/
|
|
29
|
+
"homepage": "https://github.com/lua-ai-global/lua-cli#readme",
|
|
30
|
+
"readme": "README.md",
|
|
29
31
|
"bugs": {
|
|
30
|
-
"url": "https://github.com/
|
|
32
|
+
"url": "https://github.com/lua-ai-global/lua-cli/issues"
|
|
31
33
|
},
|
|
32
34
|
"engines": {
|
|
33
35
|
"node": ">=16.0.0"
|