Changelog
What’s new in Hypertask — updated daily.
April 21, 2026
Section titled “April 21, 2026”New Features
Section titled “New Features”-
AI Chat is now an agentic system — AI Chat has been upgraded from a conversational assistant to an action-taking agent. It can now create tasks, update properties, assign team members, and manage your board directly from the chat interface — no separate tool call needed. (HTPR-3543)
-
MCP and AI Chat can move tickets between boards — Agents can now move tasks between projects and boards using
hypertask_move_task_between_boardsor by asking AI Chat. This closes the gap between the web command center and agent interfaces. (HTPR-3590) -
CLI: full label management — The CLI now supports listing project labels and managing labels on tasks. Use
hypertask project labels <project-id>to browse available labels, andhypertask task update <ticket> --labels <name>to add or change labels on existing tasks. (HTPR-2996, HTPR-3029, HTPR-3105)
Bug Fixes
Section titled “Bug Fixes”- Fixed: Task Writer mobile view rendering — A rendering discrepancy in the Task Writer’s mobile view has been resolved. The accept button and viewport now behave consistently across environments. (HTPR-3109)
April 20, 2026
Section titled “April 20, 2026”New Features
Section titled “New Features”-
AI Chat now available on mobile — The full AI Chat experience is now accessible on mobile devices. Open AI Chat full-screen to get the same context-aware assistant you have on desktop, wherever you are. (HTPR-3056)
-
Task Writer supports Properties during task creation — You can now set Tags, Task Size, and Priority directly in the Task Writer when creating tasks, bringing AI-generated tasks closer to ready without a follow-up edit. (HTPR-2969)
-
CLI:
task movecommand — Move tasks between sections from the terminal withhypertask task move <ticket> --section <name>. No web UI needed for board housekeeping. (HTPR-3658) -
CLI: First-run onboarding — New users running the Hypertask CLI for the first time now get an interactive onboarding guide to authenticate, explore commands, and get productive fast. (HTPR-3171)
-
MCP:
due_datenow supported on create and update —hypertask_create_taskandhypertask_update_tasknow accept adue_datefield (ISO 8601), letting agents set deadlines without needing the CLI or web UI. (HTPR-3646) -
MCP: Inbox tools — Two new MCP tools —
hypertask_inbox_listandhypertask_inbox_archive— let agents read and dismiss inbox notifications programmatically. Useful for building triage and notification-routing workflows. (HTPR-3625) -
Deep link to create a task on a specific board — Append
?board=<board-id>to the task creation URL (e.g./new?board=inne) to pre-select a destination board. Useful for bookmarks and integrations. (HTPR-3578) -
Calendar keyboard navigation — Use a keyboard shortcut to jump forward and backward through calendar periods without reaching for the mouse. (HTPR-3517)
-
One-click IDE connect buttons on the MCP page — The MCP settings page now includes ready-to-use connect buttons for VS Code, Cursor, and other popular IDEs, making it easier to get your agent setup running in minutes. (HTPR-3546)
Improvements
Section titled “Improvements”-
Search powered by Typesense — Task search is now backed by Typesense, delivering faster queries and more accurate results, especially on large boards. (HTPR-3539)
-
AI Chat suggested queries use full MCP context — The quick-action prompts in AI Chat now reflect the full set of available MCP tools, so suggestions are more relevant and actionable for each project. (HTPR-3653)
-
CLI:
--created-byfilter fortask list— Filter tasks by creator:hypertask task list --created-by <user-id>. Removes the need to paginate through all tasks when looking for your own or a colleague’s work. (HTPR-3088) -
F2 to edit task titles on Kanban — Press F2 on a focused task card to edit its title inline, without opening the task detail panel. (HTPR-3657)
-
Kanban filter panel available in Calendar view — The same filter modal you use on the Kanban board is now available in Calendar view, so you can apply the same filters across both layouts. (HTPR-3611)
-
“Following” filter on Calendar view — Filter the Calendar to show only tasks you’re following, matching the filter already available on Kanban. (HTPR-3581)
-
Inbox page title shows account name — The browser tab for the Inbox now displays the relevant section or account name, making it easier to distinguish multiple Hypertask tabs. (HTPR-3620)
-
Left sidebar sort improvements — Projects and sections in the left sidebar now sort more predictably, with refinements to ordering logic based on user feedback. (HTPR-3580)
Bug Fixes
Section titled “Bug Fixes”-
Fixed: @mention emails not delivered to newly-invited users — Users invited to a project and @mentioned before completing sign-up now correctly receive the notification email. (HTPR-3185)
-
Fixed: Commenting on a board task no longer navigates to inbox — Submitting a comment while viewing a task on a board now stays on the board, as expected. (HTPR-3089)
-
Fixed: MCP @mentions now trigger notifications — Comments posted via MCP that @mention a user now render the mention as a link and fire a notification, matching the behavior of web UI mentions. (HTPR-3633)
-
Fixed: MCP connection reliability — Intermittent connection failures when connecting agents to the Hypertask MCP server have been resolved. (HTPR-3618)
-
Fixed: CLI
tasks gettype error — Thetasks getcommand no longer fails with a type mismatch when fetching tasks by ID. (HTPR-3659) -
Fixed: CLI
inbox list --tokenreturning empty — Using the--tokenflag withinbox listnow returns the correct results instead of an empty list. (HTPR-3079) -
Fixed: Comments from MCP and CLI show related task — Comments added programmatically via MCP or CLI now correctly display their linked task in the web UI. (HTPR-2985)
-
Fixed: AI Chat tool call display — Responses that include tool call results now render correctly in AI Chat instead of showing raw output or blank sections. (HTPR-3642)
-
Fixed: Task owner no longer duplicated as follower — Updating a task no longer adds the task owner as a follower a second time, which was causing duplicate notifications. (HTPR-3641)
-
Fixed: PWA opens existing window instead of a new one — Clicking the PWA launcher when Hypertask is already open now focuses the existing window instead of opening a duplicate. (HTPR-2989)
-
Fixed: Mobile undo close button — Tapping × on the mobile undo prompt now dismisses it without triggering the undo action. (HTPR-3612)
-
Fixed: Calendar month view rendering — Several UX issues in the Calendar month view, including misaligned events and scroll position, have been corrected. (HTPR-3595)
-
Fixed: Task Writer with custom instructions — Adding custom AI instructions no longer causes the Task Writer to fail when generating tasks. (HTPR-3579)
April 9, 2026
Section titled “April 9, 2026”New Features
Section titled “New Features”- CLI & MCP: Create entire boards in one call — A new
hypertask_create_boardMCP tool and matchinghypertask project create-board --file board.jsonCLI command let you spin up a full board — sections, labels, and starter tasks — from a single JSON manifest. Great for scripting project templates or having an agent scaffold a board end-to-end. (HTPR-3139, HTPR-3142)
April 8, 2026
Section titled “April 8, 2026”Improvements
Section titled “Improvements”- CLI:
task update --assigneeflag — You can now set or change a task’s assignees directly fromhypertask task updatewithout a separatetask assigncall. Accepts a comma-separated list of user IDs. The same--assigneeflag is also available ontask create. (HTPR-3049)
March 31, 2026
Section titled “March 31, 2026”Improvements
Section titled “Improvements”- CLI & MCP: Subtask hierarchy exposed via
parent_id— Task responses from both the CLI and MCP now include aparent_idfield, making it straightforward for agents to walk parent/child relationships. Thehypertask task treecommand surfaces the same data as a rendered hierarchy. (HTPR-3103)
March 28, 2026
Section titled “March 28, 2026”Bug Fixes
Section titled “Bug Fixes”-
Fixed: Undo notifications persisting on mobile — Undo toast notifications on mobile now dismiss correctly and no longer stay on screen indefinitely. Tapping the close button also no longer accidentally triggers the undo action. (HTPR-3402)
-
Fixed: AI chat interrupted when navigating between pages — AI chat responses are no longer cut off when you navigate to a different page while the AI is still generating. Conversations now continue seamlessly in the background. (HTPR-3655)
Improvements
Section titled “Improvements”-
AI Chat upgraded for faster, more responsive interactions — The AI chat experience has been overhauled to match the responsiveness of tools like Cursor and Claude, with faster streaming, reduced latency, and smoother conversation flow. (HTPR-3118)
-
AI chat now understands archived tasks — The AI assistant now recognizes and can query tasks with ARCHIVE status, so you can ask about completed or archived work without confusion. (HTPR-3382)
New Features
Section titled “New Features”-
Chat Sessions with history and smart naming — AI chat now supports persistent sessions. Your conversations are saved, automatically given descriptive names, and accessible from a chat history panel so you can pick up where you left off. (HTPR-3318)
-
AI Triage button in Inbox — A new “AI Triage” button in your inbox lets the AI automatically categorize, prioritize, and suggest actions for incoming notifications and tasks. (HTPR-3112)
-
Ask AI from existing comments and descriptions — You can now send any task comment or description directly to AI chat with one click, making it easy to ask follow-up questions or get AI analysis on existing content. (HTPR-3019)
-
File attachment support for CLI & MCP — The CLI and MCP server now support file attachments on tasks. You can attach files when creating or updating tasks programmatically, bringing parity with the web UI. (HTPR-3099)
March 27, 2026
Section titled “March 27, 2026”Bug Fixes
Section titled “Bug Fixes”- CLI:
task list --labelfilter now available — You can now filter tasks by label directly from the CLI usinghypertask task list --label "Bug", making it easier to find specific tasks without opening the web UI. (HTPR-3111)
Improvements
Section titled “Improvements”- Hide empty columns toggle — Board views now include a toggle to hide empty columns, reducing visual clutter when sections have no tasks. (HTPR-2173)
New Features
Section titled “New Features”- Hyper AI can now create tickets, assign users, and more — Hyper AI now has the same action capabilities as Chat — it can create tasks, assign team members, set priorities, and manage your board directly from the AI assistant. (HTPR-3078)
March 19, 2026
Section titled “March 19, 2026”Bug Fixes
Section titled “Bug Fixes”-
CLI:
task list --projectcrash fixed — Runningtask listwith a--projectflag no longer crashes with “Cannot read properties of undefined”. (HTPR-3030) -
CLI:
comment listreturning empty text — Thecomment listcommand now correctly returns comment content instead of emptytext/commentTextfields. (HTPR-3032) -
CLI: Improved user assignment accuracy — The CLI now correctly scopes user assignment to the current project’s members. (HTPR-3035)
-
CLI:
task createnow returns ticket number — Creating a task via CLI now correctly shows the ticket number (e.g.HTPR-1234) instead of the internal database ID. (HTPR-3034) -
Trial status display fix — The trial badge now correctly reflects your account’s actual subscription status. (HTPR-3554)
Improvements
Section titled “Improvements”-
[UX] Triple-click text selection — Triple-clicking in the task editor now selects the current paragraph instead of all text in the field. (HTPR-3465)
-
CLI:
task update --descriptionflag — You can now update task descriptions directly from the CLI without opening the web UI. (HTPR-3033)
New Features
Section titled “New Features”- CLI & MCP: Create new labels — The CLI and MCP now support creating brand-new labels on the fly, not just assigning existing ones. Use
hypertask task update <ticket> --label "New Label"to create and assign in one step. (HTPR-3054)
Infrastructure
Section titled “Infrastructure”- Docs MCP Server — Launched a remote MCP server for the documentation site (
hypertask-docs-mcp.valentin-603.workers.dev). Coworkers can now create, update, and deploy doc pages from their Claude Code sessions via MCP. Supports OAuth 2.1 via Hypertask login.