getRecentEpisodes
Retrieve the most recent episodes from episodic memory with customizable filters for context and limit, enhancing context-aware functionality in the Cursor10x Memory System.
Instructions
Retrieves recent episodes from the episodic memory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | Filter by context | |
limit | No | Maximum number of episodes to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"description": "Filter by context",
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of episodes to retrieve",
"type": "number"
}
},
"type": "object"
}