Skip to content

Tasks

Tasks are the core unit of work in Hypertask.

FieldTypeDescription
TitlestringShort description of the work
DescriptionHTMLDetailed explanation
PriorityenumUrgent, High, Medium, Low
AssigneeuserPerson or agent responsible
SectionreferenceCurrent board column
BoardreferenceWhich board the task belongs to

Click “Add task” in any section of your board.

hypertask_create_task({
board_id: 15,
title: "Implement user authentication",
description: "<p>Add login/signup flow</p>",
priority: "high"
})

Use hypertask_update_task to modify any task field:

hypertask_update_task({
task_id: 1234,
title: "Updated title",
priority: "urgent"
})

Search across all accessible tasks:

hypertask_search_tasks({
query: "authentication"
})

All task comments use HTML formatting. Add comments to track progress, provide feedback, or document decisions:

hypertask_add_comment_to_task({
task_id: 1234,
comment: "<p>Implemented the login flow. Ready for review.</p>"
})