Claude-skill-registry agentuity-cli-cloud-sandbox-create

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

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/agentuity-cli-cloud-sandbox-create" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-sandbox-create && rm -rf "$T"
manifest: skills/data/agentuity-cli-cloud-sandbox-create/SKILL.md
source content

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
--memory
stringYes-Memory limit (e.g., "500Mi", "1Gi")
--cpu
stringYes-CPU limit in millicores (e.g., "500m", "1000m")
--disk
stringYes-Disk limit (e.g., "500Mi", "1Gi")
--network
booleanYes-Enable outbound network access
--idleTimeout
stringYes-Idle timeout before sandbox is reaped (e.g., "10m", "1h")
--env
arrayYes-Environment variables (KEY=VALUE)
--file
arrayYes-Files to create in sandbox (sandbox-path:local-path)
--snapshot
stringYes-Snapshot ID or tag to restore from
--dependency
arrayYes-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
sandboxId
stringUnique sandbox identifier
status
stringCurrent sandbox status
stdoutStreamUrl
stringURL to the stdout output stream
stderrStreamUrl
stringURL to the stderr output stream