install-agents
Deploy multiple sub-agents into a project directory by specifying agent names and target path, supported in English or Korean for tailored workflows.
Instructions
Install multiple sub-agents to a project directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agentNames | Yes | List of agent names to install | |
language | No | Language preference for agents (en, kr) | en |
targetPath | Yes | Target project directory path |
Input Schema (JSON Schema)
{
"properties": {
"agentNames": {
"description": "List of agent names to install",
"items": {
"type": "string"
},
"type": "array"
},
"language": {
"default": "en",
"description": "Language preference for agents (en, kr)",
"enum": [
"en",
"kr"
],
"type": "string"
},
"targetPath": {
"description": "Target project directory path",
"type": "string"
}
},
"required": [
"agentNames",
"targetPath"
],
"type": "object"
}