复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-beads-6d99d38fdd19 ,按照其中的说明把「dep」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Manage dependencies between beads issues.
add: Add a dependency between issues
remove: Remove a dependency
tree: Show dependency tree for an issue
--reverse: Show dependent tree (what was discovered from this) instead of dependency tree (what blocks this)--format mermaid: Output as Mermaid.js flowchart (renders in GitHub/GitLab markdown)--json: Output as JSON--max-depth N: Limit tree depth (default: 50)--show-all-paths: Show all paths (no deduplication for diamond dependencies)cycles: Detect dependency cycles
The --format mermaid option outputs the dependency tree as a Mermaid.js flowchart:
Example:
bd dep tree bd-1 --format mermaid
Output can be embedded in markdown:
```mermaid
flowchart TD
bd-1["◧ bd-1: Main task"]
bd-2["☑ bd-2: Subtask"]
bd-1 --> bd-2
```
Status Indicators:
Each node includes a symbol indicator for quick visual status identification:
The diagram colors are determined by your Mermaid theme (default, dark, forest, neutral, or base). Mermaid diagrams render natively in GitHub, GitLab, VSCode markdown preview, and can be imported to Miro.
bd dep add bd-10 bd-20 --type blocks: bd-10 depends on bd-20 (bd-20 blocks bd-10)bd dep tree bd-20: Show what blocks bd-20 (dependency tree going UP)bd dep tree bd-1 --reverse: Show what was discovered from bd-1 (dependent tree going DOWN)bd dep tree bd-1 --reverse --max-depth 3: Show discovery tree with depth limitbd dep tree bd-20 --format mermaid > tree.md: Generate Mermaid diagram for documentationbd dep cycles: Check for circular dependenciesThe --reverse flag inverts the tree direction to show dependents instead of dependencies:
Normal mode (bd dep tree ISSUE):
Reverse mode (bd dep tree ISSUE --reverse):
Use Cases: