name: "tx-dependencies-hierarchy" description: "Model blockers, parent-child relationships, and shared group context. Use when working in Codex and the user needs tx commands from this area." metadata: short-description: "Model blockers, parent-child relationships, and shared group context."
tx Dependencies And Hierarchy
Use when tasks need ordering, tree inspection, or inherited rollout context.
Quick Start
tx dep block <task-id> <blocker-id>tx dep tree <task-id>tx group-context set <task-id> "shared context"
Included Commands
tx block: Add blocking dependencytx children: List child taskstx dep: Dependencies & hierarchytx dep block: Add blocking dependencytx dep children: List child taskstx dep tree: Show task subtreetx dep unblock: Remove blocking dependencytx group-context clear: Clear task-group context on a tasktx group-context set: Set task-group context on a tasktx tree: Show task subtreetx unblock: Remove blocking dependency
Full Help
Read references/commands.md for the full generated CLI help text for this skill's commands.
Search And Shell Fixes
When working in Codex, prefer rg -n <pattern> <path> and rg --files <path> over broad grep -r or fragile find pipelines.
If a shell/search command fails because of malformed flags, truncated paths, or broken quotes:
- rerun it as a smaller
rgcommand with an explicit directory - avoid partial paths like
node_modulor unterminated quotes - replace
grep -rwithrg -nunlessrgis unavailable - replace broad
findprobes withrg --fileswhen you are really locating source files