Install
openclaw skills install @space-cadet/beadsTrack tasks and ideas with beads (bd) - Dolt-powered issue tracker for AI coding workflows.
openclaw skills install @space-cadet/beadsUse beads to quickly capture tasks, ideas, and bugs without losing context across sessions.
When creating tasks, always include a project label using -l <project>.
Project labels map to directories via .beads/project-dirs.json:
cjp-website → code/cjp-websitequantum-dungeon → games/quantum-dungeonarxivite → code/arxivitechimera-chat → code/chimera-chatmed-docs-v2 → code/med-docs-v2workspace → root (for general tasks)Task naming convention:
auto (for executor-eligible tasks)Example:
cd ~/.openclaw/workspace && bd create "Integrate language translator" -p 1 -t feature -l cjp-website,auto -d "Allow users to view pages in regional Indian languages. Use Google Translate or similar widget."
Executor-eligible tasks: Add the auto label if the task can be safely executed by the cron executor without human review. Tasks requiring design decisions or major architecture changes should NOT have the auto label.
Always use bd with the workspace .beads/ database. The workspace root is initialized with --stealth so .beads/ is gitignored.
cd ~/.openclaw/workspace && bd create "Title" -p 1 -t task -l project-label
Priority levels: 0=critical, 1=high, 2=normal, 3=low Types: task, bug, idea, feature, refactor, docs
cd ~/.openclaw/workspace && bd create "Idea: something" -p 2 -t idea -l project-label
cd ~/.openclaw/workspace && bd create "Bug: something broken" -p 0 -t bug -l project-label
cd ~/.openclaw/workspace && bd ready
cd ~/.openclaw/workspace && bd list
cd ~/.openclaw/workspace && bd show <id>
cd ~/.openclaw/workspace && bd update <id> --claim
cd ~/.openclaw/workspace && bd close <id> --reason "Done"
cd ~/.openclaw/workspace && bd dep add <child> <parent>
cd ~/.openclaw/workspace && bd remember "insight text"
cd ~/.openclaw/workspace && bd prime
bd createbd ready or bd listbd close on the relevant itembd prime to inject context when starting a new work sessionBoth systems complement each other. Beads tracks what needs to happen; memory bank tracks what happened and why.