From agentops
Uses bd CLI to create, update, route, and close dependency-aware beads in git-backed graph-based issue tracker for multi-session persistent tasks.
npx claudepluginhub boshu2/agentops --plugin agentopsThis skill uses the workspace's default tool permissions.
Graph-based issue tracker that survives conversation compaction.
references/ANTI_PATTERNS.mdreferences/BOUNDARIES.mdreferences/CLI_REFERENCE.mdreferences/DEPENDENCIES.mdreferences/INTEGRATION_PATTERNS.mdreferences/ISSUE_CREATION.mdreferences/MOLECULES.mdreferences/PATTERNS.mdreferences/RESUMABILITY.mdreferences/ROUTING.mdreferences/STATIC_DATA.mdreferences/TROUBLESHOOTING.mdreferences/WORKFLOWS.mdscripts/validate.shCreates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Graph-based issue tracker that survives conversation compaction.
bd (beads) replaces markdown task lists with a dependency-aware graph stored in git.
Key Distinction:
Decision Rule: If resuming in 2 weeks would be hard without bd, use bd.
bd reads as authoritative. Use bd show, bd ready, bd list, and bd export to inspect current tracker state. Do not treat .beads/issues.jsonl as the primary decision source when live bd data is available..beads/issues.jsonl as a git-friendly export artifact. If the repo tracks .beads/issues.jsonl and you mutate tracker state, refresh it explicitly with bd export -o .beads/issues.jsonl.bd close --reason text.
Name the touched files or explicit no-file evidence artifact, validation command(s), and parent
reconciliation outcome. Do not use generic closure reasons such as "done" or "implemented" for child beads.bd ready returns a broad umbrella issue, do not implement directly against vague parent wording. First narrow the remaining gap into an execution-ready child issue, then land the child and reconcile the parent.bd ... # mutate tracker state
bd export -o .beads/issues.jsonl # if tracked in git
bd vc status
bd dolt commit -m "..." # if tracker changes are pending
bd dolt push # only if a Dolt remote is configured
bd init run once (humans do this, not agents)User says: /vibe
What happens:
bd show <id> to read issue metadataResult: Validation report includes issue context, no manual bd lookups needed.
User says: /implement ag-xyz-123
What happens:
bd show ag-xyz-123 to read issue bodybd close ag-xyz-123 after completionResult: Issue lifecycle managed automatically during implementation.
| Problem | Cause | Solution |
|---|---|---|
| bd command not found | bd CLI not installed or not in PATH | Install bd: brew install bd or check PATH |
| "not a git repository" error | bd requires git repo, current dir not initialized | Run git init or navigate to git repo root |
| "beads not initialized" error | .beads/ directory missing | Human runs bd init --prefix <prefix> once |
| Issue ID format errors | Wrong prefix or malformed ID | Check rigs.json for correct prefix, follow <prefix>-<tag>-<num> format |