crew_manage
Manage multi-agent crews by listing, creating, updating, and executing collaborative workflows with defined goals and processes.
Instructions
Manage multi-agent crews. Actions: list, get (crew_id), create (name, process_type, agents), update (crew_id + fields), execute (crew_id, goal), execution_status (crew_id, execution_id), executions_list (crew_id).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Action to perform: list, get, create, update, execute, execution_status, executions_list | |
| status | No | Filter by status: draft, active, archived | |
| limit | No | Max results to return (default 10, max 100) | |
| crew_id | Yes | The crew UUID | |
| name | Yes | Crew name | |
| coordinator_agent_id | Yes | UUID of the coordinator agent | |
| qa_agent_id | Yes | UUID of the QA agent | |
| description | No | Crew description | |
| process_type | No | Process type: sequential, parallel, hierarchical (default: hierarchical) | hierarchical |
| goal | Yes | The goal/task for the crew to accomplish | |
| execution_id | Yes | The crew execution UUID | |
| include_full_output | No | Include full final_output instead of 500-char preview (default false) |