bd sync: 2025-12-23 23:38:57

This commit is contained in:
Steve Yegge
2025-12-23 23:38:57 -08:00
parent 05e10b6759
commit e67f27c092
80 changed files with 7165 additions and 8490 deletions

View File

@@ -740,6 +740,17 @@ bd close bd-42 --reason "Completed" --json
- `3` - Low (polish, optimization)
- `4` - Backlog (future ideas)
### Dependencies: Avoid the Temporal Trap
When adding dependencies, think "X **needs** Y" not "X **comes before** Y":
```bash
# ❌ WRONG: "Phase 1 blocks Phase 2" → bd dep add phase1 phase2
# ✅ RIGHT: "Phase 2 needs Phase 1" → bd dep add phase2 phase1
```
Verify with `bd blocked` - tasks should be blocked by prerequisites, not dependents.
### Workflow for AI Agents
1. **Check your inbox**: `gt mail inbox` (from your cwd, not ~/gt)