Cursor10x Memory System

MIT License
109

storeUserMessage

Stores user messages in short-term memory with optional metadata and importance levels, enabling efficient context management for the Cursor10x Memory System.

Instructions

Stores a user message in the short-term memory

Input Schema

NameRequiredDescriptionDefault
contentYesContent of the message
importanceNoImportance level (low, medium, high)low
metadataNoOptional metadata for the message

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Content of the message", "type": "string" }, "importance": { "default": "low", "description": "Importance level (low, medium, high)", "type": "string" }, "metadata": { "additionalProperties": true, "description": "Optional metadata for the message", "type": "object" } }, "required": [ "content" ], "type": "object" }
ID: 5ngi6jjarl