Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

beadsbeads 命令行

Agent Skill

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

总安装

198

周安装

8

GitHub Stars

公开资料未说明

下载量

62
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add toilahuongg/google-antigravity-kit --skill "beads"

简介

发现并安装 AI 代理的技能。

  • 适用于扩展 Agent 功能、集成第三方工具和服务场景。
  • 安装后可通过 npx skills add toilahuongg/google-antigravity-kit --skill "beads" 使用,需确认宿主环境是否支持技能加载。
  • 使用前请检查权限范围,避免触发不必要的网络请求或代码执行操作。
  • 建议结合具体用例查阅原始仓库文档,确保技能兼容且安全可靠。

SKILL.md

name
beads
description
Guide for using Beads (bd) - A memory upgrade and task management tool for AI agents.

Beads (bd) Skill

Beads is a distributed task management system designed specifically for AI agents. It effectively gives you a "long-term memory" and a structured way to plan, track, and execute complex workflows without losing context. It uses Git as its database, meaning tasks are versioned, branched, and merged alongside code.

📦 Installation

If bd is not found, you can install it using one of the following methods for the user (ask for permission if unsure):

npm (Recommended)

npm install -g @beads/bd

Homebrew

brew install steveyegge/beads/bd

Go

go install github.com/steveyegge/beads/cmd/bd@latest

🚀 Initialization

Before using Beads in a repository, you must initialize it.

  1. Initialize:
    bd init

*Use bd init --stealth if you want to use Beads locally without committing the .beads directory to the remote repo (good for personal tracking).*

  1. Install Hooks (CRITICAL for Agents):
    bd hooks install

*This ensures that your changes are automatically synced and consistency is maintained between the JSONL database and Git.*

🤖 Agent Workflow (CRITICAL RULES)

As an AI agent, you must follow these rules strictly to interact with bd correctly.

1. NO Interactive Editors

NEVER use bd edit. It opens a text editor (vim/nano) which you cannot interact with. ALWAYS use bd update with specific flags.

2. ALWAYS Sync

At the end of a session or after making a batch of changes, ALWAYS run:

bd sync

*This forces an immediate flush of the 30-second debounce buffer, commits changes, pulls from remote, imports updates, and pushes to remote. Without this, your changes might be lost or become stale.*

3. Creating Tasks

Create a new task with a title and priority (-p).

  • Priority 0: High
  • Priority 1: Medium
  • Priority 2: Low
bd create "Refactor login component" -p 1
# Output: Created task bd-a1b2

4. Updating Tasks

Use flags to update specific fields.

# Update description
bd update bd-a1b2 --description "Refactoring the login component to use hooks."

# Update title
bd update bd-a1b2 --title "Refactor Login to Functional Component"

# Update status
bd update bd-a1b2 --status in_progress

# Update design notes
bd update bd-a1b2 --design "Using React.useState and React.useEffect"

# Update acceptance criteria
bd update bd-a1b2 --acceptance "1. User can login\n2. User can logout"

5. Managing Dependencies

Structure your work hierarchically.

# Add a child task to a parent
bd dep add bd-child-id bd-parent-id

6. Closing Tasks

Close a task when it's done.

bd close bd-a1b2 --reason "Completed"

7. Listing Tasks

View current tasks to understand your state.

bd ready   # Show actionable tasks (unblocked, open)
bd show bd-a1b2 # Show details of a specific task

📝 Example Session

# 1. Start a new feature
bd create "Implement Dark Mode" -p 0
# > Created bd-d4rks

# 2. Break it down
bd create "Add theme context" -p 1
# > Created bd-ctx1
bd dep add bd-ctx1 bd-d4rks

bd create "Add toggle button" -p 1
# > Created bd-t0g1
bd dep add bd-t0g1 bd-d4rks

# 3. Start working
bd update bd-ctx1 --status in_progress

# ... (Do the coding work) ...

# 4. Mark as done
bd close bd-ctx1 --reason "Implemented"

# 5. SYNC YOUR WORK
bd sync

💡 Why use Beads?

  • Context Preservation: Offload your planning to bd so you don't have to hold everything in your immediate context window.
  • Resilience: If your session crashes or restarts, run bd ready to see exactly where you left off.
  • Collaboration: If the user is also using bd, you can see their tasks and status updates instantly.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

windsurf

28.45%
按下载量换算18

OpenCode

21.4%
按下载量换算13

Codex

16.57%
按下载量换算10

Claude Code

12.74%
按下载量换算8

Antigravity

6.4%
按下载量换算4

Gemini CLI

3.12%
按下载量换算2

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills