Workflow Skills

Skills for batch operations and parallel workstream execution

/api/skills/workflow

1 Skill

batch_operations

Run multiple operations in parallel or batch — ideal for processing many documents, searches, or independent sub-tasks simultaneously

/api/skills/workflow/batch_operations
Skill python Unlocks 2 tools
Content Type
Static (Markdown)
Language
python
Widgets
n/a

Unlocks Tools

These tools become available when this skill is activated:

batch_executeexecute_parallel_work_streams

Trigger Keywords

batchparallelconcurrentbulkmultiworkstreamexecute

Bundled Scripts

/scripts/batch_helper.py

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...