Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

beads-implement念珠器

Agent Skill

beads-implement 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

661

周安装

27

GitHub Stars

7

下载量

212
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:beads-implement(念珠器)
来源仓库:https://github.com/btraut/skills
仓库路径:skills/beads-implement
安装命令:
npx skills add https://github.com/btraut/skills --skill beads-implement
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/btraut/skills --skill beads-implement

简介

beads-implement 用于执行指定 bead 或 epic 的工作项,最小化交互反馈。

  • 自动识别 tracker 类型,支持并行任务启动与状态同步。
  • 适用于从任务列表直接进入编码或文档编写阶段,提升效率。
  • 使用前请确认目标 bead 已就绪,避免在未完成前置条件时启动。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Beads Implement

Use this skill to execute work from a bead or epic id with minimal back-and-forth. This skill must work with either classic Beads (bd) or beads_rust (br).

Workflow

  1. Resolve the tracker first

- If the user explicitly says bd, br, beads, or beads_rust, obey that. - Otherwise detect what is actually installed: - If only br is installed, use br. - If only bd is installed, use bd. - If both are installed, prefer the tracker that already owns the current workspace/history. - If both are installed and the workspace is ambiguous, ask one targeted question instead of guessing. - Do not mix commands from both trackers in the same run.

  1. Prime the chosen tracker

- For bd: - Run bd prime first. It is still the fastest way to get the current "how to start this bead" primer. - If bd prime is unavailable or confusing, look for a loaded local skill for classic Beads and use that before anything else. - If no local bd skill exists, use local CLI help like bd --help, bd show --help, and bd update --help. - For br: - Look for a loaded local br, beads_rust, or equivalent tracker skill and use that first if it exists. - If no local br skill exists, use local CLI help like br --help, br show --help, br update --help, and br epic --help. - Set ACTOR="${BR_ACTOR:-assistant}". - Use br show <id> --json, br ready --json, and br blocked --json for orientation instead of expecting a prime command. - Always use --json on agent-facing br commands when available. - Never run bare bv. - Do not send the user to public web docs from this skill.

  1. Open the bead

- For bd, use bd show <id> --json when possible and read the title, description, acceptance criteria, and dependencies. - For br, use br show <id> --json and read the title, description, acceptance criteria, design, notes, and dependencies. - If required info is missing or a dependency blocks progress, ask a single targeted question and wait.

  1. Start work in the tracker

- For bd, mark the bead in_progress if your workflow supports it (check bd prime / bd update --help). - For br, claim it with br update --actor "$ACTOR" <id> --claim --json or set --status in_progress. - Add a short note on your intended approach if the bead is ambiguous.

  1. Create a brief to-do list

- At the start of execution, create a short to-do list of the tasks/sub-tasks you plan to complete and update it as you go.

  1. Decide scope

- If the bead is a single task, implement it directly. - If the bead is an epic, identify all sub-tasks and implement them in dependency order. - For an epic, treat exactly one child bead as the active implementation target at a time unless the user explicitly asks for parallel implementation. - For br epics, use br epic status <id> or the dependency graph when it helps you understand child progress and closure readiness.

  1. Delegate narrowly (use sub-agents surgically)

- Use sub-agents for bounded slices of the current bead only. - Good sub-agent targets: repo exploration, API/library doc lookup, reproducer creation, test strategy, narrow refactors with a clear file list. - Give each sub-agent explicit ownership (files + expected output), and keep the write scope as small as possible. - If the target is an epic, the main agent owns sequencing. Sub-agents may work on the current child bead, but they must not start later child beads unless explicitly assigned. - Sub-agents must not close beads, close the epic, update the overall plan, or advance the workflow on their own. - Sub-agents must not assume their changes are integrated. They return results for the main agent to review, merge, and either accept or reject.

  1. Review gate before advancing

- For each bead or child bead, run this loop in order: 1. implement 2. review 3. fix review findings 4. run relevant checks/tests 5. commit 6. update Beads - Do not begin the next child bead until the current one has passed this gate. - If a sub-agent goes beyond scope, stop and verify what changed before using any of its output.

  1. Implement, commit, and write notes (repeat per task/sub-task) Minimal commit template: <BEAD-ID>: <imperative summary> Why: -... What: -... Tests: -... Notes/Risks: -...

- Implement, run relevant checks/tests, then commit once the review gate passes. - One commit per task/sub-task. - Commit message: include the bead id in the subject. - Commit body: write real notes (what changed, why, tests run, follow-ups/risk). - After the commit, add the same notes to the bead so the tracker survives compaction and future handoffs. - For bd, use the note/design workflow recommended by bd prime or the loaded local Beads skill. - For br, write the summary back with br update --actor "$ACTOR" <id> --notes "..." --json and use br comments add when a separate progress note is cleaner. - For br, remember sync is explicit. Run br sync --flush-only before committing tracker-state changes to git.

  1. Authority rules
  • Only the main agent may mark a bead or epic complete.
  • Only the main agent may decide the current child bead is done and move on to the next child bead.
  • Only the main agent may integrate commits into the shared branch.
  • Sub-agents are workers and reviewers, not project managers.
  1. Communicate only when needed
  • Do not interrupt the user while work is progressing.
  • Only pause to ask for help when blocked, when information is missing, or when a meaningful decision is required.
  1. Close out
  • When complete, close the bead with a clear reason.
  • For bd, follow the session-end sync step recommended by bd prime or the loaded local Beads skill for the installed version.
  • For br:

- Close with br close --actor "$ACTOR" <id> --reason "Implemented X in commit abc123" --json. - If you are closing an epic, check readiness first with br epic status <id> or br epic close-eligible <id>. - Run br sync --flush-only after the closing update so .beads/ is current before git commit/push.

  1. Report progress
  • State which tracker you used: bd or br.
  • Provide a concise summary of completed tasks, commits made, and what remains (if anything).

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.36%
按下载量换算79

Claude

29.25%
按下载量换算62

Cursor

17.74%
按下载量换算38

Gemini CLI

8.5%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills