lua-cli 1.1.0 → 1.1.1
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 +14 -8
- package/package.json +3 -1
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:**
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lua-cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
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",
|
|
@@ -26,6 +27,7 @@
|
|
|
26
27
|
"url": "https://github.com/heylua/lua-cli.git"
|
|
27
28
|
},
|
|
28
29
|
"homepage": "https://github.com/heylua/lua-cli#readme",
|
|
30
|
+
"readme": "README.md",
|
|
29
31
|
"bugs": {
|
|
30
32
|
"url": "https://github.com/heylua/lua-cli/issues"
|
|
31
33
|
},
|