get-agent-details
Retrieve comprehensive information about a specific agent by name, including role details and recommendations, to facilitate informed team composition decisions.
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, ko) | 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, ko)",
"enum": [
"en",
"ko"
],
"type": "string"
}
},
"required": [
"agentName"
],
"type": "object"
}