Remove a dependency between tasks.
Removes a dependency between tasks to unblock them. Use this when a task is stuck waiting on another that's no longer required, or to fix incorrect dependency relationships.
/plugin marketplace add eyaltoledano/claude-task-master/plugin install taskmaster@taskmasterRemove a dependency between tasks.
Arguments: $ARGUMENTS
Parse the task IDs to remove dependency relationship.
Removes a dependency relationship, potentially unblocking tasks.
Parse natural language or IDs:
task-master remove-dependency --id=<task-id> --depends-on=<dependency-id>
Before removing:
After removing:
/taskmaster:remove-dependency 5 from 3
→ Removed: Task #5 no longer depends on #3
→ Task #5 is now UNBLOCKED and ready to start
→ Warning: Consider if #5 still needs #2 completed first