Use when asked to work on or track a task in the Tasks plugin, when the prompt mentions a task key such as ABC-12, or when work needs task comments, attachments, delegation tracking, or status updates.
Scanned 8/31/2026
Install to Claude Code
npx -y skills add get-bb/bb --skill tasks --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Tasks?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/get-bb-tasks)More formats (shields.io, HTML) on the badges page.
---
name: tasks
description: Use when asked to work on or track a task in the Tasks plugin, when the prompt mentions a task key such as ABC-12, or when work needs task comments, attachments, delegation tracking, or status updates.
---
# Tasks
Use the `bb tasks` CLI to understand the assigned task, keep its record useful,
and report the outcome where the work is tracked.
Delegation presets are user-defined; Tasks ships with none. Before dispatching
work, use `bb tasks preset list` and create a preset if the required one does
not already exist. Dispatch requires an existing preset.
Create or update the same execution selection exposed in the Tasks UI with
`--provider`, `--model`, `--reasoning`, and optional
`--service-tier default|fast|none`:
```sh
bb tasks preset create --name "Codex high" --provider codex \
--model gpt-5.6-sol --reasoning high --service-tier fast \
--permission auto
```
`preset update` accepts the same flags; `--service-tier none` clears a tier.
## Work a task
1. Find and read the task before acting:
```sh
bb tasks show ABC-12
```
The detail includes the description, status, priority, labels, subtasks,
comments, attachments, attached worker threads, and the GitHub pull
requests those threads produced (from environment metadata, with state
open/draft/merged/closed). Use
`bb tasks show ABC-12 --json` when the result will drive commands or code.
For project-wide discovery, `bb tasks list` returns at most 100 rows by
default. Pass `--limit 1-500`; in JSON, continue with `nextCursor` via the
same filters/sort and `--cursor <value>`. A task-list mutation makes an old
cursor stale, so restart without it.
2. Fetch every relevant attachment before making assumptions about it:
```sh
bb tasks attachment get <attachment-id> --out <path>
```
3. Do the work. Post one substantive comment at each meaningful milestone,
such as a completed investigation, an implementation ready for validation,
or a concrete blocker:
```sh
bb tasks comment ABC-12 --body "Implemented the change; focused validation now passes."
```
Add `--notify` only when the new comment should be delivered to the thread
that authored the task's most recent agent reply. This resumes an idle
recipient; with no prior agent reply, the comment is recorded without
targeting an unrelated thread. In agent context, the new comment keeps the
current thread identity and an explicit `--author`, while delivery still
targets the prior latest responder rather than the new comment itself.
4. Attach result artifacts that belong with the task, such as reports,
screenshots, patches, or generated files:
```sh
bb tasks attachment add ABC-12 --file ./report.md
bb tasks attachment add ABC-12 --file ./screenshot.png
```
Read `references/attachments.md` for comment attachments, initial files,
removal rules, and machine selection.
5. When the work is ready for review, update the task:
```sh
bb tasks update ABC-12 --status in_review
```
Change task hierarchy with `bb tasks update ABC-12 --parent ABC-10`, using
either a task key or ID for the parent. Promote a subtask to the top level
with `bb tasks update ABC-12 --no-parent`; the two parent flags cannot be
combined.
If the work cannot proceed, leave the status accurate and comment with the
specific blocker, what you tried, and what would unblock it. Do not mark a
blocked task complete.
6. Delegated threads are attached automatically. If this thread was not
delegated from Tasks, attach it yourself so the task shows the active work:
```sh
bb tasks attach ABC-12
```
When a thread is done with a task (hand-off, respawned replacement, or a
predecessor that died), detach it so `bb tasks threads ABC-12` stays
accurate. Omit `--thread` to detach the current thread:
```sh
bb tasks detach ABC-12 --thread thr_dead_predecessor
```
## Link tasks in responses
When your answer refers the user to a task — including a task you just
created — emit this leaf directive on its own line instead of writing the
key as plain text:
```md
::task{key="ABC-12"}
```
`key` is required. Optionally add `title="…"` as a display fallback shown
while the card loads and when the key no longer resolves. The rendered card
shows the live status, title, and priority, opens the task in the thread
side panel, and links to the full Tasks app. Emit one directive per line;
each renders its own card.
## Invariants
- Valid task statuses are `backlog`, `todo`, `in_progress`, `in_review`,
`done`, and `canceled`.
- Use `in_review` when implementation is complete but still needs human or
agent review. Use `done` only when the task's completion criteria are met.
- Write one comment per meaningful milestone. Combine related facts into a
useful update; never spam progress pings, command-by-command narration, or
repeated status messages.
- Comments should say what changed or was learned, what validation ran, and any
remaining risk or blocker.
- Prefer stable task keys such as `ABC-12` for task commands. Use `--json` for
machine-readable output and human output for quick inspection.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!