get-agent-details
Retrieve comprehensive details about a specific agent from Claude Agents Power, including role-specific information and language preferences, to streamline agent selection and project integration.
Instructions
Get detailed information about a specific agent
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agentName | Yes | Name of the agent (e.g., frontend-developer) | |
language | No | Language preference (en, kr) | en |
Input Schema (JSON Schema)
{
"properties": {
"agentName": {
"description": "Name of the agent (e.g., frontend-developer)",
"type": "string"
},
"language": {
"default": "en",
"description": "Language preference (en, kr)",
"enum": [
"en",
"kr"
],
"type": "string"
}
},
"required": [
"agentName"
],
"type": "object"
}