chain_personas
Execute multiple expert personas sequentially to perform step-by-step processing tasks, passing outputs between personas for complex workflows.
Instructions
여러 페르소나를 순차적으로 실행하여 단계별 처리를 수행합니다
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| personas | Yes | 순차 실행할 페르소나 이름 배열 | |
| initialInput | Yes | 첫 번째 페르소나에 전달할 입력 |
Input Schema (JSON Schema)
{
"properties": {
"initialInput": {
"description": "첫 번째 페르소나에 전달할 입력",
"type": "string"
},
"personas": {
"description": "순차 실행할 페르소나 이름 배열",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"personas",
"initialInput"
],
"type": "object"
}