Creating Tasks
Tasks are how you give work to Claude Code agents. Each task becomes a prompt — the title and description are passed directly to the agent when it spawns.
Creating a Task
Section titled “Creating a Task”Click the + button on any column header, or use the New Task button in the toolbar. Enter a title and an optional description. You can also set a priority level, add labels, and attach files.
The title and description together become the agent’s prompt, so write them the way you’d prompt Claude Code directly. Be specific about what you want — reference files, error messages, or test cases.
Descriptions support Markdown rendering with full GitHub Flavored Markdown — tables, task lists, strikethrough, and links all render in the task detail dialog.
@-Mention File Autocomplete
Section titled “@-Mention File Autocomplete”In the description field, type @ to trigger file autocomplete. A dropdown lists files and directories from the project root. Navigate with arrow keys and press Enter to insert the selected path. This works in both the task creation form and the task detail dialog’s edit mode.
File Attachments
Section titled “File Attachments”You can attach files of any type to a task:
- Paste — Press
Ctrl+V(Windows/Linux) orCmd+V(macOS) to paste from your clipboard - Drag and drop — Drop files onto the task creation form or the task detail dialog
Images, documents, logs, and any other file type are supported. Attachments are included in the agent’s prompt when it spawns. Right-click an image attachment to copy it to the clipboard, or click any thumbnail to open a full-size preview.
Labels and Priorities
Section titled “Labels and Priorities”Each task can have labels and a priority level:
- Labels — free-form text tags for categorizing tasks (e.g., “bug”, “frontend”, “refactor”). Labels can have custom colors and are shared between the backlog and the board.
- Priority — a severity level from the project’s priority scale. The default scale is None, Low, Medium, High, Urgent. Priority shows as a colored badge on the task card and in the detail dialog header.
Set labels and priorities when creating a task, or edit them later in the task detail dialog. Labels and priorities carry over when promoting tasks from the backlog to the board.
Display ID
Section titled “Display ID”Every task has a short display ID (e.g., #42) shown on the task card and in the detail dialog header. Click the ID to copy it to the clipboard. Display IDs are also available via the MCP tools.
Worktree Toggle
Section titled “Worktree Toggle”Each task has a Main / Worktree toggle that controls whether the agent runs in an isolated git worktree or directly in your main working directory.
This is a per-task override of the global worktree setting. Use it when you want a specific task to run in main (e.g., a quick config change) while keeping worktrees enabled for everything else.
See Git Worktrees for details on how worktrees work.
Base Branch
Section titled “Base Branch”By default, worktrees branch from the global defaultBaseBranch (usually main). You can override this per-task when creating a task — useful when you want the agent to work on top of a feature branch.
The base branch priority order is:
- Task’s base branch (per-task override)
- Action config’s base branch (per-transition override)
- Global
defaultBaseBranchsetting (default:main)
Task Context Menu
Section titled “Task Context Menu”Right-click any task card on the board to open a context menu:
- Copy Task ID — copies the display ID (e.g.,
Task #42) to clipboard in a format optimized for MCP context - Edit — opens the task detail dialog in edit mode
- Changes — open the Changes panel for this task, showing the git diff against the base branch
- Move to — submenu listing all other columns as move targets
- Backlog — send the task back to the backlog (cleans up session and worktree)
- Archive — move the task to Done
- Delete — permanently delete the task, session, and worktree
Reordering Tasks
Section titled “Reordering Tasks”Drag task cards within a column to reorder them. The order persists across app restarts.
Task Detail Dialog
Section titled “Task Detail Dialog”Click any task card to open its detail dialog. From here you can:
- View the task’s display ID (e.g.,
#42) in the header — click to copy - See the priority badge next to the display ID
- View Markdown-rendered descriptions with GFM support
- Edit the title, description, priority, and labels
- View and manage attachments of any file type (drag-and-drop or paste)
- See terminal output — the dialog takes ownership of the terminal session while open
- View session stats — usage, model info, and session status
- Pause or resume the agent session using the header button
- Run shortcuts from the header bar
- Open the Commands popover to browse and run Claude Code commands and skills
- Access the kebab menu for move, archive, open folder, view PR, and delete
When the dialog is open, the bottom terminal panel releases the session. Closing the dialog returns it to the bottom panel.
Changes Panel
Section titled “Changes Panel”The Changes panel shows a full git diff viewer for the task’s worktree against the project’s base branch:
- File tree — click any file to view its diff. The first file is auto-selected when you open the panel
- Split / inline toggle — switch between side-by-side and inline diff modes
- Expand / collapse — hide the file tree to give the diff more room
- Untracked files — uncommitted new files are visible alongside modified files
- State persistence — your expand state, split mode, and last-selected file are remembered per task
Open the Changes panel from the task context menu, from the kebab menu in the task detail dialog, or from the Command Terminal dialog. It stays open next to the terminal without flicker.
Completed Tasks
Section titled “Completed Tasks”Tasks in the Done column are archived automatically. You can browse and search completed tasks from the Done column.
Sorting
Section titled “Sorting”Sort completed tasks by different criteria to find what you need:
| Sort Option | Description |
|---|---|
| Date | When the task was completed (default) |
| Cost | Total API cost of the session |
| Tokens | Total tokens consumed |
| Duration | How long the session ran |
Bulk Operations
Section titled “Bulk Operations”The completed tasks dialog supports bulk actions:
- Unarchive — select multiple tasks and move them back to the board at once
- Delete — permanently remove multiple completed tasks and their associated worktrees
Unarchiving
Section titled “Unarchiving”To resume work on a completed task, drag it back to any active column. The suspended session is resumed with its full context intact.
Column Management
Section titled “Column Management”Adding Columns
Section titled “Adding Columns”Click the Add Column button in the board toolbar. A dedicated dialog lets you set the name, color, icon, agent override, permission mode, auto-spawn behavior, auto-command, and handoff-context toggle before the column is created.
Editing Columns
Section titled “Editing Columns”Click the settings icon on a column header. You can configure:
| Setting | Description |
|---|---|
| Name | Column display name |
| Color | Header accent color |
| Icon | Lucide icon name (e.g., square-terminal, code, flask-conical) |
| Agent Override | Use a specific agent (Claude Code, Codex CLI, Gemini CLI, Cursor CLI, GitHub Copilot CLI, Aider, or Warp/Oz CLI) for sessions in this column instead of the project default. Hidden for To Do / Done columns |
| Permission Mode | Override the global permission mode for agents in this column. The dropdown re-populates based on what the selected agent supports |
| Auto Spawn | Whether moving a task here spawns an agent (default: on) |
| Auto Command | Command injected into running sessions when tasks arrive |
| Handoff Context | Pass the prior agent’s native session history file as context to the new agent on column entry |
| Plan Exit Target | For plan-mode columns: where tasks auto-move when planning completes |
Reordering Columns
Section titled “Reordering Columns”Drag column headers to reorder them.
Deleting Columns
Section titled “Deleting Columns”Columns can only be deleted when they contain no tasks. Move or delete all tasks first.