Compute
This page describes all commands available in the Nestbox AI CLI for managing compute instances. Compute instances are required to host and run agents. You can list, create, and delete them.
Each compute instance is associated with a specific project and is referenced by its name.
List Compute Instances
Display all compute instances associated with the current project:
nestbox compute list
You can optionally specify a different project using the --project flag:
nestbox compute list --project <project-id>
Options:
--project <projectId>– Project ID or name (defaults to the current project)
Create a Compute Instance
Create a new compute instance:
nestbox compute create <instance-name>
You can also specify a project:
nestbox compute create <instance-name> --project <project-id>
Parameters:
<instance-name>– Name for the new compute instance
Options:
--project <projectId>– Project ID or name (defaults to the current project)
Delete a Compute Instance
Delete a compute instance:
nestbox compute delete <instance-name>
To skip the confirmation prompt, use the --force flag:
nestbox compute delete <instance-name> --force
Parameters:
<instance-name>– Name of the compute instance to delete
Options:
--project <projectId>– Project ID or name (defaults to the current project)--force– Skip confirmation prompt