Use for advanced bd operations - splitting tasks mid-flight, merging duplicates, changing dependencies, archiving epics, querying metrics, cross-epic dependencies
View on GitHubwithzombies/hyperpowers
withzombies-hyper
January 21, 2026
Select agents to install to:
npx add-skill https://github.com/withzombies/hyperpowers/blob/main/skills/managing-bd-tasks/SKILL.md -a claude-code --skill managing-bd-tasksInstallation paths:
.claude/skills/managing-bd-tasks/<skill_overview> Advanced bd operations for managing complex task structures; bd is single source of truth, keep it accurate. </skill_overview> <rigidity_level> HIGH FREEDOM - These are operational patterns, not rigid workflows. Adapt operations to your specific situation while following the core principles (keep bd accurate, merge don't delete, document changes). </rigidity_level> <quick_reference> | Operation | When | Key Command | |-----------|------|-------------| | Split task | Task too large mid-flight | Create subtasks, add deps, close parent | | Merge duplicates | Found duplicate tasks | Combine designs, move deps, close with reference | | Change dependencies | Dependencies wrong/changed | `bd dep remove` then `bd dep add` | | Archive epic | Epic complete, hide from views | `bd close bd-X --reason "Archived"` | | Query metrics | Need status/velocity data | `bd list` + filters + `wc -l` | | Cross-epic deps | Task depends on other epic | `bd dep add` works across epics | | Bulk updates | Multiple tasks need same change | Loop with careful review first | | Recover mistakes | Accidentally closed/wrong dep | `bd update --status` or `bd dep remove` | **Core principle:** Track all work in bd, update as you go, never batch updates. </quick_reference> <when_to_use> Use this skill for **advanced** bd operations: - Split task that's too large (discovered mid-implementation) - Merge duplicate tasks - Reorganize dependencies after work started - Archive completed epics (hide from views, keep history) - Query bd for metrics (velocity, progress, bottlenecks) - Manage cross-epic dependencies - Bulk status updates - Recover from bd mistakes **For basic operations:** See skills/common-patterns/bd-commands.md (create, show, close, update) </when_to_use> <operations> ## Operation 1: Splitting Tasks Mid-Flight **When:** Task in-progress but turns out too large. **Example:** Started "Implement authentication" - realize it's 8+ hours of work across multiple areas. **Proce