Cursor10x Memory System

MIT License
109

recordEpisode

Capture and store actions, content, and context in episodic memory for persistent awareness across sessions. Enable semantic search and recall of detailed interactions.

Instructions

Records an episode (action) in the episodic memory

Input Schema

NameRequiredDescriptionDefault
actionYesType of action performed
actorYesActor performing the action (user, assistant, system)
contentYesContent or details of the action
contextNoContext for the episode
importanceNoImportance level (low, medium, high)low

Input Schema (JSON Schema)

{ "properties": { "action": { "description": "Type of action performed", "type": "string" }, "actor": { "description": "Actor performing the action (user, assistant, system)", "type": "string" }, "content": { "description": "Content or details of the action", "type": "string" }, "context": { "description": "Context for the episode", "type": "string" }, "importance": { "default": "low", "description": "Importance level (low, medium, high)", "type": "string" } }, "required": [ "actor", "action", "content" ], "type": "object" }
ID: 5ngi6jjarl