agentuity-cli-cloud-sandbox-create

Create an interactive sandbox for multiple executions. Requires authentication. Use for Agentuity cloud platform operations

allowed_tools: Bash(agentuity:*)

$ Instalar

git clone https://github.com/agentuity/discord-help-agent /tmp/discord-help-agent && cp -r /tmp/discord-help-agent/.agents/skills/agentuity-cli-cloud-sandbox-create ~/.claude/skills/discord-help-agent

// tip: Run this command in your terminal to install the skill


name: agentuity-cli-cloud-sandbox-create description: Create an interactive sandbox for multiple executions. Requires authentication. Use for Agentuity cloud platform operations version: "0.0.110" license: Apache-2.0 allowed-tools: "Bash(agentuity:*)" metadata: command: "agentuity cloud sandbox create" tags: "slow requires-auth"

Cloud Sandbox Create

Create an interactive sandbox for multiple executions

Prerequisites

  • Authenticated with agentuity auth login
  • Organization context required (--org-id or default org)

Usage

agentuity cloud sandbox create [options]

Options

OptionTypeRequiredDefaultDescription
--memorystringYes-Memory limit (e.g., "500Mi", "1Gi")
--cpustringYes-CPU limit in millicores (e.g., "500m", "1000m")
--diskstringYes-Disk limit (e.g., "500Mi", "1Gi")
--networkbooleanYes-Enable outbound network access
--idleTimeoutstringYes-Idle timeout before sandbox is reaped (e.g., "10m", "1h")
--envarrayYes-Environment variables (KEY=VALUE)
--filearrayYes-Files to create in sandbox (sandbox-path:local-path)
--snapshotstringYes-Snapshot ID or tag to restore from
--dependencyarrayYes-Apt packages to install (can be specified multiple times)

Examples

Create a sandbox with default settings:

bunx @agentuity/cli cloud sandbox create

Create a sandbox with resource limits:

bunx @agentuity/cli cloud sandbox create --memory 1Gi --cpu 1000m

Create a sandbox with network and custom timeout:

bunx @agentuity/cli cloud sandbox create --network --idle-timeout 30m

Create a sandbox with a specific environment variable:

bunx @agentuity/cli cloud sandbox create --env KEY=VAL

Output

Returns JSON object:

{
  "sandboxId": "string",
  "status": "string",
  "stdoutStreamUrl": "string",
  "stderrStreamUrl": "string"
}
FieldTypeDescription
sandboxIdstringUnique sandbox identifier
statusstringCurrent sandbox status
stdoutStreamUrlstringURL to the stdout output stream
stderrStreamUrlstringURL to the stderr output stream

Repository

agentuity
agentuity
Author
agentuity/discord-help-agent/.agents/skills/agentuity-cli-cloud-sandbox-create
1
Stars
0
Forks
Updated1d ago
Added1w ago