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
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content of the assistant's final message | |
importance | No | Importance level (low, medium, high) | medium |
metadata | No | Optional metadata | |
milestone_description | Yes | Description of what was accomplished | |
milestone_title | Yes | Title 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"
}