← ClaudeAtlas

tool-brlisted

Use br (beads_rust) as the primary task/issue tracker for this repo. Trigger when planning work, creating or claiming issues, checking what is ready to work on, or preparing a commit that must reference a beads issue id.
niksavis/basicly · ★ 1 · AI & Automation · score 74
Install: claude install-skill niksavis/basicly
<!-- Generated by `basicly skills-build` from skill.yaml. Do not edit; edit the source. --> # tool-br ## When To Use - Before starting non-trivial work: check `br ready` for actionable issues, or create one. - When a task has no existing issue: create one first, then reference its id in the commit. - When checking what is blocked, in progress, or safe to pick up next. - When preparing any commit message (a beads issue id is required by the commit-msg hook). ## Trusted Commands ```bash br init # One-time: initialize .beads/ in a repo br create "Title" --type task --priority 1 --description "..." br q "Quick capture title" # Fast issue creation, id only br ready # Actionable, unblocked work br ready --json # Machine-readable for agents br show <id> # Issue details br update <id> --status in_progress --assignee "$(git config user.email)" br close <id> --reason "What was done" br delete <id> --hard # Delete durably (prunes JSONL; plain delete resurrects) br dep add <child-id> <parent-id> # child depends on parent br dep tree <id> # dependency tree rooted at an issue br dep cycles # detect dependency cycles br list --status open --priority 0-1 br sync --flush-only # Idempotent JSONL export check before commit ``` ### Harness primitives (wha