bds-workflow

bds-workflow is a skill for Claude Code from seungyeop-lee/beads-starter. It costs 19 tokens per session (1,032 once invoked), scanned A, original, MIT.

A ten-step workflow for using Beads, a repository-based system for tracking development tasks. It covers registering a work item, waiting for approval, making changes, reviewing them, committing, commenting, and closing the item.

In plain words
What is it for?
Use it to manage coding tasks from issue creation through implementation, reporting, branch and commit handling, notes, and closure.
Why use it?
It provides a consistent path from an approved task to a documented, closed change. It also requires Beads to be installed and initialized before file modifications begin.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the beads-starter plugin — 3 skills shipped together

Good fit Use it to manage coding tasks from issue creation through implementation, reporting, branch and commit handling, notes, and closure.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/seungyeop-lee/beads-starter/bds-workflow
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add seungyeop-lee/beads-starter --skill bds-workflow
Clone the repo
git clone --depth 1 https://github.com/seungyeop-lee/beads-starter

Made for: Claude Code.

Or install beads-starter, the plugin that ships this one along with the rest of its 3 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for bds-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/seungyeop-lee/beads-starter/bds-workflow/github.svg)](https://agentmods.dev/skills/seungyeop-lee/beads-starter/bds-workflow)
Your own site
<a href="https://agentmods.dev/skills/seungyeop-lee/beads-starter/bds-workflow"><img src="https://agentmods.dev/badge/skills/seungyeop-lee/beads-starter/bds-workflow/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for bds-workflow

Your own site · 80×15
<a href="https://agentmods.dev/skills/seungyeop-lee/beads-starter/bds-workflow"><img src="https://agentmods.dev/badge/skills/seungyeop-lee/beads-starter/bds-workflow.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,032 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00019 $0.01032
Opus 5 $0.00010 $0.00516
Sonnet 5 $0.00004 $0.00206
Haiku 4.5 $0.00002 $0.00103

Measured 10d ago against content hash e370ffa6b272, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

bds-workflow scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

on-demand/skills/bds-workflow/SKILL.md · 81 lines

How it starts

The opening of the file, as written. The whole thing — 81 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Beads Workflow

Project-specific beads workflow conventions for any file-modifying task.

Initialization

Before any workflow step below, verify bd where succeeds. If bd is not installed or bd where fails (the repo has not been initialized for bd), invoke the bds-setup skill to install bd and run the init flow, then resume.

Agent Workflow

Every file-modifying task, including trivial doc edits, follows these 10 steps:

digraph agent_workflow {
    rankdir=TB;
    node [shape=box, style=filled, fillcolor="#f8f8f8"];
    edge [color="#333333"];

    register  [label="1. Register\nEnsure issue exists"];
    await     [label="2. Await approval\nWait for user"];
    progress  [label="3. In Progress\nbd update --status=in_progress"];
    execute   [label="4. Execute\nModify files"];
    report    [label="5. Report\nSummarize, request review"];
    branch    [label="6. Branch" shape=diamond fillcolor="#ffe0b2"];
    commit    [label="7. Commit\nStage only issue files"];
    comment   [label="8. Comment\nbd comments add"];
    notes     [label="9. Notes (if needed)\nbd update --notes"];
    close     [label="10. Close\nbd close"];

    register -> await;
    await -> progress [label="approved"];
    progress -> execute;
    execute -> report;
    report -> branch;
    branch -> commit [label="done"];
    branch -> execute [label="feedback" style=dashed];
    commit -> comment;
    comment -> notes;
    notes -> close;

    discovery [label="mid-execution discovery\ncreate issue + dep" shape=note fillcolor="#e1f5fe"];
    execute -> discovery [style=dotted];
    discovery -> execute [label="continue parent" style=dotted];
}
  1. Register — ensure a beads issue exists (create if needed, or confirm an existing one covers the scope). See issue-content.md to choose the issue type, collect required intake fields, and then load the matching type-specific detail rules.
  2. Await approval — do not start until the user approves. Multiple pre-registered issues may be approved together.
  3. In progress — transition before touching any file.
  4. Execute.
  5. Report — summarize changes and request confirmation. If the description contains a verification section (e.g., ## Verification), execute every item and include the outcomes; never announce done while any verification item is still outstanding.
  6. Branch on responsedone → step 7. Anything else is feedback; return to step 4 (status stays in_progress).
  7. Commit — stage only files for this issue and commit. Never run git push. See commit-rules.md.
  8. Comment — include the commit hash and subject line.
  9. Notes — record durable context not already captured in the diff, commit, or comment. Format notes as markdown, one list item per entry. bd update --notes replaces the whole field; read the existing notes first and append the new entry. Required when step 6 feedback modified the recorded decision, using the matching prefix so the two cases stay separable later:
    • - Added via feedback: <item>. Commit: <hash> — scope was added while the recorded decision stayed intact.
    • - Decision changed: <details>. Commit: <hash> — the recorded decision was revised. Also update the type-specific alternatives section from step 1 if the matching issue-content rules require it.
  10. Close — close the issue with a reason.

Read the full file on GitHub · 81 lines

Files

What ships with it

9 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 81 lines · 19 tokens per session scan A e370ffa6b272

Subscribe to this mod's changes

bds-workflow is a skill published in the GitHub repository seungyeop-lee/beads-starter (1 stars, last pushed 3mo ago), licensed MIT. It adds 19 tokens to every session and 1,032 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.