@nestbox-ai/cli 1.0.12 → 1.0.13

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 CHANGED
@@ -1,6 +1,8 @@
1
- # @nestbox-ai/cli
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestbox-ai/cli",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "The cli tools that helps developers to build agents",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/.nestboxrc DELETED
File without changes
@@ -1,9 +0,0 @@
1
- {
2
- "agents" : {
3
- "predeploy" : [
4
- "rm -rf dist",
5
- "npm run lint",
6
- "npm run build"
7
- ]
8
- }
9
- }