beads
Track tasks and issues using the bd CLI. Use for task management, sprint planning, dependency tracking, and project organization. Replaces TodoWrite.
What this skill does
# Beads Issue Tracker Git-backed issue tracking with dependency awareness. Perfect for agent task management. ## Prerequisites Install beads: ```bash # Install via cargo or download binary cargo install beads # Or download from releases ``` Initialize in a project: ```bash bd init ``` ## CLI Reference ### View Ready Work ```bash # Get issues with no blockers bd ready --json # Filter by assignee bd ready --assignee username --json # Filter by label bd ready --label "urgent" --json # Limit results bd ready --limit 5 --json ``` ### Create Issues ```bash # Basic task bd create "Task title" --json # With details bd create "Task title" -d "Description" -t task -p 2 --json # As subtask of epic bd create "Subtask" --parent epic-123 --force --json # With dependencies bd create "Task" --deps "other-issue-id" --json # Quick mode (less output) bd create "Task" -q --json ``` ### Issue Types - `bug` - Bug reports - `feature` - New features - `task` - General tasks - `epic` - Parent containers - `chore` - Maintenance work ### Priority Levels - `0` - Critical - `1` - High - `2` - Normal (default) - `3` - Low - `4` - Backlog ### Update Issues ```bash # Change status bd update issue-id -s in_progress --json # Add notes bd update issue-id --notes "Progress update" --json # Change priority bd update issue-id -p 1 --json # Add labels bd update issue-id --add-label "urgent" --json ``` ### Close Issues ```bash # Close with reason bd close issue-id -r "Completed successfully" --json ``` ### List Issues ```bash # All open issues bd list --status open --json # Filter by type bd list --type bug --json # Filter by assignee bd list --assignee "username" --json # Filter by label bd list --label "backend" --json # Filter by priority bd list --priority 1 --json ``` ### Show Issue Details ```bash bd show issue-id --json ``` ### Dependencies ```bash # Add dependency (issue-a depends on issue-b) bd dep add issue-a issue-b # Dependency types: blocks, related, parent-child, discovered-from bd dep add issue-a issue-b -t blocks ``` ### Sync with Git ```bash # Sync issues to git remote bd sync ``` ### Hygiene Commands ```bash # Find duplicate issues bd duplicates --dry-run # Auto-merge duplicates bd duplicates --auto-merge # Find stale issues (no activity) bd stale --days 14 --json # Cleanup old closed issues bd cleanup --dry-run bd cleanup -f ``` ### Install Git Hooks ```bash # Auto-sync on commit bd hooks install ``` ### System Info ```bash # Check version bd --version # Project info bd info --json ``` ## Workflow Patterns ### Session Start ```bash # See what's ready to work on bd ready --json ``` ### Working on a Task ```bash # Start working bd update task-id -s in_progress --json # Add progress notes bd update task-id --notes "Halfway done" --json # Complete bd close task-id -r "Implemented and tested" --json ``` ### Epic Planning ```bash # Create epic bd create "User Authentication" -t epic --json # Add subtasks bd create "Design auth flow" --parent auth-epic --force --json bd create "Implement login" --parent auth-epic --force --json bd create "Add tests" --parent auth-epic --force --json # Add dependencies between subtasks bd dep add implement-id design-id -t blocks bd dep add tests-id implement-id -t blocks ``` ### End of Session ```bash # Sync to git bd sync ``` ## Worktree Mode When using git worktrees, disable the daemon: ```bash export BEADS_NO_DAEMON=1 # Or per-command bd --no-daemon ready --json ``` ## Best Practices 1. **Always use `--json`** for parseable output 2. **Use `bd ready`** at session start to see unblocked work 3. **Add dependencies** to express task relationships 4. **Use epics** for grouping related tasks 5. **Run `bd sync`** before ending sessions 6. **Install hooks** for automatic sync: `bd hooks install`
Related in Productivity
gitea-workflow
IncludedOrchestrate agile development workflows for Gitea repositories using the tea CLI. Use when working with Gitea-hosted repos and asking to 'run the workflow', 'continue working', 'what's next', 'complete the task cycle', 'start my day', 'end the sprint', 'implement the next task', or wanting guided step-by-step development assistance. Keywords: workflow, orchestrate, agile, task cycle, sprint, daily, implement, review, PR, standup, retrospective, gitea, tea.
microsoft-graph-gateway
IncludedRoute Microsoft Graph work in this workspace. Use when users want to read or write Outlook mail, calendar events, contacts, OneDrive or SharePoint files, Teams, Planner, To Do, users, groups, directory data, or arbitrary Microsoft Graph endpoints from VS Code. Prefer WorkIQ for common read scenarios. Use Microsoft Graph for write actions and gap-read scenarios that need exact Graph properties, filters, permissions, or endpoints.
copilotkit
IncludedUse when building with CopilotKit — setup, development, integrations, debugging, upgrading, or contributing. Routes to the appropriate specialized skill based on the task.
wordly-wisdom
IncludedProvides calibrated decision analysis using Charlie Munger-style multiple mental models, inversion, incentive mapping, circle-of-competence checks, misjudgment audits, second-order effects, and forecast updates. Use when the user asks for an oracle take, a hard call, a decision memo, a premortem, an outside view, a red-team, a sanity-check, what am I missing, think this through, or wants a strategy, hire, investment, plan, product, partnership, or major life choice analysed. Avoid for simple factual lookups or time-sensitive legal, medical, or market questions without fresh evidence.
swain-session
IncludedSession management and project status dashboard. Owns the full session lifecycle (start/work/close/resume), focus lane, bookmarks, worktree detection, and tab naming. Also serves as the project status dashboard — shows active epics, progress, actionable next steps, blocked items, tasks, GitHub issues, and recommendations. Worktree creation is deferred to swain-do task dispatch (SPEC-195). Triggers on: 'session', 'status', 'what's next', 'dashboard', 'overview', 'where are we', 'what should I work on', 'show me priorities', 'bookmark', 'focus on', 'session info'.
gandi
IncludedComprehensive Gandi domain registrar integration for domain and DNS management. Register and manage domains, create/update/delete DNS records (A, AAAA, CNAME, MX, TXT, SRV, and more), configure email forwarding and aliases, check SSL certificate status, create DNS snapshots for safe rollback, bulk update zone files, and monitor domain expiration. Supports multi-domain management, zone file import/export, and automated DNS backups. Includes both read-only and destructive operations with safety controls.