AgentSkillsCN

agentuity-cli-cloud-machine-get

获取特定组织托管机器的详细信息。需要身份验证。适用于 Agentuity 云平台运维。

SKILL.md
--- frontmatter
name: agentuity-cli-cloud-machine-get
description: Get details about a specific organization managed machine. Requires authentication. Use for Agentuity cloud platform operations
version: "0.1.24"
license: Apache-2.0
allowed-tools: "Bash(agentuity:*)"
argument-hint: "<machine_id>"
metadata:
  command: "agentuity cloud machine get"
  tags: "read-only fast requires-auth"

Cloud Machine Get

Get details about a specific organization managed machine

Prerequisites

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

Usage

bash
agentuity cloud machine get <machine_id>

Arguments

ArgumentTypeRequiredDescription
<machine_id>stringYes-

Examples

Get machine details by ID:

bash
bunx @agentuity/cli cloud machine get machine_abc123xyz

Output

Returns JSON object:

json
{
  "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"
}
FieldTypeDescription
idstringMachine ID
statusstringMachine status
providerstringCloud provider
regionstringRegion
instanceIdunknownCloud instance ID
privateIPv4unknownPrivate IPv4 of the machine
availabilityZoneunknownAvailability zone of the machine
deploymentCountnumberThe number of deployments
orgIdunknownOrganization ID
orgNameunknownOrganization name
createdAtstringCreation timestamp
updatedAtunknownLast update timestamp
startedAtunknownStart timestamp
stoppedAtunknownStop timestamp
errorunknownError message if any