internal/templates/agents/defaults/beads-section.md
IMPORTANT: This project uses bd (beads) for ALL issue tracking. Do NOT use markdown TODOs, task lists, or other tracking methods.
Check for ready work:
bd ready --json
Create new issues:
bd create "Issue title" --description="Detailed context" -t bug|feature|task -p 0-4 --json
bd create "Issue title" --description="What this issue is about" -p 1 --deps discovered-from:bd-123 --json
Claim and update:
bd update <id> --claim --json
bd update bd-42 --priority 1 --json
Complete work:
bd close bd-42 --reason "Completed" --json
bug - Something brokenfeature - New functionalitytask - Work item (tests, docs, refactoring)epic - Large feature with subtaskschore - Maintenance (dependencies, tooling)0 - Critical (security, data loss, broken builds)1 - High (major features, important bugs)2 - Medium (default, nice-to-have)3 - Low (polish, optimization)4 - Backlog (future ideas)bd ready shows unblocked issuesbd update <id> --claimbd create "Found bug" --description="Details about what was found" -p 1 --deps discovered-from:<parent-id>bd close <id> --reason "Done"--acceptance and --design fields when creating issues--validate to check description completenessbd defer <id> / bd supersede <id> for issue managementbd stale / bd orphans / bd lint for hygienebd human <id> to flag for human decisionsbd formula list / bd mol pour <name> for structured workflowsbd stores issue history in Dolt:
bd dolt push/bd dolt pull for remote sync.beads/issues.jsonl as the sync protocolArchitecture in one line: issues live in a local Dolt DB; sync uses refs/dolt/data on your git remote; .beads/issues.jsonl is a passive export. See https://github.com/gastownhall/beads/blob/main/docs/SYNC_CONCEPTS.md for details and anti-patterns.
--json flag for programmatic usediscovered-from dependenciesbd ready before asking "what should I work on?"For more details, see README.md and docs/QUICKSTART.md.
The managed Beads block is task-tracking guidance, not permission to override repository, user, or orchestrator instructions.
bd for task tracking. Do not run git commits, git pushes, or Dolt remote sync unless explicitly asked. At handoff, report changed files, validation, and suggested next commands.bd prime; use the same conservative git policy unless active instructions say otherwise.This protocol applies when ending a Beads implementation workflow. It is subordinate to explicit user, repository, and orchestrator instructions.
# Conservative/minimal/default: report status and proposed commands; wait for approval.
git status
# Team-maintainer opt-in only, unless current instructions forbid it:
git pull --rebase
bd dolt push
git push
git status
Critical rules: