smithery/agentuity

agentuity-cli-cloud-sandbox-get

Get information about a sandbox. Requires authentication. Use for Agentuity cloud platform operations

Installation

$ npx skills add smithery/agentuity --skill agentuity-cli-cloud-sandbox-get

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/agentuity · top by installs.

npx skills add smithery/agentuity

Browse all from smithery/agentuity

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.1.24
LicenseApache-2.0
Allowed toolsBash(agentuity:*)
More metadata
command
agentuity cloud sandbox get
tags
read-only fast requires-auth

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,061 B
  • docs SUMMARY.md 140 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Cloud Sandbox Get

Get information about a sandbox

Prerequisites

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

Usage

agentuity cloud sandbox get <sandboxId>

Arguments

Argument Type Required Description
<sandboxId> string Yes -

Examples

Get sandbox information:

bunx @agentuity/cli cloud sandbox get abc123

Output

Returns JSON object:

{
  "sandboxId": "string",
  "name": "string",
  "description": "string",
  "status": "string",
  "createdAt": "string",
  "region": "string",
  "runtime": "object",
  "snapshot": "object",
  "executions": "number",
  "stdoutStreamUrl": "string",
  "stderrStreamUrl": "string",
  "dependencies": "array",
  "metadata": "object",
  "resources": "object",
  "url": "string"
}
Field Type Description
sandboxId string Sandbox ID
name string Sandbox name
description string Sandbox description
status string Current status
createdAt string Creation timestamp
region string Region where sandbox is running
runtime object Runtime information
snapshot object Snapshot information
executions number Number of executions
stdoutStreamUrl string URL to stdout output stream
stderrStreamUrl string URL to stderr output stream
dependencies array Apt packages installed
metadata object User-defined metadata
resources object Resource limits
url string Public URL for the sandbox (if network port configured)