Claude-skill-registry agentuity-cli-cloud-sandbox-run
Run a one-shot command in a sandbox (creates, executes, destroys). 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-run" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-sandbox-run && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-sandbox-run/SKILL.mdsafety · automated scan (low risk)
This is a pattern-based risk scan, not a security review. Our crawler flagged:
- makes HTTP requests (curl)
Always read a skill's source content before installing. Patterns alone don't mean the skill is malicious — but they warrant attention.
source content
Cloud Sandbox Run
Run a one-shot command in a sandbox (creates, executes, destroys)
Prerequisites
- Authenticated with
agentuity auth login - Organization context required (
or default org)--org-id
Usage
agentuity cloud sandbox run <command...> [options]
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| array | Yes | - |
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| string | Yes | - | Memory limit (e.g., "500Mi", "1Gi") |
| string | Yes | - | CPU limit in millicores (e.g., "500m", "1000m") |
| string | Yes | - | Disk limit (e.g., "500Mi", "1Gi") |
| boolean | No | | Enable outbound network access |
| string | Yes | - | Execution timeout (e.g., "5m", "1h") |
| array | Yes | - | Environment variables (KEY=VALUE) |
| array | Yes | - | Files to create in sandbox (sandbox-path:local-path) |
| boolean | No | | Include timestamps in output (default: true) |
| string | Yes | - | Snapshot ID or tag to restore from |
| array | Yes | - | Apt packages to install (can be specified multiple times) |
Examples
Run a simple command:
bunx @agentuity/cli cloud sandbox run -- echo "hello world"
Run with resource limits:
bunx @agentuity/cli cloud sandbox run --memory 1Gi --cpu 1000m -- bun run index.ts
Run with network access enabled:
bunx @agentuity/cli cloud sandbox run --network -- curl https://api.example.com
Output
Returns JSON object:
{ "sandboxId": "string", "exitCode": "number", "durationMs": "number", "output": "string" }
| Field | Type | Description |
|---|---|---|
| string | Sandbox ID |
| number | Exit code from the process |
| number | Duration in milliseconds |
| string | Combined stdout/stderr output |