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

beadsbeads 命令行

Agent Skill

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

总安装

245

周安装

10

GitHub Stars

5

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ansteorra/kmp --skill beads

简介

用于 AI 驱动的任务管理与分布式 issue 跟踪,支持依赖感知任务图。

  • 适合创建、更新和管理开发计划中的任务项,支持 epic 与子任务拆分。
  • 可同步任务状态与 Git,查看无阻塞就绪任务以推进迭代。
  • 需全局安装 beads CLI(bd),并确保项目初始化完成。
  • 操作涉及文件读写和状态持久化,建议确认项目路径权限和数据一致性。

SKILL.md

Beads Task Management

This skill enables AI-powered task management using the beads (bd) distributed issue tracker. Beads provides persistent, structured memory for coding agents with dependency-aware task graphs.

When to Use This Skill

Use this skill when you need to:

  • Create or manage tasks for a development plan
  • Track work items with priorities and dependencies
  • View ready tasks (tasks with no open blockers)
  • Update task status during implementation
  • Close completed tasks
  • Create epics with sub-tasks
  • Sync task state with git

Prerequisites

  • beads CLI (bd) must be installed globally
  • Project must be initialized with bd init
  • Git repository (beads uses git as its database backend)

Core Commands

Viewing Tasks

# List tasks ready to work on (no open blockers)
bd ready --json

# List all open tasks
bd list --json

# Show task details
bd show <id> --json

# Search tasks by text
bd search "keyword" --json

# View database status and statistics
bd status --json

Creating Tasks

# Create a P0 (highest priority) task
bd create "Task title" -p 0 --json

# Create with priority and type
bd create "Bug fix" -p 1 -t bug --json

# Create with detailed description
bd create "Feature name" -p 2 -t feature --json

# Quick capture (returns only ID)
bd q "Quick task" -p 1

Updating Tasks

IMPORTANT: DO NOT use bd edit - it opens an interactive editor which AI agents cannot use.

# Update task description
bd update <id> --description "new description"

# Update task title
bd update <id> --title "new title"

# Update design notes
bd update <id> --design "design notes"

# Add notes
bd update <id> --notes "additional notes"

# Set acceptance criteria
bd update <id> --acceptance "acceptance criteria"

# Set status to in progress
bd update <id> --status in_progress

Managing Dependencies

# Add dependency (child is blocked by parent)
bd dep add <child> <parent>

# Remove dependency
bd dep rm <child> <parent>

# List dependencies for a task
bd dep list <id> --json

Closing Tasks

# Close a single task
bd close <id> --reason "Completed" --json

# Close multiple tasks
bd close <id1> <id2> --reason "Completed" --json

# Reopen a closed task
bd reopen <id>

Hierarchical Tasks (Epics)

Beads supports hierarchical IDs for epics:

  • bd-a3f8 (Epic)
  • bd-a3f8.1 (Task)
  • bd-a3f8.1.1 (Sub-task)
# List children of a parent task
bd children <parent-id> --json

# Create epic structure
bd create "Epic: Major feature" -p 1 -t epic --json

Syncing with Git

# Force immediate sync (export, commit, pull, push)
bd sync

# Check for issues with bd doctor
bd doctor --json

Task Workflow

Starting a Work Session

  1. Check ready tasks: bd ready --json
  2. Pick a task and mark in progress: bd update <id> --status in_progress
  3. View task details: bd show <id> --json

During Implementation

  1. Create sub-tasks if needed: bd create "Sub-task description" -p 1 --json bd dep add <child> <parent>
  2. Update notes as you go: bd update <id> --notes "Implementation notes..."

Completing Work

  1. Close finished tasks: bd close <id> --reason "Completed implementation" --json
  2. Sync to git: bd sync

Landing the Plane

When ending a work session, complete ALL steps:

  1. File beads issues for remaining work: bd create "Follow-up task" -p 2 --json
  2. Close finished work: bd close <finished-ids> --reason "Completed" --json
  3. Sync and push: bd sync git push
  4. Choose next work: bd ready --json

Priority Levels

  • P0: Critical - must be done immediately
  • P1: High - should be done soon
  • P2: Medium - normal priority
  • P3: Low - nice to have
  • P4: Backlog - future consideration

Task Types

Common types: task, bug, feature, epic, chore, documentation

Best Practices

  1. Use JSON output - Always use --json flag for machine-readable output
  2. Sync frequently - Run bd sync after making changes
  3. Include context - Add descriptions and notes for future reference
  4. Track dependencies - Use bd dep add to show what blocks what
  5. Close with reasons - Include why tasks were closed
  6. Commit message convention - Include issue ID: git commit -m "Fix bug (bd-abc)"

Commit Message Convention

When committing work for an issue, include the issue ID in parentheses:

git commit -m "Add retry logic for database locks (bd-xyz)"

This enables bd doctor to detect orphaned issues.

Common Patterns

Pattern: Create and Track a Bug Fix

# Create bug task
bd create "Fix login validation error" -p 1 -t bug --json

# Mark in progress
bd update bd-xxx --status in_progress

# ... do the work ...

# Close when done
bd close bd-xxx --reason "Fixed validation logic" --json
bd sync

Pattern: Create Epic with Sub-tasks

# Create epic
bd create "Epic: User profile redesign" -p 2 -t epic --json

# Create sub-tasks
bd create "Design new profile layout" -p 2 -t task --json
bd create "Implement profile header" -p 2 -t task --json

# Link dependencies
bd dep add <subtask1> <epic>
bd dep add <subtask2> <epic>

Pattern: Check What's Ready

# See tasks ready to work on
bd ready --json

# Get count of open issues
bd count --json

Limitations

  • bd edit opens an interactive editor - use bd update with flags instead
  • Beads requires git for persistence
  • Task IDs are hash-based (e.g., bd-a1b2)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.57%
按下载量换算26

Claude

30.86%
按下载量换算24

Cursor

20.19%
按下载量换算16

Gemini CLI

10.16%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills