Skip to content

Boards & Sections

Every project in Hypertask has a board — a visual workspace where tasks flow through customizable columns called sections. If you’ve used Kanban boards before, this will feel familiar. If you haven’t, think of it as a whiteboard with columns that represent stages of work.

Sections are the columns on your board. New projects start with three defaults:

  • Todo — work that needs to be done
  • Doing — work in progress
  • Done — completed work

These defaults are just a starting point. You can rename them, reorder them, add new ones, or remove them entirely. Common setups include:

WorkflowSections
SimpleTodo, Doing, Done
DevelopmentBacklog, Todo, In Progress, Review, Done
ContentIdeas, Drafting, Editing, Published
SupportNew, Triaging, In Progress, Waiting, Resolved

Each section supports the following configuration:

  • Name — the column label displayed on the board
  • Visibility — show or hide sections without deleting them (hidden sections retain their tasks)
  • Ranking — drag sections to reorder them, or set a rank value directly

There are three ways to move a task to a different section:

  1. Drag and drop — in the web UI, drag a task card from one column to another.
  2. MCP — use the hypertask_section tool to move a task programmatically:
    hypertask_section(taskId: 42, sectionId: 5)
  3. API — call hypertask_move_task_between_boards to move a task to a section on a different board entirely.

Boards support multiple ways to visualize the same set of tasks. Switch between views without losing any data — they’re just different lenses on the same information.

The default Kanban layout. Tasks appear as cards organized into section columns. This is ideal for tracking work status at a glance.

Displays tasks on a calendar based on their due dates. Useful for deadline-driven work where timing matters more than workflow stage.

A Gantt-style horizontal timeline showing task durations and dependencies. Best for project planning and identifying scheduling conflicts.

Saved Views let you create reusable filter and sort configurations for a project. Instead of re-applying the same filters every time you open a board, save them as a named view and switch between them instantly.

Narrow down which tasks appear on the board:

FilterDescription
SectionShow tasks from specific sections only
PriorityFilter by Urgent, High, Medium, Low, or None
AssigneeShow tasks assigned to specific team members
Due dateFilter by date range or relative periods (overdue, due this week)
LabelsFilter by one or more labels
StatusFilter by task status (active, archived)
CreatorShow tasks created by a specific person

Control the order tasks appear within each section:

  • Manual — custom drag-and-drop ordering
  • Priority — highest priority first
  • Due Date — earliest deadline first
  • Size — smallest estimate first
  • Created At — newest or oldest first
  • Updated At — most recently changed first

Control how subtasks appear on the board:

ModeBehavior
NoneSubtasks are hidden from the board
ParentSubtasks are grouped under their parent task
FlattenedSubtasks appear as individual cards alongside regular tasks
CardSubtasks display as nested cards within the parent