Roam Research

roam_remember

Add a memory or piece of information to remember, stored on the daily page with MEMORIES_TAG tag and optional categories. 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
categoriesNoOptional categories to tag the memory with (will be converted to Roam tags)
memoryYesThe memory detail or information to remember

Input Schema (JSON Schema)

{ "properties": { "categories": { "description": "Optional categories to tag the memory with (will be converted to Roam tags)", "items": { "type": "string" }, "type": "array" }, "memory": { "description": "The memory detail or information to remember", "type": "string" } }, "required": [ "memory" ], "type": "object" }