Claude-skill-registry agentuity-cli-cloud-eval-run-get
Get details about a specific eval run. 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-eval-run-get" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-eval-run-get && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-eval-run-get/SKILL.mdsource content
Cloud Eval-run Get
Get details about a specific eval run
Prerequisites
- Authenticated with
agentuity auth login
Usage
agentuity cloud eval-run get <eval_run_id>
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | Yes | - |
Examples
Get an eval run by ID:
bunx @agentuity/cli cloud eval-run get evalrun_abc123xyz
Output
Returns JSON object:
{ "id": "string", "eval_id": "string", "eval_name": "unknown", "agent_identifier": "unknown", "session_id": "string", "created_at": "string", "updated_at": "string", "project_id": "string", "org_id": "string", "deployment_id": "unknown", "devmode": "boolean", "pending": "boolean", "success": "boolean", "error": "unknown", "result": "unknown" }
| Field | Type | Description |
|---|---|---|
| string | Eval run ID |
| string | Eval ID |
| unknown | Eval name |
| unknown | Agent identifier |
| string | Session ID |
| string | Creation timestamp |
| string | Last updated timestamp |
| string | Project ID |
| string | Organization ID |
| unknown | Deployment ID |
| boolean | Whether this is a devmode run |
| boolean | Whether the eval run is pending |
| boolean | Whether the eval run succeeded |
| unknown | Error message if failed |
| unknown | Eval run result |