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.
npx skills add seungyeop-lee/beads-starter --skill bds-workflowgit clone --depth 1 https://github.com/seungyeop-lee/beads-starterWrote 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.
[](https://agentmods.dev/skills/seungyeop-lee/beads-starter/bds-workflow)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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];
}
- 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.
- Await approval — do not start until the user approves. Multiple pre-registered issues may be approved together.
- In progress — transition before touching any file.
- Execute.
- Report — summarize changes and request confirmation. If the description contains a verification section (e.g.,
## Verification), execute every item and include the outcomes; never announcedonewhile any verification item is still outstanding. - Branch on response —
done→ step 7. Anything else is feedback; return to step 4 (status staysin_progress). - Commit — stage only files for this issue and commit. Never run
git push. See commit-rules.md. - Comment — include the commit hash and subject line.
- Notes — record durable context not already captured in the diff, commit, or comment. Format notes as markdown, one list item per entry.
bd update --notesreplaces 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.
- Close — close the issue with a reason.
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.
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.
- 10d ago First seen · 81 lines · 19 tokens per session scan A e370ffa6b272
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.
Other skills, from other repositories
project-session-manager
Worktree-first dev environment manager for issues, PRs, and features with optional tmux sessions.
artifact-metadata
Manage artifact metadata, versioning, ownership, and review history across the SDLC lifecycle.
steward-prep-delivery
Steward-assisted prep for filing issues and PRs — environment capture, template selection, duplicate detection, delivery-policy compliance check.
contribute-start
Initialize an AIWG contribution workflow by creating a feature branch, configuring DCO, and linking a tracking issue.
aiwg-delivery-pr
AIWG-specific delivery pull request workflow; explicit alias for aiwg-pr, not a generic repository PR guide.
github-brief-intake
Use when GitHub work should enter the repository work-intake route, including an Issue, Milestone, view, or cross-repository selection.