
Agentuity Cli Cloud Sandbox Execution List
- 1 installs
- Updated May 13, 2026
- agentuity/sdk-explorer
agentuity-cli-cloud-sandbox-execution-list is a Claude Code skill that documents the `agentuity cloud sandbox execution list` command for listing executions of an Agentuity sandbox.
About
agentuity-cli-cloud-sandbox-execution-list is a Claude Code skill documenting the Agentuity CLI command that lists executions for a given sandbox. It takes a sandboxId argument, supports a --limit option (default 50, max 100), and requires authentication plus organization context, returning a JSON object with an executions array. A developer uses it to review a sandbox's execution history from the terminal.
- Documents `agentuity cloud sandbox execution list <sandboxId>` with options and output
- Read-only, authenticated listing of executions for a given sandbox
- Supports --limit (default 50, max 100) and requires org context
Agentuity Cli Cloud Sandbox Execution List by the numbers
- 1 all-time installs (skills.sh)
- Ranked #467 of 550 CLI & Terminal skills by installs in the Skillselion catalog
- Data as of Jul 7, 2026 (Skillselion catalog sync)
agentuity-cli-cloud-sandbox-execution-list capabilities & compatibility
- Capabilities
- execution list · sandbox inspection · cli command
- Use cases
- devops
- Runs
- Hosted SaaS
What agentuity-cli-cloud-sandbox-execution-list says it does
List executions for a sandbox. Requires authentication. Use for Agentuity cloud platform operations
bunx @agentuity/cli cloud sandbox execution list snbx_abc123 --limit 10
npx skills add https://github.com/agentuity/sdk-explorer --skill agentuity-cli-cloud-sandbox-execution-listAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| Last updated | May 13, 2026 |
| Repository | agentuity/sdk-explorer ↗ |
What it does
Listing executions for an Agentuity sandbox from the CLI.
Who is it for?
Reviewing execution history for an Agentuity sandbox
Skip if: Creating or running sandbox executions
When should I use this skill?
You need to list executions for a given Agentuity sandbox from the CLI.
What you get
A JSON object listing the sandbox's executions.
- A JSON object with an executions array
By the numbers
- --limit default 50, max 100
Files
Cloud Sandbox Execution List
List executions for a sandbox
Prerequisites
- Authenticated with
agentuity auth login - Organization context required (
--org-idor default org)
Usage
agentuity cloud sandbox execution list <sandboxId> [options]Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
<sandboxId> | string | Yes | - |
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
--limit | number | Yes | - | Maximum number of results (default: 50, max: 100) |
Examples
List executions for a sandbox:
bunx @agentuity/cli cloud sandbox execution list snbx_abc123List with a limit:
bunx @agentuity/cli cloud sandbox execution list snbx_abc123 --limit 10Output
Returns JSON object:
{
"executions": "array"
}| Field | Type | Description |
|---|---|---|
executions | array | List of executions |