From beads-workflow
Claim a beads issue and prepare for implementation. Shows full issue details, checks for blockers, claims the issue, and summarizes what needs to be done.
How this skill is triggered — by the user, by Claude, or both
Slash command
/beads-workflow:claim <issue-id><issue-id>idThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Follow these steps exactly, in order. Do not skip any step. Do not start writing code until all steps are complete.
$idFollow these steps exactly, in order. Do not skip any step. Do not start writing code until all steps are complete.
Run bd show $id and read every field: title, description, design, acceptance criteria, notes, dependencies, and labels. You need all of this context before proceeding.
STOP and warn the user if any of these are true:
blocks dependencies — list which issues block it.needs-info label — it's missing information needed to implement.needs-triage label — it hasn't been reviewed yet.wontfix label — it was already rejected.If none of these apply, proceed.
Run: bd update $id --claim
The issue is now in progress. Remove all triage labels — they are workflow state markers and none of them apply to an actively claimed issue.
Run: bd update $id --remove-label=needs-triage --remove-label=ready-for-agent --remove-label=ready-for-human --remove-label=needs-info
This is safe even if the issue doesn't have all of these labels.
Present a concise summary to the user:
Run: bd update $id --append-notes="Claimed. Starting implementation."
Never use --notes (it overwrites). Always use --append-notes.
If the issue involves more than a single-file change, ask the user if they want to create an implementation plan before coding.
If yes, draft the plan collaboratively with the user, then save it into the issue description using bd update $id --description="<full plan body>". Embed the full plan — never use a file path reference.
If the issue already has a detailed description/design, skip this step.
npx claudepluginhub nerdroid23/ai-marketplace --plugin beads-workflowGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.