Roam Research

roam_add_todo

Add a list of todo items as individual blocks to today's daily page in Roam. Each item becomes its own actionable block with todo status. NOTE on Roam-flavored markdown: For direct linking: use [[link]] syntax. For aliased linking, use alias syntax. Do not concatenate words in links/hashtags - correct: #[[multiple words]] #self-esteem (for typically hyphenated words).

Input Schema

NameRequiredDescriptionDefault
todosYesList of todo items to add

Input Schema (JSON Schema)

{ "properties": { "todos": { "description": "List of todo items to add", "items": { "description": "Todo item text", "type": "string" }, "type": "array" } }, "required": [ "todos" ], "type": "object" }