Get details about a specific agent. Requires authentication. Use for Agentuity cloud platform operations
Scanned 6/3/2026
Install to Claude Code
npx -y skills add majiayu000/claude-skill-registry --skill agentuity-cli-cloud-agent-get --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Agentuity Cli Cloud Agent Get?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/majiayu000-agentuity-cli-cloud-agent-get)More formats (shields.io, HTML) on the badges page.
---
name: agentuity-cli-cloud-agent-get
description: Get details about a specific agent. Requires authentication. Use for Agentuity cloud platform operations
version: "0.1.2"
license: Apache-2.0
allowed-tools: "Bash(agentuity:*)"
argument-hint: "<agent_id>"
metadata:
command: "agentuity cloud agent get"
---
# Cloud Agent Get
Get details about a specific agent
## Prerequisites
- Authenticated with `agentuity auth login`
- Project context required (run from project directory or use `--project-id`)
## Usage
```bash
agentuity cloud agent get <agent_id>
```
## Arguments
| Argument | Type | Required | Description |
|----------|------|----------|-------------|
| `<agent_id>` | string | Yes | - |
## Examples
Get item details:
```bash
bunx @agentuity/cli cloud agent get agent_abc123
```
Show output in JSON format:
```bash
bunx @agentuity/cli --json cloud agent get agent_abc123
```
## Output
Returns JSON object:
```json
{
"id": "string",
"name": "string",
"description": "unknown",
"identifier": "string",
"deploymentId": "unknown",
"devmode": "boolean",
"metadata": "unknown",
"createdAt": "string",
"updatedAt": "string",
"evals": "array"
}
```
| Field | Type | Description |
|-------|------|-------------|
| `id` | string | - |
| `name` | string | - |
| `description` | unknown | - |
| `identifier` | string | - |
| `deploymentId` | unknown | - |
| `devmode` | boolean | - |
| `metadata` | unknown | - |
| `createdAt` | string | - |
| `updatedAt` | string | - |
| `evals` | array | - |
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!