timps_batch
Decompose a bulk task into parallel sub-tasks, run them concurrently with specialist agents, and return one combined result. Apply a single instruction across many files at once.
Instructions
Intelligently decompose a bulk task into parallel sub-tasks, execute them concurrently, and return a single aggregated result. Use this to do the same operation across many files at once. Examples: 'add tests for all handlers', 'review all API endpoints', 'add docstrings to every Python file', 'find flaky tests across all modules'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dry_run | No | If true, just show the decomposition plan without executing | |
| agent_type | Yes | Which specialist agent to use (e.g., unit_test_writer, docstring_generator, pr_reviewer, log_detective) | |
| instruction | Yes | The high-level instruction describing the bulk task | |
| working_dir | Yes | The project root directory to scan for work items | |
| max_parallel | No | Max concurrent sub-agents (default: 10) |