home / skills / michalvavra / agents / beads
/skills/beads
This skill lets you manage persistent, cross-session tasks with dependency graphs, keeping context after compaction and guiding blockers.
npx playbooks add skill michalvavra/agents --skill beadsReview the files below or copy the command above to add this skill to your agents.
---
name: beads
description: Persistent task memory using dependency graphs. For multi-session work that must survive compaction.
compatibility: Requires bd CLI v0.34.0+ and git repository.
---
# Beads
Graph-based task tracker that survives conversation compaction.
## When to Use
Use bd (not TodoWrite) when:
- Context needed across sessions or after compaction
- Tasks have blockers/dependencies
## Session Start
```bash
bd ready # Find unblocked tasks
bd show <id> # Get context
bd update <id> --status in_progress # Start work
```
## Common Commands
```bash
bd create "Title" -p 1 # Create task (priority 0-4)
bd update <id> --notes "Progress" # Add notes (survives compaction)
bd close <id> --reason "Done" # Complete task
bd dep add <child> <parent> # Add dependency
bd sync # Sync with git remote
```
## Notes Format
```
COMPLETED: Specific deliverables
IN PROGRESS: Current state + next step
BLOCKERS: What's preventing progress
```
---
Use `bd --help` or see [references/examples.md](references/examples.md) for all commands.
This skill provides a graph-based persistent task memory for multi-session AI coding workflows. It maintains tasks, notes, and dependencies so work survives conversation compaction and session restarts. It's designed for agents and humans who need durable task context and clear blockers across time.
The skill stores tasks as nodes in a dependency graph and preserves notes that survive compaction. Commands create, update, inspect, and close tasks; dependency edges express blockers and unblock logic. A simple CLI (bd) surfaces unblocked work, syncs state, and keeps progress and blockers explicit across sessions.
How do I find work that is ready now?
Run bd ready to list unblocked tasks prioritized for immediate work.
How should notes be formatted so they survive compaction?
Use the three-section template: COMPLETED, IN PROGRESS, BLOCKERS to keep notes clear and machine-friendly.