
Beads
- 1 installs
- Updated July 8, 2026
- madebymlai/agentstack
Beads is an agent skill that drives the `bd` CLI so solo builders claim, track, and close durable project tasks with blockers and multi-session handoff.
About
Beads is an agent skill for repositories that use the `bd` CLI and Beads for durable project task tracking. Developers install it when they need a shared work memory across agent sessions: finding ready work, claiming tasks atomically, recording blockers and dependencies, closing completed items, and spawning follow-up tasks when implementation surfaces new work. The skill instructs agents to run `bd prime` first, prefer the CLI when shell access exists, and treat local planning files as secondary to the Beads graph. It fits teams of one who still juggle many parallel threads and need handoff without losing context. Use it whenever the user asks to inspect ready work, manage blockers, recover project state, or choose between ephemeral planning and persistent tracking inside a bd-enabled repo.
- Starts with `bd prime` and `bd where` to confirm an active Beads workspace
- Ready-work flow: `bd ready`, `bd list --status=open|in_progress`, then `bd show <id>` before edits
- Atomic claim via `bd update <id> --claim` and close with `bd close` patterns
- Creates follow-up tasks with `bd create` including title, description, type, and priority
- Treats Beads as durable source of truth over local plans and scratch files
Beads by the numbers
- 1 all-time installs (skills.sh)
- Ranked #2,476 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
- Data as of Jul 9, 2026 (Skillselion catalog sync)
npx skills add https://github.com/madebymlai/agentstack --skill beadsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| Last updated | July 8, 2026 |
| Repository | madebymlai/agentstack ↗ |
What it does
Keep durable project tasks, blockers, and handoffs in bd/Beads instead of ad-hoc notes when shipping with agents across sessions.
Who is it for?
Repos already wired to Beads/bd where you want agents to discover ready work, respect blockers, and maintain a single task source of truth.
Skip if: Greenfield projects without a Beads workspace or when you only need a one-off checklist with no cross-session tracking.
When should I use this skill?
User asks to find ready work, claim or close tasks, create follow-up work, inspect blockers, recover project context, or choose between local planning and persistent Beads tracking in a bd-enabled repo.
What you get
After running Beads workflows, ready work is visible, tasks are claimed and closed in `bd`, and follow-up issues are recorded as durable graph nodes for the next session.
- Updated task states (claimed, in progress, closed) in Beads
- New follow-up issues created via `bd create` when work expands
By the numbers
- 5-step core CLI workflow from inspect through close
Files
Beads
Use Beads as the shared project task system. Local plans, scratch files, and personal memories are useful, but they are not the durable source of truth for project work.
First Step
Run:
bd primeIf that prints nothing, check whether the repository has an active Beads workspace:
bd wherePreferred Route
Use the bd CLI when shell access is available. It is the most compact and direct Beads interface.
Core CLI Workflow
1. Find work:
bd ready
bd list --status=open
bd list --status=in_progress2. Inspect before editing:
bd show <id>3. Claim work atomically:
bd update <id> --claim4. Create durable follow-up work when implementation reveals new tasks:
bd create "Short title" --description="Why this exists and what needs to be done" --type=task --priority=25. Close completed work:
bd close <id> --reason="Completed"What Belongs In Beads
Use Beads for:
- shared project tasks
- blockers and dependencies
- discovered follow-up work
- work that must survive thread reset, compaction, or handoff
- status that another person or agent should be able to resume
Use agent-local planning tools only for the current turn's execution checklist. Do not treat them as shared project state.
Rules
- Do not create markdown TODO files as the source of truth when Beads is available.
- Do not use
bd edit; it opens an interactive editor. Usebd updateflags instead. - Prefer
--jsonwhen parsingbdoutput programmatically. - If hooks are installed,
bd primemay already be injected. Run it manually when context is missing. - Do not auto-close or mutate tasks unless the work is actually complete.
interface:
display_name: "Beads"
short_description: "Project task tracking with bd"
default_prompt: "Use $beads to inspect ready work and manage durable project tasks."
Related skills
How it compares
Persistent issue graph with CLI semantics, not a generic markdown todo list in the repo root.
FAQ
Who is beads for?
Developers (and small teams) using Claude Code, Cursor, or Codex in repositories that already use Beads or `bd` for project memory.
When should I use beads?
During Build when claiming implementation tasks; in Ship when closing launch prep items and filing regressions; in Operate when triaging blockers and recovering context after idle time—whenever the user asks for ready work, claims, or durable follow-ups.
Is beads safe to install?
Review the Security Audits panel on this Prism page and limit shell access to trusted repos; the skill expects `bd` commands that modify task state in your workspace.