Cursor10x Memory System

MIT License
109

endConversation

Store assistant messages, record milestones, and log episodes in one operation to finalize conversations using the Cursor10x Memory System. Simplifies conversation closure and context management.

Instructions

Ends a conversation by storing the assistant message, recording a milestone, and logging an episode in one operation

Input Schema

NameRequiredDescriptionDefault
contentYesContent of the assistant's final message
importanceNoImportance level (low, medium, high)medium
metadataNoOptional metadata
milestone_descriptionYesDescription of what was accomplished
milestone_titleYesTitle of the milestone to record

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Content of the assistant's final message", "type": "string" }, "importance": { "default": "medium", "description": "Importance level (low, medium, high)", "type": "string" }, "metadata": { "additionalProperties": true, "description": "Optional metadata", "type": "object" }, "milestone_description": { "description": "Description of what was accomplished", "type": "string" }, "milestone_title": { "description": "Title of the milestone to record", "type": "string" } }, "required": [ "content", "milestone_title", "milestone_description" ], "type": "object" }
ID: 5ngi6jjarl