Mark a task as blocked by other tasks. Use when work cannot proceed until dependencies are resolved.
Blocks tasks until dependencies are resolved, preventing work from starting prematurely.
/plugin marketplace add iheanyi/tasuku/plugin install iheanyi-tasuku-plugins-tasuku@iheanyi/tasukuMark a task as blocked, indicating it cannot proceed until dependencies are resolved.
tk task block <task-id> --by <blocker-id> # Block by one task
tk task block <task-id> --by task1 --by task2 # Block by multiple tasks
tk task unblock <task-id> # Remove all blockers
tk task readytk task list outputtk task list --status blockedtk task deps <id> to visualize dependency chains# When blocker is done, blocked task becomes ready automatically
tk task done <blocker-id>
# Or manually unblock
tk task unblock <blocked-id>