skills/beads_rust/SKILL.md
Track tasks and issues using the br CLI. Use for task management, sprint planning, dependency tracking, and project organization. Replaces TodoWrite.
npx skillsauth add kenzik/agent-config beadsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This project uses beads_rust (br/bd) for issue tracking. Issues are stored in .beads/ and tracked in git.
Install beads:
curl -fsSL "https://raw.githubusercontent.com/Dicklesworthstone/beads_rust/main/install.sh?$(date +%s)" | bash
Initialize in a project:
br init
# View ready issues (unblocked, not deferred)
br ready # or: bd ready
# List and search
br list --status=open # All open issues
br show <id> # Full issue details with dependencies
br search "keyword" # Full-text search
# Create and update
br create --title="..." --description="..." --type=task --priority=2
br update <id> --status=in_progress
br close <id> --reason="Completed"
br close <id1> <id2> # Close multiple issues at once
# Sync with git
br sync --flush-only # Export DB to JSONL
br sync --status # Check sync status
br ready to find actionable workbr update <id> --status=in_progressbr close <id>br sync --flush-only at session endbr ready shows only unblocked work.br dep add <issue> <depends-on> to add dependenciesBefore ending any session, run this checklist:
git status # Check what changed
git add <files> # Stage code changes
br sync --flush-only # Export beads changes to JSONL
git commit -m "..." # Commit everything
git push # Push to remote
br ready at session start to find available workbr create when you discover tasksdevelopment
Manage git worktrees for parallel development. Use to work on multiple branches simultaneously without stashing or switching contexts.
tools
Manage tmux sessions for background processes. Use to run long-running commands, manage multiple terminals, and capture output from background processes.
tools
Create new Agent Skills for Claude Code. Use when user wants to create a skill, add a new capability, document a CLI workflow, or asks how skills work.
tools
Manage GitHub issues using gh CLI - create, list, view, update, close, and assign issues. Use when working with GitHub issues, bug tracking, or project management tasks.