Claude-skill-registry agentuity-cli-cloud-machine-get
Get details about a specific organization managed machine. 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-machine-get" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-machine-get && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-machine-get/SKILL.mdsource content
Cloud Machine Get
Get details about a specific organization managed machine
Prerequisites
- Authenticated with
agentuity auth login - Organization context required (
or default org)--org-id
Usage
agentuity cloud machine get <machine_id>
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | Yes | - |
Examples
Get machine details by ID:
bunx @agentuity/cli cloud machine get machine_abc123xyz
Output
Returns JSON object:
{ "id": "string", "status": "string", "provider": "string", "region": "string", "instanceId": "unknown", "privateIPv4": "unknown", "availabilityZone": "unknown", "deploymentCount": "number", "orgId": "unknown", "orgName": "unknown", "createdAt": "string", "updatedAt": "unknown", "startedAt": "unknown", "stoppedAt": "unknown", "error": "unknown" }
| Field | Type | Description |
|---|---|---|
| string | Machine ID |
| string | Machine status |
| string | Cloud provider |
| string | Region |
| unknown | Cloud instance ID |
| unknown | Private IPv4 of the machine |
| unknown | Availability zone of the machine |
| number | The number of deployments |
| unknown | Organization ID |
| unknown | Organization name |
| string | Creation timestamp |
| unknown | Last update timestamp |
| unknown | Start timestamp |
| unknown | Stop timestamp |
| unknown | Error message if any |