fix(deps): improve parent-child dependency UX (GH #440)

- Fix DEPENDENCIES.md: correct parent-child syntax (child depends on parent)
- Update bd show: display Children instead of Blocks for parent-child deps
- Group dependents by type with distinct labels

Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-12-01 21:06:43 -08:00
parent 4c5d90cf46
commit 0456e784f4
5 changed files with 105 additions and 14 deletions

View File

@@ -332,10 +332,10 @@ Effect: Can track progress across all investigations
### Creating parent-child Dependencies
```bash
bd dep add parent-epic-id child-task-id --type parent-child
bd dep add child-task-id parent-epic-id --type parent-child
```
**Direction matters**: `from_id` is parent, `to_id` is child.
**Direction matters**: The child depends on the parent. Think: "child depends on parent" or "task is part of epic".
### Combining with blocks