@nestbox-ai/cli 1.0.12 → 1.0.14
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 +24 -1
- package/dist/types/agentType.d.ts +1 -1
- package/dist/types/agentType.js +1 -1
- package/dist/types/agentType.js.map +1 -1
- package/package.json +1 -1
- package/src/types/agentType.ts +1 -1
- package/.nestboxrc +0 -0
- package/nestbox.config.json +0 -9
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Nestbox CLI for managing and deploying agents
|
|
2
2
|
The Nestbox CLI tool is designed to facilitate development, management, and deployment of AI agents built on the Nestbox platform. It provides developers streamlined commands for authentication, deployment lifecycle management, and AI agent management.
|
|
3
3
|
|
|
4
|
+
Read more in the [Nestbox AI developers site](https://developers.nestbox.ai)
|
|
5
|
+
|
|
4
6
|
## Installation
|
|
5
7
|
```
|
|
6
8
|
npm install -g @nestbox-ai/cli
|
|
@@ -11,3 +13,24 @@ npm install -g @nestbox-ai/cli
|
|
|
11
13
|
nestbox login <nestbox-domain>
|
|
12
14
|
```
|
|
13
15
|
|
|
16
|
+
# Usage
|
|
17
|
+
```
|
|
18
|
+
nestbox --help
|
|
19
|
+
Usage: nestbox [options] [command]
|
|
20
|
+
|
|
21
|
+
CLI tool for the Nestbox AI platform
|
|
22
|
+
|
|
23
|
+
Options:
|
|
24
|
+
-V, --version output the version number
|
|
25
|
+
-h, --help display help for command
|
|
26
|
+
|
|
27
|
+
Commands:
|
|
28
|
+
login <nestbox-domain> Login using Google SSO
|
|
29
|
+
logout [nestbox-domain] Logout from Nestbox platform
|
|
30
|
+
project Manage Nestbox projects
|
|
31
|
+
compute Manage Nestbox computes
|
|
32
|
+
agent Manage Nestbox agents
|
|
33
|
+
document Manage Nestbox documents
|
|
34
|
+
image Manage Nestbox images
|
|
35
|
+
help [command] display help for command
|
|
36
|
+
```
|
package/dist/types/agentType.js
CHANGED
|
@@ -7,6 +7,6 @@ exports.AgentType = void 0;
|
|
|
7
7
|
var AgentType;
|
|
8
8
|
(function (AgentType) {
|
|
9
9
|
AgentType["REGULAR"] = "REGULAR";
|
|
10
|
-
AgentType["
|
|
10
|
+
AgentType["CHAT"] = "CHAT";
|
|
11
11
|
})(AgentType || (exports.AgentType = AgentType = {}));
|
|
12
12
|
//# sourceMappingURL=agentType.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agentType.js","sourceRoot":"","sources":["../../src/types/agentType.ts"],"names":[],"mappings":";;;AAAA;;GAEG;AACH,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,gCAAmB,CAAA;IACnB,
|
|
1
|
+
{"version":3,"file":"agentType.js","sourceRoot":"","sources":["../../src/types/agentType.ts"],"names":[],"mappings":";;;AAAA;;GAEG;AACH,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,gCAAmB,CAAA;IACnB,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB"}
|
package/package.json
CHANGED
package/src/types/agentType.ts
CHANGED
package/.nestboxrc
DELETED
|
File without changes
|