Upload a compressed archive to a sandbox and extract it. Requires authentication. Use for Agentuity cloud platform operations
Scanned 2/12/2026
Install via CLI
openskills install agentuity/docs---
name: agentuity-cli-cloud-sandbox-upload
description: Upload a compressed archive to a sandbox and extract it. Requires authentication. Use for Agentuity cloud platform operations
version: "0.1.24"
license: Apache-2.0
allowed-tools: "Bash(agentuity:*)"
argument-hint: "<sandboxId> <archive>"
metadata:
command: "agentuity cloud sandbox upload"
tags: "slow requires-auth"
---
# Cloud Sandbox Upload
Upload a compressed archive to a sandbox and extract it
## Prerequisites
- Authenticated with `agentuity auth login`
- Organization context required (`--org-id` or default org)
## Usage
```bash
agentuity cloud sandbox upload <sandboxId> <archive> [options]
```
## Arguments
| Argument | Type | Required | Description |
|----------|------|----------|-------------|
| `<sandboxId>` | string | Yes | - |
| `<archive>` | string | Yes | - |
## Options
| Option | Type | Required | Default | Description |
|--------|------|----------|---------|-------------|
| `--path` | string | Yes | - | Destination path in sandbox (defaults to root) |
| `--format` | string | Yes | - | Archive format (auto-detected if not specified) |
## Examples
Upload and extract a tar.gz archive to sandbox root:
```bash
bunx @agentuity/cli cloud sandbox upload sbx_abc123 ./archive.tar.gz
```
Upload and extract a zip archive to a specific directory:
```bash
bunx @agentuity/cli cloud sandbox upload sbx_abc123 ./archive.zip --path /subdir
```
Upload with explicit format specification:
```bash
bunx @agentuity/cli cloud sandbox upload sbx_abc123 ./archive.bin --format tar.gz
```
## Output
Returns JSON object:
```json
{
"success": "boolean",
"bytes": "number"
}
```
| Field | Type | Description |
|-------|------|-------------|
| `success` | boolean | - |
| `bytes` | number | - |
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...