Manage task dependencies and execution sequences. Use to establish blocking relationships and validate dependency chains.
Create blocking relationships between tasks to establish execution order and prevent work from starting prematurely. Use when tasks must complete in sequence or when one task depends on another's output.
/plugin marketplace add yebot/rad-cc-plugins/plugin install backlog-md@rad-cc-pluginsCreate and manage dependencies between tasks to establish execution order and prevent blocked work.
Dependencies indicate that a task cannot start until its blockers are complete.
# Add single dependency
backlog task edit <task-id> --dep task-5
# Add multiple dependencies
backlog task edit <task-id> --dep task-1,task-2,task-3
# Create task with dependencies
backlog task create "Deploy to production" --dep task-10,task-11,task-12
backlog task <id> shows dependencies in the detailsbacklog board displays dependency indicatorsBacklog.md automatically validates dependencies:
Sequential Work:
task-1 (Design) → task-2 (Implement) → task-3 (Test) → task-4 (Deploy)
Parallel with Join:
task-1 (Frontend) ─┐
├→ task-3 (Integration)
task-2 (Backend) ─┘
Feature Gates:
task-1 (Auth) ─┬→ task-2 (User Profile)
├→ task-3 (Settings)
└→ task-4 (Dashboard)
View recommended execution order:
# Via MCP, use project analytics tools to see execution plans
# The board view also shows dependency-aware ordering
backlog board