add_task_dependency
Add a blocking dependency between tasks, making one task wait for another to finish. Specify the blocked task and the blocking task to enforce order.
Instructions
Add a blocking dependency between tasks (blocked_task waits for blocking_task to complete)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| blocked_task_id | Yes | Task ID that is blocked (must wait) | |
| blocking_task_id | Yes | Task ID that blocks (must be completed first) |