Content Type
Static (Markdown)
Unlocks Tools
These tools become available when this skill is activated:
batch_executeexecute_parallel_work_streams
Trigger Keywords
batchparallelconcurrentbulkmultiworkstreamexecute
Instructions Preview
# Batch Operations Skill
Use `batch_execute` for running the same tool on multiple inputs, or `execute_parallel_work_streams` for running independent sub-agent tasks in parallel.
## Quick Decision Guide
| Use Case | Tool |
|----------|------|
| Fetch multiple documents by ID | `batch_execute` |
| Run same search on many queries | `batch_execute` |
| Complex multi-step research tasks | `execute_parallel_work_streams` |
| Tasks needing different tools | `execute_parallel_work_streams` |
## batch_execute
Execute a single tool multiple times with different inputs. Must not be called from within a workstream sub-agent due to execution context requirements.
### Parameters
| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| `tool_name` | string | Yes | - | Tool to execute |
| `inputs` | array | Yes | - | Array of `{ id, input }` objects |
| `parallel` | boolean | No | `true` | Run in parallel or sequentially |
| `max_concur...