← スキル一覧に戻る

beads
by arttttt
⭐ 0🍴 0📅 2026年1月17日
SKILL.md
name: beads description: "Issue tracking with Beads (bd CLI). Use when commands need to create, query, or update issues." allowed-tools: Bash
Beads Issue Tracker
When to Use
- Creating or updating issues
- Querying ready/blocked tasks
- Managing dependencies
- Closing completed work
Core Concepts
- bd ready — tasks with no blockers
- Status: open → in_progress → closed
- Types: task, bug, feature, epic, chore
- Priority: 0 (critical) → 4 (low), default 2
- Dependencies: only
blocksaffects ready
Operations
Get Issue Details
bd show <id> --json
Returns full issue data: title, description, status, type, priority, dependencies.
Check If Issue Exists
bd show <id>
Exit code 0 = exists, non-zero = not found.
Create Issue
bd create --title "Title" --type task --priority 2 --description "Description" --json
Creates new issue. Use --parent <epic-id> for subtasks.
Update Status
bd update <id> --status in_progress --json
Valid statuses: open, in_progress, closed.
Add Dependency
bd dep add <blocked-id> <blocker-id> --type blocks
Makes blocker-id block blocked-id. Only blocks affects ready state.
Get Dependency Tree
bd dep tree <id>
Shows issue hierarchy and blocking relationships.
Find Ready Tasks
bd ready --json
Lists tasks with no unresolved blockers.
Find Blocked Tasks
bd blocked --json
Lists tasks waiting on blockers.
Close Issue
bd close <id> --reason "Done: summary" --json
Marks issue as closed with resolution reason.
List Issues
bd list --status open --json
Filter by status, type, priority.
Sync
bd sync
Synchronizes local state with remote.
Quick Reference
| Action | Command |
|---|---|
| Show issue | bd show <id> --json |
| Create issue | bd create --title "..." --type task --json |
| Update status | bd update <id> --status in_progress |
| Add blocker | bd dep add <blocked> <blocker> --type blocks |
| Ready tasks | bd ready --json |
| Close issue | bd close <id> --reason "..." |
References
references/types.md— Issue types and prioritiesreferences/dependencies.md— Dependency types and usage
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です